/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #121212;
}

/* Hero Section */
#hero {
    background-color: #000000;
    padding: 100px 20px;
    text-align: center;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.3));
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    border: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

/* Sections */
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.8em;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

section p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2em;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Twitch Section */
.twitch-embed {
    display: flex;
    justify-content: center;
}

/* YouTube Section */
.video-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.video-row iframe {
    max-width: 100%;
    height: 315px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Instagram Section */
.instagram-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.instagram-post {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.instagram-post:hover {
    transform: scale(1.05);
}

.instagram-post img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    display: block;
}

.instagram-post a {
    text-decoration: none;
}

section p a {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

section p a:hover {
    color: #764ba2;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-logo {
        max-width: 100px;
    }

    section {
        padding: 60px 20px;
    }

    section h2 {
        font-size: 2em;
    }

    .video-row, .instagram-row {
        flex-direction: column;
        align-items: center;
    }

    .video-row iframe, .instagram-post img {
        width: 100%;
        max-width: 560px;
    }
}