@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, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* 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 {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.8) 0%, rgba(30, 30, 30, 0.9) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: visible;
    /* Changed to visible to show the badge */
}

.shine-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
}

.shine-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s;
}

.glass-card:hover .shine-wrapper::before {
    left: 100%;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #ffffff;
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1),
        0 0 20px rgba(255, 255, 255, 0.05);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 50%, #999999 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 - fixed positioning to prevent clipping */
.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: translateY(0);
    }

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

/* Ensure parent card has proper spacing for badge */
/* Ensure parent card has proper highlighting without affecting height */
.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 - add padding to prevent badge clipping */
/* Pricing grid - add padding to prevent badge clipping */
.pricing-grid {
    padding-top: 30px;
}

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

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

    .popular-badge {
        font-size: 10px;
        padding: 6px 12px;
        right: 15px;
    }
}

/* Smooth fade-in animation for content */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

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

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

/* Button styles */
.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    color: #000000;
    font-weight: 700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f0f0f0 0%, #d0d0d0 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.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);
}

/* Custom dashed border card */
.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 improvements */
footer {
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.8) 100%);
    margin-top: 100px;
    padding-bottom: 60px;
}

/* Vertical Telegram Card */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.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-logo-wrap {
    width: 240px;
    height: 240px;
    margin: 0 auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.05));
    transition: all 0.5s ease;
}

.footer-logo-wrap:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.15));
}

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

.telegram-action-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.telegram-action-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 60px rgba(255, 255, 255, 0.05);
}

.telegram-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 40px;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.feature-pill-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.feature-pill {
    background: rgba(40, 40, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #cccccc;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(60, 60, 60, 0.8);
    color: #ffffff;
}

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

/* Info Section Refinement */
.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: 35px;
    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%;
}

.info-section-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(25, 25, 25, 0.85);
    transform: translateY(-5px);
}

.os-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.os-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.perk-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    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;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

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

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
}

/* FAQ Section Styles */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    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;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.03);
}

.faq-question i {
    font-size: 12px;
    color: #888888;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

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

.faq-item.active .faq-answer-wrapper {
    max-height: 200px;
    /* Adjust based on content */
}

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