:root {
    --bg-dark: #0B0F19;
    --bg-card: #151A2D;
    --primary: #FF2E63;
    --primary-glow: rgba(255, 46, 99, 0.4);
    --secondary: #08D9D6;
    --secondary-glow: rgba(8, 217, 214, 0.4);
    --accent: #EAEAEA;
    --text-main: #FFFFFF;
    --text-muted: #A0A3B1;
    --gradient-main: linear-gradient(135deg, #FF2E63 0%, #FF0080 100%);
    --gradient-card: linear-gradient(145deg, rgba(21, 26, 45, 0.9) 0%, rgba(21, 26, 45, 0.6) 100%);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

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

/* Header */
header {
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: var(--glass-border);
    padding: 1.2rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    margin-left: 10px;
    color: var(--text-main);
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-item-highlight {
    color: var(--secondary) !important;
    font-weight: 700 !important;
    text-shadow: 0 0 10px var(--secondary-glow);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 46, 99, 0.15) 0%, rgba(11, 15, 25, 0) 70%);
    z-index: -1;
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite alternate;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 46, 99, 0.1);
    border: 1px solid rgba(255, 46, 99, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 46, 99, 0.2);
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, #a5a5a5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 46, 99, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 46, 99, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Rewards Section */
.rewards-section {
    padding: 100px 0;
    position: relative;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.reward-card {
    background: var(--bg-card);
    border: var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.reward-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
}

.reward-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(8, 217, 214, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reward-card:hover::before {
    opacity: 1;
}

.reward-image {
    height: 200px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--secondary);
    filter: drop-shadow(0 0 20px var(--secondary-glow));
    animation: float 6s ease-in-out infinite;
}

.reward-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.reward-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.token-price {
    display: inline-block;
    background: rgba(8, 217, 214, 0.1);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Features Grid */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.feature-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #FF2E63, #FF0080);
    color: white;
    box-shadow: 0 15px 30px rgba(255, 46, 99, 0.4);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2a2f45, #151a2d);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-box h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

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

/* Footer */
footer {
    background: #05080f;
    padding: 80px 0 40px;
    border-top: var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 20px;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    color: #555;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Content Pages */
.content-page {
    padding: 80px 0;
}

.legal-content {
    background: var(--bg-card);
    padding: 60px;
    border-radius: 24px;
    border: var(--glass-border);
}

.legal-content h1 {
    color: var(--primary);
    margin-bottom: 10px;
}

.legal-content h2 {
    color: var(--text-main);
    margin-top: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
}

.legal-content strong {
    color: var(--text-main);
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 140px 0 60px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        margin: 20px auto 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 15, 25, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .logo img {
        height: 32px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.1);
    }
}

/* Social Media Section in Footer */
.footer-social-section {
    padding: 40px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 60px;
}

.social-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #FF2E63, #08D9D6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.social-handle {
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.05);
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    color: var(--secondary);
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-card {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.social-card span {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.9rem;
}

/* Brand Colors & Hover Effects */
.social-card.tiktok:hover .icon-wrapper { color: #FE2C55; transform: scale(1.2); }
.social-card.instagram:hover .icon-wrapper { color: #E1306C; transform: scale(1.2); }
.social-card.twitter:hover .icon-wrapper { color: #1DA1F2; transform: scale(1.2); }
.social-card.youtube:hover .icon-wrapper { color: #FF0000; transform: scale(1.2); }

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-grid {
        gap: 15px;
    }
    .social-card {
        width: 120px;
        height: 120px;
    }
    .icon-wrapper {
        font-size: 2rem;
    }
}