/* Summer Theme Styling */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0f0a05 0%, #1a140a 50%, #0d0800 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    padding-top: 80px !important;
}

/* Summer background accent */
body::after {
    content: '';
    position: fixed;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    filter: blur(100px);
}

/* Animated background particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.glass-card {
    position: relative;
    overflow: visible;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #ffaa00 50%, #ff7700 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.status-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

.order-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.order-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.order-btn:active::after {
    width: 300px;
    height: 300px;
}

.copy-toast {
    visibility: hidden;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #333333, #1a1a1a);
    color: white;
    padding: 12px 24px;
    border-radius: 9999px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.show-toast {
    visibility: visible;
    animation: toast-in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        toast-out 0.5s 2.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes toast-in {
    from {
        bottom: -50px;
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }

    to {
        bottom: 20px;
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

@keyframes toast-out {
    from {
        bottom: 20px;
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

    to {
        bottom: -50px;
        opacity: 0;
        transform: translateX(-50%) scale(0.8);
    }
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #000000;
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    animation: badge-float 2s ease-in-out infinite;
    z-index: 10;
}

@keyframes badge-float {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -3px);
    }
}

.popular-card {
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    z-index: 5;
}

.pricing-grid {
    padding-top: 30px;
}

@media (max-width: 768px) {
    .glass-card:hover {
        transform: translateY(-4px) scale(1.01);
    }

    .copy-toast {
        max-width: 90%;
        font-size: 14px;
        padding: 10px 20px;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button core styles handled by glassmorphism system */
.btn-primary,
.btn-secondary {
    border-radius: 12px;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.dashed-card {
    border: 2px dashed rgba(255, 255, 255, 0.2);
    background: rgba(20, 20, 20, 0.5);
    transition: all 0.3s ease;
}

.dashed-card:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(30, 30, 30, 0.7);
    transform: translateY(-4px);
}

footer {
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.8) 100%);
    margin-top: 40px;
    padding-bottom: 30px;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.contact-handle-block {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-handle-block:hover {
    transform: translateY(-5px);
}

.telegram-handle-text {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-subtext {
    font-size: 10px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
}

.footer-text-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
    transition: all 0.5s ease;
}

.footer-text-logo:hover {
    transform: scale(1.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-description {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 0 20px;
    opacity: 0.8;
}

.footer-description p {
    font-size: 13px;
    line-height: 1.5;
}

.disclaimer-text {
    margin-top: 60px;
    color: #666666;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-section-card {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.info-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #ffffff;
    transition: height 0.4s ease;
}

.info-section-card:hover::before {
    height: 100%;
}

.os-badge {
    text-align: center;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px;
    background: transparent;
    /* Remove nested backgrounds for better clarity */
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.perk-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

.perk-icon {
    width: 36px;
    height: 36px;
    background: #ffffff;
    color: #000000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.section-title {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #aaaaaa;
}