
 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
    /* Wichtig: Padding für den fixed Header */
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
    align-items: center; 
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: bold;
    color: #ff0000; /* Rot */
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: white;
    transform: skew(15deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: #ff0000; /* Rot */
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff; 
}

.shop-button {
    flex-shrink: 0;
}

.shop-btn {
    background: #ff0000;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.shop-btn:hover {
    background-color: #fff;
    color: #000;
}

/* Hero Section */
.hero-section {
    padding-top: 80px;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect width="800" height="400" fill="%23000"/><g opacity="0.3"><circle cx="200" cy="100" r="50" fill="%23333"/><circle cx="600" cy="300" r="30" fill="%23444"/></g></svg>');
    background-size: cover;
    background-position: center;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 120px;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 40px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

/* Teams Section */
.teams-section {
    padding: 100px 0;
    background: #000;
}

.teams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image-placeholder {
    width: 100%;
    height: 250px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 14px;
    background-image: linear-gradient(45deg, #1a1a1a 25%, transparent 25%), 
                      linear-gradient(-45deg, #1a1a1a 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #1a1a1a 75%), 
                      linear-gradient(-45deg, transparent 75%, #1a1a1a 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.team-card h3 {
    padding: 20px 20px 10px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
}

.team-card p {
    padding: 0 20px 20px;
    color: #ccc;
    line-height: 1.6;
    font-size: 14px;
}

.learn-more-btn {
    background: #ff0000;
    border: none;
    color: white;
    padding: 12px 30px;
    margin: 0 20px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.learn-more-btn:hover {
    background: #cc0000;
}

/* Next Match Section */
.next-match-section {
    padding: 80px 0;
    background: #f8f8f8;
    color: #000;
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.match-info h2 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 3px;
    margin: 10px 0;
}

.match-date,
.match-subtitle,
.tournament-name {
    font-size: 16px;
    color: #666;
}

.match-vs {
    display: flex;
    align-items: center;
    gap: 40px;
}

.team-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
}

.herox-logo {
    color: #000;
    display: flex;
    align-items: center;
    gap: 15px;
}

.herox-logo::before {
    content: "X";
    width: 60px;
    height: 60px;
    background: #ff0000;
    transform: skew(-15deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.fnatic-logo {
    width: 80px;
    height: 60px;
    background: #ff6600;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.vs-text {
    font-size: 24px;
    font-weight: 700;
    color: #999;
}

/* Previous Matches Section */
.previous-matches-section {
    padding: 80px 0;
    background: #000;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
}

.msi-logo-placeholder {
    width: 100px;
    height: 50px;
    background: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.matches-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.match-row {
    display: grid;
    grid-template-columns: 50px 200px 250px 1fr;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #111;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.match-row:hover {
    background: #1a1a1a;
}

.match-result {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.match-result.win {
    background: #00ff00;
    color: #000;
}

.match-result.loss {
    background: #ff0000;
    color: #fff;
}

.match-date,
.match-tournament {
    color: #999;
    font-size: 14px;
}

.match-teams {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-self: end;
}

.team-logo-small {
    width: 25px;
    height: 25px;
    background: #ff0000;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.team-logo-small.denied-small {
    background: #666;
}

.score {
    font-weight: 700;
    color: #fff;
}

.opponent-logo-placeholder {
    width: 25px;
    height: 25px;
    background: #333;
    border-radius: 3px;
}

.opponent-logo-placeholder.cookies {
    background: #8B4513;
}

/* Join Section */
.join-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    width: 100%;
}

.join-text {
    background: #ff0000;
    padding: 100px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.join-text h2 {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 50px;
    line-height: 1.1;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.join-image-placeholder {
    height: 500px;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    background-image: linear-gradient(45deg, #1a1a1a 25%, transparent 25%), 
                      linear-gradient(-45deg, #1a1a1a 25%, transparent 25%), 
                      linear-gradient(45deg, transparent 75%, #1a1a1a 75%), 
                      linear-gradient(-45deg, transparent 75%, #1a1a1a 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* Footer */
.footer {
    background: #f8f8f8;
    padding: 60px 0;
    border-top: 1px solid #333;
    color: #000;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-social {
    width: 40px;
    height: 40px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #fff;
}

.footer-social:hover {
    background: #ff0000;
    transform: translateY(-3px);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 60px;
        letter-spacing: 4px;
    }
    
    .teams-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .match-header {
        flex-direction: column;
        text-align: center;
    }
    
    .match-vs {
        gap: 20px;
    }
    
    .match-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .join-content {
        grid-template-columns: 1fr;
    }
    
    .join-text {
        padding: 60px 40px;
    }
    
    .join-text h2 {
        font-size: 40px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .header { 
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
        letter-spacing: 2px;
    }
    
    .join-text h2 {
        font-size: 32px;
    }
    
    .nav-menu {
        gap: 15px;
        font-size: 12px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}