/* ===== RESET & GRUNDLAGEN ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1001;
    transition: transform 0.3s ease;
    text-decoration: none !important;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none !important;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    transition: right 0.4s ease;
    z-index: 999;
    padding-top: 100px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0 2rem;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a {
    display: block;
    padding: 1.2rem 0;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    color: #667eea;
    padding-left: 10px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    margin-top: 0;
    padding-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 2rem;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-slogan {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
    padding: 8rem 0 6rem;
    flex: 1 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: #b0b0b0;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-text {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.intro-text p {
    font-size: 1.2rem;
    color: #b0b0b0;
    text-align: center;
    margin-bottom: 1.5rem;
}

.intro-text .highlight {
    color: #667eea;
    font-weight: 700;
    font-size: 1.5rem;
    margin-top: 2rem;
}

/* ===== GRIDS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.stat-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stat-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* ===== REGELN ===== */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.rule-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.rule-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
}

.rule-card h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.rule-card p {
    color: #b0b0b0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.rule-card p strong {
    color: #ffffff;
    font-weight: 600;
}

.rule-card.important-rule {
    border: 2px solid rgba(255, 0, 0, 0.3);
    background: rgba(255, 0, 0, 0.05);
}

.rule-card.important-rule h3 {
    color: #ff6b6b;
}

.help-text {
    color: #ff6b6b !important;
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 107, 107, 0.3);
}

@media (min-width: 1025px) {
    .full-width {
        grid-column: 1 / -1;
    }
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.team-avatar-container {
    margin-bottom: 2rem;
}

.team-avatar-container img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
    box-shadow: 0 0 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar-container img {
    transform: scale(1.05);
    border-color: #764ba2;
}

.team-card h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 700;
}

.team-card p {
    font-size: 1.4rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 0;
}

/* ===== JOIN PAGE ===== */
.join-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.join-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.join-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.join-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.join-icon {
    margin-bottom: 1.5rem;
}

.platform-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.join-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.join-card p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.important-note {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    margin: 3rem 0;
}

.important-note p {
    color: #ffc107;
    font-size: 1.2rem;
}

.important-note strong {
    color: #ffffff;
}

.recommended {
    margin: 4rem 0;
}

.recommended h3 {
    color: #ffffff;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.rover-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rover-icon {
    flex-shrink: 0;
}

.rover-content {
    flex: 1;
}

.rover-content h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.rover-content p {
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.ready-message {
    text-align: center;
    margin: 4rem 0 2rem;
}

.ready-message h3 {
    color: #28a745;
    font-size: 2rem;
    font-weight: 600;
}

/* ===== DISCORD PAGE ===== */
.discord-cta {
    max-width: 1000px;
    margin: 0 auto;
}

.discord-content {
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.discord-icon-large {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.discord-content h4 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.discord-content p {
    color: #b0b0b0;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.discord-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #667eea;
}

.feature-item span {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* ===== CONTACT PAGE ===== */
.contact-center {
    max-width: 800px;
    margin: 0 auto;
}

.contact-methods-centered {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: #667eea;
}

.contact-item span {
    font-size: 3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-item p {
    color: #b0b0b0;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* ===== IMPRESSUM ===== */
.impressum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.impressum-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.impressum-card:hover {
    transform: translateY(-5px);
    border-color: #667eea;
}

.impressum-card h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.impressum-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

.impressum-card p strong {
    color: #ffffff;
    font-weight: 600;
}

.impressum-card a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
}

.impressum-card a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* ===== FOOTER ===== */
footer {
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 2rem;
    margin-top: auto;
}

.footer-bottom {
    text-align: center;
    color: #b0b0b0;
}

.footer-bottom p {
    margin-bottom: 1rem;
}

.footer-bottom a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #667eea;
}

/* ===== MOBILE OPTIMIERUNG ===== */
@media (max-width: 768px) {
    .header-container {
        padding: 0.8rem 1.5rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo span {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-slogan {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .section {
        padding: 7rem 0 4rem;
    }
    
    .section-header h2,
    h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .rules-grid,
    .team-grid,
    .stats-grid,
    .join-steps,
    .discord-features,
    .impressum-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .rover-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .impressum-card {
        padding: 1.5rem;
    }
    
    .footer-bottom {
        padding: 0 1rem;
    }
    
    .footer-bottom a {
        display: inline-block;
        margin: 5px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
    }
    
    .hero-logo {
        width: 150px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2,
    h2 {
        font-size: 2rem;
    }
    
    .join-card,
    .rule-card,
    .team-card,
    .stat-card {
        padding: 1.5rem;
    }
    
    .team-avatar-container img {
        width: 100px;
        height: 100px;
    }
    
    .team-card h3 {
        font-size: 1.8rem;
    }
    
    .team-card p {
        font-size: 1.2rem;
    }
    
    .discord-content {
        padding: 2rem 1.5rem;
    }
    
    .discord-content h4 {
        font-size: 1.6rem;
    }
}

/* ===== HILFSKLASSEN ===== */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.pt-4 {
    padding-top: 2rem;
}

.pb-4 {
    padding-bottom: 2rem;
}