/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Orbitron', monospace;
    background: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

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

/* Particle Canvas Background */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 50%, #121212 100%);
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    padding: 8px 0;
    position: relative;
    z-index: 1000;
    overflow: hidden;
}

.disclaimer-content {
    white-space: nowrap;
    animation: scroll 35s linear infinite;
}

.disclaimer-text {
    font-size: 14px;
    font-weight: 600;
    color: #121212;
    display: inline-block;
    padding: 0 50px;
}

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

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 196, 180, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00C4B4, #A100F2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 196, 180, 0.5);
}

.logo-subtitle {
    font-size: 0.7rem;
    color: #00C4B4;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: -5px;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: #00C4B4;
    text-shadow: 0 0 10px rgba(0, 196, 180, 0.5);
}

.notify-btn {
    background: linear-gradient(135deg, #00C4B4, #A100F2);
    border-radius: 25px;
    padding: 0.7rem 1.5rem !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 196, 180, 0.3);
    transition: all 0.3s ease;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 196, 180, 0.4);
    color: #ffffff !important;
}

/* Main Content */
.main {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 196, 180, 0.1);
    border: 1px solid #00C4B4;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.badge-text {
    color: #00C4B4;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 196, 180, 0.3); }
    50% { box-shadow: 0 0 20px rgba(0, 196, 180, 0.6); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #00C4B4, #A100F2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 196, 180, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 196, 180, 0.05);
    border: 1px solid rgba(0, 196, 180, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 196, 180, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #00C4B4;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #00C4B4, #A100F2);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 196, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 196, 180, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00C4B4;
    border: 2px solid #00C4B4;
}

.btn-secondary:hover {
    background: #00C4B4;
    color: #121212;
    transform: translateY(-3px);
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #00C4B4, #A100F2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(0, 196, 180, 0.05);
    border: 1px solid rgba(0, 196, 180, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 196, 180, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 196, 180, 0.2);
    border-color: #00C4B4;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 196, 180, 0.5));
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00C4B4;
    margin-bottom: 1rem;
}

.feature-description {
    color: #cccccc;
    line-height: 1.6;
}

/* Games Section */
.games {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.game-card {
    background: rgba(161, 0, 242, 0.05);
    border: 1px solid rgba(161, 0, 242, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(161, 0, 242, 0.2);
    border-color: #A100F2;
}

.game-preview {
    text-align: center;
    margin-bottom: 1.5rem;
}

.game-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0 15px rgba(161, 0, 242, 0.5));
}

.game-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #A100F2;
    margin-bottom: 1rem;
}

.game-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.game-stat {
    background: rgba(161, 0, 242, 0.1);
    color: #A100F2;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Rewards Section */
.rewards {
    padding: 6rem 0;
}

.rewards-info {
    text-align: center;
    margin-bottom: 3rem;
}

.rewards-description {
    font-size: 1.1rem;
    color: #cccccc;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reward-card {
    background: rgba(0, 196, 180, 0.05);
    border: 2px solid rgba(0, 196, 180, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.reward-card.first-place {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.05);
}

.reward-card.second-place {
    border-color: #C0C0C0;
    background: rgba(192, 192, 192, 0.05);
}

.reward-card.third-place {
    border-color: #CD7F32;
    background: rgba(205, 127, 50, 0.05);
}

.reward-card.lucky-draw {
    border-color: #A100F2;
    background: rgba(161, 0, 242, 0.05);
}

.reward-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 196, 180, 0.2);
}

.reward-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reward-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #00C4B4;
    margin-bottom: 1rem;
}

.reward-percentage {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.reward-description {
    color: #cccccc;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(0, 196, 180, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00C4B4;
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00C4B4;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    color: #cccccc;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 196, 180, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #00C4B4;
    border-color: #00C4B4;
    background: rgba(0, 196, 180, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 196, 180, 0.1);
    color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide desktop navigation and show hamburger */
    .desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: flex !important;
        z-index: 9999;
    }
    
    .mobile-nav {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    /* Add padding to main content to account for fixed header */
    .main {
        padding-top: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .header-content {
        gap: 1rem;
        justify-content: space-between;
        align-items: center;
    }
    
    .features-grid,
    .games-grid,
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .follow-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .follow-title {
        font-size: 2rem;
    }
    
    .btn-twitter {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-input {
        min-width: auto;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .features,
    .games,
    .rewards,
    .follow-twitter {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .follow-title {
        font-size: 1.8rem;
    }
    
    .twitter-icon {
        font-size: 3rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

/* Twitter Follow Section */
.follow-twitter {
    background: linear-gradient(135deg, rgba(0, 196, 180, 0.1), rgba(161, 0, 242, 0.1));
    padding: 6rem 0;
}

.follow-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.twitter-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.follow-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00C4B4, #A100F2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.follow-description {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.twitter-cta {
    margin-bottom: 3rem;
}

.btn-twitter {
    background: linear-gradient(45deg, #1DA1F2, #0d8bd9);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
    font-family: 'Orbitron', monospace;
}

.btn-twitter:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 161, 242, 0.4);
    background: linear-gradient(45deg, #0d8bd9, #1DA1F2);
}

.twitter-logo {
    font-size: 1.3rem;
    font-weight: bold;
}

.follow-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.follow-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 196, 180, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.follow-feature:hover {
    background: rgba(0, 196, 180, 0.1);
    border-color: #00C4B4;
    transform: translateY(-5px);
}

.feature-emoji {
    font-size: 1.5rem;
}

.follow-feature span:last-child {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-top: 2px solid #00C4B4;
    padding: 1.5rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text h4 {
    color: #00C4B4;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.cookie-text p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 20px;
    white-space: nowrap;
    min-width: 120px;
}

.cookie-btn.btn-primary {
    background: linear-gradient(135deg, #00C4B4, #A100F2);
    border: none;
}

.cookie-btn.btn-secondary {
    background: transparent;
    border: 2px solid #666666;
    color: #cccccc;
}

.cookie-btn.btn-secondary:hover {
    border-color: #00C4B4;
    color: #00C4B4;
    background: rgba(0, 196, 180, 0.1);
}

.twitter-icon {
    font-size: 3rem;
}

.cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
}

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

.cookie-btn {
    flex: 1;
    max-width: 150px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #00C4B4;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 196, 180, 0.2);
    padding: 1rem 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9998;
}

.mobile-nav.active {
    display: flex !important;
    transform: translateY(0) !important;
    opacity: 1 !important;
    background: rgba(18, 18, 18, 0.98) !important;
}

.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
    color: #00C4B4;
    background: rgba(0, 196, 180, 0.1);
    text-shadow: 0 0 10px rgba(0, 196, 180, 0.5);
}

.mobile-notify-btn {
    background: linear-gradient(135deg, #00C4B4, #A100F2);
    margin: 1rem 2rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 196, 180, 0.3);
    border-bottom: none !important;
}

.mobile-notify-btn:hover {
    color: #ffffff !important;
    background: linear-gradient(135deg, #A100F2, #00C4B4);
} 