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

body {
    font-family: 'Exo 2', 'Orbitron', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* Matrix Background */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

#matrix-canvas {
    width: 100%;
    height: 100%;
}

/* Floating Gaming Elements */
.gaming-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float-element 15s infinite linear;
    opacity: 0.6;
}

.floating-element:nth-child(1) { left: 5%; animation-delay: 0s; }
.floating-element:nth-child(2) { left: 15%; animation-delay: -2s; }
.floating-element:nth-child(3) { left: 25%; animation-delay: -4s; }
.floating-element:nth-child(4) { left: 35%; animation-delay: -6s; }
.floating-element:nth-child(5) { left: 45%; animation-delay: -8s; }
.floating-element:nth-child(6) { left: 55%; animation-delay: -10s; }
.floating-element:nth-child(7) { left: 65%; animation-delay: -12s; }
.floating-element:nth-child(8) { left: 75%; animation-delay: -14s; }

@keyframes float-element {
    0% { 
        transform: translateY(100vh) rotate(0deg); 
        opacity: 0.6;
    }
    50% { 
        opacity: 1;
        transform: translateY(50vh) rotate(180deg);
    }
    100% { 
        transform: translateY(-100px) rotate(360deg); 
        opacity: 0;
    }
}

/* Container */
.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Gaming Header */
.gaming-header {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.1), rgba(0, 0, 0, 0));
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.logo-container {
    position: relative;
}

.logo-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    margin-bottom: 1rem;
    animation: logo-glow 3s ease-in-out infinite alternate;
}

@keyframes logo-glow {
    0% { box-shadow: 0 0 30px rgba(0, 255, 255, 0.6); }
    100% { box-shadow: 0 0 50px rgba(0, 255, 255, 1), 0 0 80px rgba(0, 255, 255, 0.5); }
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ff00);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-flow 4s ease-in-out infinite;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

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

.accent {
    color: #ff00ff;
    text-shadow: 0 0 20px #ff00ff;
}

.tagline {
    font-size: 1rem;
    color: #00ffff;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ff00;
    animation: status-pulse 2s ease-in-out infinite;
}

@keyframes status-pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 10px #00ff00;
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.2);
        box-shadow: 0 0 20px #00ff00;
    }
}

/* Main Gaming Content */
.gaming-content {
    flex: 1;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #00ffff;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Glitch Effect */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.3s infinite;
    color: #ff00ff;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.3s infinite;
    color: #00ffff;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, 0); }
    40% { transform: translate(-2px, 0); }
    60% { transform: translate(0, 2px); }
    80% { transform: translate(0, -2px); }
}

/* Gaming Stats */
.gaming-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(255, 0, 255, 0.1));
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ff00);
    border-radius: 17px;
    z-index: -1;
    animation: border-rotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
}

@keyframes border-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Gaming Features */
.gaming-features {
    margin-bottom: 4rem;
}

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

.gaming-feature {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.gaming-feature:hover {
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.gaming-feature h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gaming-feature p {
    color: #ccc;
    line-height: 1.6;
}

/* Social Section */
.social-section {
    text-align: center;
    margin-bottom: 3rem;
}

.social-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    border-color: #00ffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.social-link.kick:hover {
    border-color: #7c3aed;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
}

.social-link.tiktok:hover {
    border-color: #ff0050;
    box-shadow: 0 10px 30px rgba(255, 0, 80, 0.3);
}

.social-link.instagram:hover {
    border-color: #e4405f;
    box-shadow: 0 10px 30px rgba(228, 64, 95, 0.3);
}

.social-link.contact:hover {
    border-color: #ff00ff;
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
}

.social-link i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.social-link span {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Newsletter Section */
.newsletter-section {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.newsletter-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 300px;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border: none;
    border-radius: 10px;
    color: #000;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

/* Newsletter Messages */
.newsletter-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.newsletter-message.show {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-message.success {
    background: rgba(0, 255, 0, 0.2);
    border: 2px solid #00ff00;
    color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.newsletter-message.error {
    background: rgba(255, 0, 80, 0.2);
    border: 2px solid #ff0050;
    color: #ff0050;
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.3);
}

.newsletter-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    margin-top: 3rem;
}

.footer p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .gaming-content {
        padding: 2rem 1rem;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .gaming-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        min-width: 100px;
        padding: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .gaming-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

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

.gaming-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.gaming-content > *:nth-child(2) { animation-delay: 0.2s; }
.gaming-content > *:nth-child(3) { animation-delay: 0.4s; }
.gaming-content > *:nth-child(4) { animation-delay: 0.6s; }
.gaming-content > *:nth-child(5) { animation-delay: 0.8s; }
.gaming-content > *:nth-child(6) { animation-delay: 1s; }