:root {
    --bg-dark: #0a0a0f;
    --bg-card: #13131f;
    --primary-gold: #fbbf24;
    --primary-gold-dim: #d97706;
    --telegram-blue: #229ED9;
    --text-main: #ffffff;
    --text-muted: #9ca3af;
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    --gradient-telegram: linear-gradient(135deg, #229ED9 0%, #1c7aa6 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Effects */
.bg-glow {
    position: fixed;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, rgba(10, 10, 15, 0) 70%);
    z-index: -2;
    pointer-events: none;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

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

/* Header */
.main-header {
    padding: 30px 0;
    text-align: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.logo .highlight {
    color: var(--primary-gold);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0 60px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Platform Choice Section */
.platform-choice {
    padding: 40px 0 80px;
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.platform-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: visible;
    /* Changed from hidden to visible for fan effect */
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: default;
    z-index: 10;
    /* Buttons handle the click */
}

.platform-card:hover {
    border-color: rgba(251, 191, 36, 0.3);
    transform: translateY(-5px);
}

.card-web:hover {
    box-shadow: 0 10px 50px rgba(251, 191, 36, 0.1);
}

.card-telegram:hover {
    border-color: rgba(34, 158, 217, 0.3);
    box-shadow: 0 10px 50px rgba(34, 158, 217, 0.1);
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.icon-wrapper {
    margin-bottom: 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-logo {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.5s ease;
}

/* Specific Backlights */
.card-web .platform-logo {
    filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.4));
    /* Neon Green Glow */
}

.card-telegram .platform-logo {
    filter: drop-shadow(0 0 20px rgba(34, 158, 217, 0.4));
    /* Blue Glow */
}

/* Intensify on Hover */
.card-web:hover .platform-logo {
    filter: drop-shadow(0 0 40px rgba(57, 255, 20, 0.8));
    transform: scale(1.1);
}

.card-telegram:hover .platform-logo {
    filter: drop-shadow(0 0 40px rgba(34, 158, 217, 0.8));
    transform: scale(1.1);
}

.platform-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.platform-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
    max-width: 250px;
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
    color: #d1d5db;
}

.feature-list li::before {
    content: "•";
    color: var(--primary-gold);
    position: absolute;
    left: 0;
    top: 0;
}

.card-telegram .feature-list li::before {
    color: var(--telegram-blue);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gradient-telegram);
    color: #fff;
    box-shadow: 0 4px 15px rgba(34, 158, 217, 0.3);
}

.btn-secondary:hover {
    box-shadow: 0 8px 25px rgba(34, 158, 217, 0.5);
    transform: translateY(-2px);
}

/* Features/Trust Section */
.features {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.feature-item {
    padding: 20px;
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: var(--text-main);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

footer p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
    opacity: 0;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
        /* Tighter container */
    }

    .platform-grid {
        grid-template-columns: 1fr 1fr;
        /* Side by side */
        gap: 10px;
        /* Smaller gap */
    }

    .platform-card {
        padding: 20px 10px;
        /* Reduced padding */
    }

    .hero-title {
        font-size: 1.8rem;
    }

    /* Compact Content for Mobile */
    .icon-wrapper {
        height: 60px;
        margin-bottom: 10px;
    }

    .platform-card h3 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .platform-card p {
        font-size: 0.8rem;
        margin-bottom: 10px;
        display: none;
        /* Hide description to save space if needed, or keep short */
    }

    .feature-list {
        font-size: 0.8rem;
        margin-bottom: 15px;
        padding-left: 0;
    }

    .feature-list li {
        margin-bottom: 5px;
        padding-left: 15px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 30px 0 20px;
    }
}

/* SEO FAQ Section (Discrete) */
.seo-faq {
    padding: 40px 0;
    background-color: #08080c;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    margin-top: 60px;
}

.faq-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    opacity: 0.7;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item h6 {
    color: #d1d5db;
    font-size: 1rem;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.faq-item p {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}