* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --primary: #00f0ff; --secondary: #ff0055; --background: #0a0a1a; --surface: #1a1a2e; --text: #ffffff; --text-muted: rgba(255, 255, 255, 0.6); }
body { font-family: 'Segoe UI', sans-serif; background: var(--background); color: var(--text); line-height: 1.6; overflow-x: hidden; }
header { background: rgba(10, 10, 26, 0.95); backdrop-filter: blur(10px); position: fixed; width: 100%; z-index: 1000; border-bottom: 2px solid var(--primary); }
nav { max-width: 1400px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: bold; color: var(--primary); text-shadow: 0 0 10px var(--primary); }
nav ul { display: flex; list-style: none; gap: 1.5rem; }
nav a { color: var(--text); text-decoration: none; transition: all 0.3s ease; font-size: 0.95rem; position: relative; }
nav a:hover, nav a.active { color: var(--primary); text-shadow: 0 0 8px var(--primary); }
nav a.active::after { width: 100%; }
nav a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s ease; }
nav a:hover::after, nav a.active::after { width: 100%; }
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg, rgba(10, 10, 26, 0.9), rgba(26, 26, 46, 0.9)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%2300f0ff" opacity="0.5"/></svg>'); background-size: cover; position: relative; }
.hero-content h1 { font-size: 4rem; margin-bottom: 0.5rem; text-shadow: 0 0 20px var(--primary); animation: glow 2s ease-in-out infinite alternate; }
.hero-content h2 { font-size: 3rem; margin-bottom: 1rem; background: linear-gradient(90deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-content p { font-size: 1.2rem; margin-bottom: 2rem; color: rgba(255, 255, 255, 0.8); }
.cta-button { padding: 1rem 2.5rem; font-size: 1.1rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); border: none; border-radius: 50px; color: var(--background); font-weight: bold; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 0 20px rgba(0, 240, 255, 0.5); }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(0, 240, 255, 0.8); }
.cta-button.secondary { background: transparent; border: 2px solid var(--primary); box-shadow: none; }
.cta-button.secondary:hover { background: var(--primary); box-shadow: 0 0 20px rgba(0, 240, 255, 0.5); }

/* Live Section */
.live-section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; background: linear-gradient(180deg, transparent, rgba(255, 0, 85, 0.1)); }
.live-content { text-align: center; margin-bottom: 3rem; }
.live-badge { display: inline-block; background: var(--secondary); padding: 0.5rem 1.5rem; border-radius: 50px; color: white; font-weight: bold; margin-bottom: 1rem; animation: pulse 2s infinite; }
.live-content h2 { font-size: 2.5rem; text-shadow: 0 0 10px var(--primary); }
.live-streams { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.stream-card { background: var(--surface); padding: 1.5rem; border-radius: 15px; border: 1px solid rgba(0, 240, 255, 0.2); transition: all 0.3s ease; position: relative; overflow: hidden; }
.stream-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 0 30px rgba(0, 240, 255, 0.3); }
.stream-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--secondary); }
.stream-video { font-size: 3rem; text-align: center; margin-bottom: 1rem; }
.stream-info { text-align: left; }
.streamer { color: var(--primary); font-weight: bold; font-size: 1.1rem; }
.stream-title { color: var(--text); margin: 0.5rem 0; font-size: 0.95rem; }
.stream-stats { display: flex; gap: 1.5rem; font-size: 0.85rem; color: var(--text-muted); }

/* Featured Section */
.featured { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.05)); }
.featured h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; text-shadow: 0 0 10px var(--primary); }
.featured-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.featured-card { background: var(--surface); border-radius: 15px; overflow: hidden; transition: all 0.3s ease; border: 1px solid rgba(0, 240, 255, 0.2); }
.featured-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 0 30px rgba(0, 240, 255, 0.3); }
.featured-image { font-size: 4rem; text-align: center; padding: 2rem; }
.featured-content { padding: 0 2rem 2rem; }
.featured-tag { display: inline-block; background: var(--primary); padding: 0.25rem 1rem; border-radius: 50px; font-size: 0.8rem; color: var(--background); margin-bottom: 1rem; }
.featured-card h3 { color: var(--primary); margin-bottom: 0.5rem; text-shadow: 0 0 10px var(--primary); }
.featured-card p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.9rem; }
.featured-button { width: 100%; padding: 0.75rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); border: none; border-radius: 50px; color: var(--background); font-weight: bold; cursor: pointer; transition: all 0.3s ease; }

/* Game Cards */
.games h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; text-shadow: 0 0 10px var(--primary); }
.games-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.game-card { display: flex; flex-direction: column; gap: 1rem; background: var(--surface); padding: 2rem; border-radius: 15px; transition: all 0.3s ease; border: 1px solid rgba(0, 240, 255, 0.2); position: relative; overflow: hidden; }
.game-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 0 30px rgba(0, 240, 255, 0.3); }
.game-card.featured { border: 2px solid var(--primary); }
.game-badges { display: flex; gap: 0.5rem; margin-bottom: 0.5rem; flex-wrap: wrap; }
.badge { padding: 0.25rem 0.75rem; border-radius: 50px; font-size: 0.75rem; font-weight: bold; }
.badge.popular { background: gold; color: #000; }
.badge.new { background: var(--primary); color: var(--background); }
.badge.featured { background: var(--secondary); color: white; }
.badge.trending { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: var(--background); }
.game-image { font-size: 5rem; text-align: center; }
.game-info h3 { color: var(--primary); margin-bottom: 0.5rem; text-shadow: 0 0 10px var(--primary); }
.game-info p { color: var(--text-muted); margin-bottom: 1rem; }
.game-stats { display: flex; gap: 1rem; margin-bottom: 1rem; font-size: 0.9rem; color: var(--text-muted); }
.game-play { padding: 0.75rem 2rem; font-size: 1rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); border: none; border-radius: 50px; color: var(--background); font-weight: bold; cursor: pointer; transition: all 0.3s ease; }
.game-play:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0, 240, 255, 0.8); }
.game-play.disabled { background: #555; cursor: not-allowed; transform: none; box-shadow: none; }

/* Leaderboard */
.leaderboard { padding: 5rem 2rem; max-width: 800px; margin: 0 auto; }
.leaderboard h2 { text-align: center; font-size: 2.5rem; margin-bottom: 2rem; text-shadow: 0 0 10px var(--primary); }
.leaderboard-tabs { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.tab-button { padding: 0.75rem 2rem; background: var(--surface); border: 2px solid var(--primary); border-radius: 50px; color: var(--primary); cursor: pointer; transition: all 0.3s ease; font-weight: bold; }
.tab-button:hover, .tab-button.active { background: var(--primary); color: var(--background); box-shadow: 0 0 20px rgba(0, 240, 255, 0.5); }
.leaderboard-list { display: flex; flex-direction: column; gap: 1rem; }
.leaderboard-item { display: flex; align-items: center; gap: 1.5rem; background: var(--surface); padding: 1rem 2rem; border-radius: 10px; transition: all 0.3s ease; border: 1px solid rgba(0, 240, 255, 0.2); position: relative; overflow: hidden; }
.leaderboard-item::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--primary); transition: all 0.3s ease; }
.leaderboard-item:hover { transform: translateX(10px); border-color: var(--primary); box-shadow: 0 0 20px rgba(0, 240, 255, 0.3); }
.leaderboard-item:hover::before { width: 100%; opacity: 0.1; }
.leaderboard-item.rank-1::before { background: gold; }
.leaderboard-item.rank-2::before { background: silver; }
.leaderboard-item.rank-3::before { background: #cd7f32; }
.leaderboard-item.rank-1:hover::before, .leaderboard-item.rank-2:hover::before, .leaderboard-item.rank-3:hover::before { opacity: 1; }
.rank { font-size: 1.5rem; font-weight: bold; color: var(--text-muted); min-width: 50px; text-align: center; }
.player-avatar { font-size: 2rem; }
.player-name { font-size: 1.3rem; flex: 1; }
.player-score { font-size: 1.3rem; color: var(--primary); font-weight: bold; }

/* Community Section */
.community { padding: 5rem 2rem; text-align: center; background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.1)); }
.community h2 { font-size: 2.5rem; margin-bottom: 3rem; text-shadow: 0 0 10px var(--primary); }
.community-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.community-card { background: var(--surface); padding: 2rem; border-radius: 15px; transition: all 0.3s ease; border: 1px solid rgba(0, 240, 255, 0.2); position: relative; overflow: hidden; }
.community-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 0 30px rgba(0, 240, 255, 0.3); }
.community-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--primary); transition: all 0.3s ease; }
.community-card:hover::before { height: 100%; }
.community-icon { font-size: 3rem; margin-bottom: 1rem; }
.community-card h3 { color: var(--primary); margin-bottom: 0.5rem; text-shadow: 0 0 10px var(--primary); }
.community-card p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }
.community-join { padding: 0.75rem 2rem; font-size: 1rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); border: none; border-radius: 50px; color: var(--background); font-weight: bold; cursor: pointer; transition: all 0.3s ease; }

/* Newsletter */
.newsletter { padding: 5rem 2rem; text-align: center; max-width: 600px; margin: 0 auto; background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.1)); }
.newsletter h2 { font-size: 2.5rem; margin-bottom: 0.5rem; text-shadow: 0 0 10px var(--primary); }
.newsletter p { font-size: 1.1rem; margin-bottom: 2rem; color: var(--text-muted); }
.newsletter-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; gap: 1rem; }
.newsletter-form input { flex: 1; padding: 1rem 1.5rem; border: 2px solid var(--primary); border-radius: 50px; background: var(--surface); color: var(--text); font-size: 1rem; outline: none; transition: all 0.3s ease; }
.newsletter-form input:focus { box-shadow: 0 0 20px rgba(0, 240, 255, 0.5); }
.newsletter-form button { padding: 1rem 2rem; font-size: 1rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); border: none; border-radius: 50px; color: var(--background); font-weight: bold; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 0 20px rgba(0, 240, 255, 0.5); }
.newsletter-form button:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(0, 240, 255, 0.8); }
.newsletter-success { margin-top: 1.5rem; padding: 1rem; background: rgba(0, 240, 255, 0.1); border-radius: 10px; border: 1px solid var(--primary); }
.success-icon { font-size: 1.5rem; color: var(--primary); }
.success-icon + p { color: var(--text-muted); margin: 0.5rem 0 0; }

/* Partners */
.partners { padding: 3rem 2rem; text-align: center; background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.05)); }
.partners h2 { font-size: 2rem; margin-bottom: 2rem; color: var(--text-muted); }
.partners-logos { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; opacity: 0.6; }
.partner-logo { font-size: 3rem; transition: all 0.3s ease; }
.partner-logo:hover { opacity: 1; transform: scale(1.2); }

/* Testimonials */
.testimonials { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; background: linear-gradient(180deg, transparent, rgba(0, 240, 255, 0.05)); }
.testimonials h2 { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; text-shadow: 0 0 10px var(--primary); }
.testimonials-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.testimonial-card { background: var(--surface); padding: 2rem; border-radius: 15px; border: 1px solid rgba(0, 240, 255, 0.2); position: relative; overflow: hidden; }
.testimonial-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary)); }
.testimonial-rating { color: gold; margin-bottom: 1rem; font-size: 1.3rem; }
.testimonial-card p { color: var(--text-muted); margin-bottom: 1.5rem; font-style: italic; line-height: 1.8; }
.testimonial-author { display: flex; justify-content: space-between; align-items: center; }
.testimonial-author span:first-child { color: var(--primary); font-weight: bold; }
.testimonial-author span:last-child { color: var(--secondary); font-size: 0.9rem; }

/* Contact */
.contact { padding: 5rem 2rem; max-width: 800px; margin: 0 auto; }
.contact h2 { text-align: center; font-size: 2.5rem; margin-bottom: 2rem; text-shadow: 0 0 10px var(--primary); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-form input, .contact-form textarea { padding: 1rem 1.5rem; border: 2px solid var(--primary); border-radius: 10px; background: var(--surface); color: var(--text); font-size: 1rem; outline: none; transition: all 0.3s ease; }
.contact-form input:focus, .contact-form textarea:focus { box-shadow: 0 0 20px rgba(0, 240, 255, 0.5); }
.contact-form textarea { resize: vertical; min-height: 150px; }
.contact-form button { padding: 1rem 2rem; font-size: 1rem; background: linear-gradient(135deg, var(--primary), var(--secondary)); border: none; border-radius: 10px; color: var(--background); font-weight: bold; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 0 20px rgba(0, 240, 255, 0.5); }
.contact-form button:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(0, 240, 255, 0.8); }

/* Footer */
footer { background: var(--surface); border-top: 2px solid var(--primary); color: var(--text-muted); }
.footer-content { max-width: 1400px; margin: 0 auto; padding: 3rem 2rem; }
.footer-brand { margin-bottom: 2rem; }
.footer-brand p { margin-top: 1rem; }
.footer-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.footer-column h4 { color: var(--primary); margin-bottom: 1rem; text-shadow: 0 0 10px var(--primary); }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 0.5rem; }
.footer-column a { color: var(--text-muted); text-decoration: none; transition: all 0.3s ease; }
.footer-column a:hover { color: var(--primary); text-shadow: 0 0 8px var(--primary); }
.footer-bottom { text-align: center; padding: 1.5rem 2rem; border-top: 1px solid rgba(0, 240, 255, 0.2); }

/* Animations */
@keyframes glow {
    from { text-shadow: 0 0 20px var(--primary); }
    to { text-shadow: 0 0 40px var(--primary), 0 0 60px var(--secondary); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}