/* ===== VARIABLES ===== */
:root {
    --primary: #FF5F00;
    --primary-dark: #cc4c00;
    --secondary: #00A8FF;
    --dark: #0D0D15;
    --dark-light: #1A1A2E;
    --light: #F8F9FA;
    --gray: #6C757D;
    --success: #28A745;
    --danger: #DC3545;
    --warning: #FFC107;
    --font-title: 'Oxanium', sans-serif;
    --font-text: 'Montserrat', sans-serif;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-text);
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 95, 0, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: #0088cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--dark);
    transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 13, 21, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 95, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.logo span {
    color: var(--primary);
}

.logo-icon {
    color: var(--primary);
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.discord-btn {
    background-color: #5865F2;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.discord-btn:hover {
    background-color: #4752C4;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('bilder/serverbild.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
      linear-gradient(to bottom, rgba(13, 13, 21, 0.2) 0%, rgba(13, 13, 21, 0.8) 100%),
      url('bilder/GIF.gif');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.server-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    z-index: 1;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}

.stat i {
    color: var(--primary);
    font-size: 1.5rem;
}

.stat span {
    font-weight: 700;
    color: var(--primary);
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* ===== FEATURES ===== */
.features {
    padding: 6rem 0;
    background-color: var(--dark-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
    padding: 6rem 0;
    background-color: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ===== RULES PREVIEW ===== */
.rules-preview {
    padding: 6rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('bilder/police-rp.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

.rules-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.rules-content {
    background-color: rgba(13, 13, 21, 0.9);
    border-radius: 12px;
    padding: 3rem;
    max-width: 600px;
    border-left: 4px solid var(--primary);
}

.rules-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.rules-list {
    list-style: none;
    margin-bottom: 2rem;
}

.rules-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rules-list i {
    color: var(--primary);
}

.rules-content p {
    margin-bottom: 2rem;
    color: var(--gray);
}

/* ===== FOOTER ===== */
.main-footer {
    background-color: var(--dark-light);
    padding: 4rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.footer-logo h3 span {
    color: var(--primary);
}

.footer-logo p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4, .footer-info h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.footer-info i {
    color: var(--primary);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-bottom p:first-child {
    margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .server-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .stat {
        flex: 1 1 150px;
        justify-content: center;
    }
    
    .features, .gallery-preview, .rules-preview {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 600px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .rules-content {
        padding: 2rem;
    }
}

/* ===== TEAM PAGE STYLES ===== */
.page-header {
    position: relative;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('bilder/team-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.5rem;
    color: var(--primary);
}

.team-section {
    padding: 5rem 0;
    background-color: var(--dark);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background-color: var(--dark-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 95, 0, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.team-card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.team-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-card-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.team-card-info {
    padding: 1.5rem;
}

.team-card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.team-card-info .role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-card-info .bio {
    color: var(--gray);
    line-height: 1.7;
}

.application-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('bilder/application-bg.jpg') no-repeat center center/cover;
    background-attachment: fixed;
}

.application-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.application-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.application-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

/* ===== RULES PAGE STYLES ===== */
.rules-nav-section {
    background-color: var(--dark-light);
    padding: 1.5rem 0;
    position: sticky;
    top: 80px;
    z-index: 900;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rules-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.rules-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    color: var(--gray);
    transition: all 0.3s ease;
    font-weight: 500;
}

.rules-nav-item:hover, .rules-nav-item.active {
    background-color: var(--primary);
    color: white;
}

.rules-content-section {
    padding: 4rem 0;
    background-color: var(--dark);
}

.rules-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.rules-sidebar {
    position: sticky;
    top: 160px;
    align-self: start;
    height: calc(100vh - 160px);
    overflow-y: auto;
    padding-right: 1rem;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

.sidebar-section a {
    display: block;
    padding: 0.5rem 0;
    color: var(--gray);
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.sidebar-section a:hover {
    color: var(--primary);
}

.rules-main-content {
    background-color: var(--dark-light);
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--primary);
}

.rules-category {
    margin-bottom: 3rem;
}

.rules-category h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.rule-card {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--primary);
    overflow: hidden;
}

.rule-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: rgba(0, 0, 0, 0.2);
}

.rule-card-header h3 {
    font-size: 1.2rem;
    color: white;
}

.rule-severity {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.rule-severity.high {
    background-color: var(--danger);
    color: white;
}

.rule-severity.medium {
    background-color: var(--warning);
    color: #000;
}

.rule-severity.low {
    background-color: var(--success);
    color: white;
}

.rule-card-content {
    padding: 1.5rem;
}

.rule-card-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.rule-punishment {
    padding: 0.75rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.rule-example {
    padding: 0.75rem;
    background-color: rgba(255, 95, 0, 0.1);
    border-left: 3px solid var(--primary);
    border-radius: 0 6px 6px 0;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.rules-notice {
    padding: 3rem 0;
    background-color: var(--dark-light);
}

.notice-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background-color: rgba(220, 53, 69, 0.1);
    border-left: 4px solid var(--danger);
    padding: 2rem;
    border-radius: 0 8px 8px 0;
}

.notice-icon {
    font-size: 2.5rem;
    color: var(--danger);
}

.notice-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.notice-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== GALLERY PAGE STYLES ===== */
.gallery-filter-section {
    padding: 2rem 0;
    background-color: var(--dark-light);
    position: sticky;
    top: 80px;
    z-index: 900;
}

.gallery-filter {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 20px;
    color: var(--gray);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary);
    color: white;
}

.gallery-grid-section {
    padding: 4rem 0;
    background-color: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    transition: bottom 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    bottom: 0;
}

.gallery-item-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-item-overlay p {
    color: var(--gray);
    font-size: 0.9rem;
}

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    display: block;
    max-width: 90%;
    max-height: 80%;
    margin: 5% auto;
}

.modal-caption {
    text-align: center;
    color: white;
    padding: 1rem;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: var(--primary);
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 1rem;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    transition: 0.3s;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.prev:hover, .next:hover {
    background-color: rgba(255, 95, 0, 0.5);
}

.video-section {
    padding: 4rem 0;
    background-color: var(--dark-light);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    background-color: var(--dark);
    border-radius: 8px;
    overflow: hidden;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card h3 {
    font-size: 1.2rem;
    padding: 1rem 1rem 0;
    color: white;
}

.video-card p {
    color: var(--gray);
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
    padding: 5rem 0;
    background-color: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background-color: var(--dark-light);
    padding: 2rem;
    border-radius: 12px;
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.info-card {
    background-color: var(--dark-light);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 95, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.info-content p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-section {
    padding: 5rem 0;
    background-color: var(--dark-light);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--dark);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background-color: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 95, 0, 0.2);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 1rem 0;
    color: var(--gray);
    line-height: 1.7;
}

.faq-question.active + .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1200px) {
    .rules-container {
        grid-template-columns: 1fr;
    }
    
    .rules-sidebar {
        position: static;
        height: auto;
        margin-bottom: 2rem;
    }
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.2rem;
    }
    
    .rules-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .rules-nav-item {
        white-space: nowrap;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .page-header {
        height: 250px;
        margin-top: 70px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Regelwerk Layout */
.rules-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.rules-sidebar {
    width: 250px;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.rules-main-content {
    flex: 1;
}

.sidebar-section {
    background: #1e1e2d;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.sidebar-section h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.sidebar-section a {
    display: block;
    color: #a0a0c0;
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-section a:hover {
    color: #fff;
}

.rules-category {
    margin-bottom: 40px;
}

.rules-category h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rule-card {
    background: #1e1e2d;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.rule-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.rule-card-header h3 {
    color: #fff;
    font-size: 20px;
}

.rule-severity {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.rule-severity.high {
    background: #ff3b3b;
    color: #fff;
}

.rule-severity.medium {
    background: #ff9500;
    color: #fff;
}

.rule-severity.low {
    background: #34c759;
    color: #fff;
}

.rule-card-content {
    color: #d1d1e0;
    line-height: 1.6;
}

.rule-punishment {
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 59, 59, 0.1);
    border-left: 3px solid #ff3b3b;
    color: #ff7b7b;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .rules-container {
        flex-direction: column;
    }
    
    .rules-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 30px;
    }
}

span {
  color: white;
}

/* Zusätzliche Coming-Soon Animationen */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.countdown-item {
    background: rgba(255, 95, 0, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    min-width: 80px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 95, 0, 0.3);
    animation: pulse 2s infinite alternate;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Oxanium', sans-serif;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin: 2rem auto;
    max-width: 500px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0;
    animation: progressAnimation 3s ease-in-out infinite;
}

@keyframes progressAnimation {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
