/* styles.css */
:root {
    --primary: #00d4ff;
    --secondary: #bd00ff;
    --dark: #0a0e1a;
    --darker: #060810;
    --accent: #ff006e;
    --text: #e0e6ff;
    --text-dim: #8b92b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--darker);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    transition: filter 0.3s ease;
}

.logo:hover img {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}

/* Active Page Indicator */
.nav-link.active {
    color: #0096ff;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, #0096ff, #00d4ff);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(10, 14, 26, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    color: var(--text);
    text-decoration: none;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary);
    transform: translateX(5px);
}

.social-link {
    color: var(--text);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
}

/* Hero Section - Mobile Spacing */
@media (max-width: 768px) {
    .hero {
        padding-top: 8rem;  /* Mehr Abstand zum Header */
        min-height: auto;
    }
    
    .hero-content {
        padding-top: 2rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-top: 1.5rem;  /* Extra Abstand */
    }
}

@media (max-width: 500px) {
    .hero {
        padding-top: 9rem;  /* Noch mehr für kleine Phones */
    }
    
    .hero-content {
        padding-top: 2.5rem;
    }
    
    .hero-title {
        margin-top: 2rem;
    }
}

@media (max-width: 400px) {
    .hero {
        padding-top: 10rem;  /* Maximum für sehr kleine Screens */
    }
}

/* Navigation - Hamburger Menu für Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

.nav-links {
    display: flex;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255,255,255,0.05);
        margin-top: 0;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scan 4s linear infinite;
    opacity: 0.3;
}

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

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease-out;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-dim);
    margin: 1.5rem auto 2rem;
    max-width: 600px;
}

#vr-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .hero {
        padding: 10rem 1.5rem 2rem;  /* Mehr top padding */
        min-height: auto;
    }
    
    .hero-content {
        padding-top: 1rem;
        width: 100%;
    }
    
    .hero-title {
        font-size: 1.5rem !important;  /* Noch kleiner */
        line-height: 1.3;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin: 1rem auto 1.5rem;
        max-width: 100%;
        padding: 0 0.5rem;
        line-height: 1.5;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .stat-card {
        padding: 1rem;  /* Kompakter */
    }
    
    .stat-card h3 {
        font-size: 1.5rem;
    }
    
    .stat-card p {
        font-size: 0.85rem;
    }
    
    .cta-section {
        padding: 1.5rem 1rem 4rem;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-section p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        font-size: 0.9rem;
        padding: 0.7rem 1.25rem;
    }
}

/* Extra kleine Smartphones */
@media (max-width: 400px) {
    .hero {
        padding-top: 11rem;
    }
    
    .hero-title {
        font-size: 1.3rem !important;
        gap: 0.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
        padding: 0 0.25rem;
    }
    
    .stat-card {
        padding: 0.75rem;
    }
    
    .stat-card h3 {
        font-size: 1.3rem;
    }
}

/* Discord Widget */
.cta-section {
    padding: 2rem 2rem 6rem;
    position: relative;
}

.discord-widget {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.discord-widget:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    border-color: var(--primary);
}

.widget-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.discord-icon {
    width: 60px;
    height: 60px;
    color: var(--primary);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.widget-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin: 0;
    background: linear-gradient(135deg, var(--primary), #5865F2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.widget-subtitle {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0 2rem 0;
}

.stat-card {
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: scale(1.05);
}

.stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Widget iframe */
.discord-widget iframe {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.discord-widget:hover iframe {
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
}

/* Features */
.widget-features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    transition: all 0.3s ease;
}

.feature:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.feature svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

/* Join Button */
.join-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, #5865F2, var(--primary));
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.join-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.join-btn:hover::before {
    width: 300px;
    height: 300px;
}

.join-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.4);
}

.join-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.join-btn span {
    position: relative;
    z-index: 1;
}

.join-btn:hover svg {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: rgba(6, 8, 16, 0.9);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.divider {
    color: var(--text-dim);
}

.copyright {
    color: var(--text-dim);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 5rem 1rem 2rem;
    }
    
    .hero-description {
        margin: 1rem auto 1.5rem;
    }
    
    .cta-section {
        padding: 1.5rem 1rem 4rem;
    }
    
    .discord-widget {
        padding: 2rem 1.5rem;
    }
    
    .stats-grid,
    .widget-features {
        grid-template-columns: 1fr;
    }
    
    .discord-widget iframe {
        width: 100%;
        max-width: 350px;
        height: 350px;
    }
}

/* Über uns */
/* Page Hero */
.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(180deg, var(--darker) 0%, rgba(10, 14, 26, 0.8) 100%);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-dim);
}

/* Content Section */
.content-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Info Box */
.info-box {
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.3);
}

.info-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.info-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

/* Features Section */
.features-section {
    padding: 2rem 0;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-dim);
    line-height: 1.6;
}

/* Closing Box */
.closing-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(189, 0, 255, 0.1));
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
}

.closing-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text);
}

.closing-box strong {
    color: var(--primary);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        min-height: 30vh;
        padding: 6rem 1rem 3rem;
    }
    
    .content-section {
        padding: 2rem 1rem;
    }
    
    .info-box {
        padding: 2rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* RP-Regeln */
/* Warning Box */
.warning-box {
    background: linear-gradient(135deg, rgba(255, 0, 76, 0.1), rgba(255, 51, 102, 0.05));
    border: 2px solid rgba(255, 0, 76, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.warning-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 0, 76, 0.1);
    border: 2px solid #ff004c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff004c;
}

.warning-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #ff004c;
    margin-bottom: 1rem;
}

.warning-box p {
    color: var(--text);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.consequence-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 2rem auto;
    text-align: left;
}

.consequence-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(255, 0, 76, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
    color: var(--text);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.consequence-list li:hover {
    border-color: #ff004c;
    transform: translateX(5px);
}

.consequence-list li svg {
    flex-shrink: 0;
    color: #ff004c;
}

.warning-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(10, 14, 26, 0.8);
    border-left: 4px solid #ff004c;
    border-radius: 8px;
    font-style: italic;
    color: var(--text-dim);
}

/* Rules Grid */
.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.rule-card {
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.rule-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.2);
}

.rule-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.rule-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.rule-card p {
    color: var(--text-dim);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .rules-grid {
        grid-template-columns: 1fr;
    }
    
    .warning-box {
        padding: 2rem 1.5rem;
    }
    
    .consequence-list {
        margin: 1.5rem 0;
    }
}

/* RP-Rollen */
/* Roles Intro */
.roles-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.roles-intro h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.roles-intro p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.roles-intro a {
    text-decoration: underline;
    transition: color 0.3s ease;
}

.roles-intro a:hover {
    color: var(--secondary);
}

/* Coming Soon Box */
.coming-soon-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: rgba(10, 14, 26, 0.6);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.1);
}

.coming-soon-box svg {
    color: var(--primary);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.coming-soon-box h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.coming-soon-box p {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.coming-soon-box p:last-of-type {
    color: var(--text);
    font-weight: 600;
}

.coming-soon-box .cta-button {
    margin-top: 2rem;
    display: inline-block;
}

/* Hero Roles */
.hero-roles {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(189, 0, 255, 0.1));
    position: relative;
    overflow: hidden;
}

.hero-roles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(189, 0, 255, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .roles-intro h2 {
        font-size: 2rem;
    }
    
    .roles-intro p {
        font-size: 1rem;
    }
    
    .coming-soon-box {
        padding: 3rem 2rem;
    }
    
    .coming-soon-box h3 {
        font-size: 1.5rem;
    }
    
    .coming-soon-box p {
        font-size: 1rem;
    }
}
/* CTA Button (Discord) */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    margin-top: 1.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

.cta-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Navigation CTA Button (in Navbar) */
.nav-link.cta-button {
    padding: 0.5rem 1.2rem;
    font-size: 0.95rem;
}

/* Coming Soon Box Button */
.coming-soon-box .cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Kontakt */
.contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-wrapper iframe,
.contact-wrapper form {
    width: 100% !important;
    max-width: 100% !important;
    border: none;
    min-height: 600px;
}

/* Formular-Elemente stylen */
.contact-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-wrapper iframe {
    width: 100% !important;
    min-width: 100% !important;
    min-height: 800px !important;
    border: none !important;
    overflow: visible !important;
}

/* Entferne alle width constraints vom Formular */
.contact-wrapper * {
    box-sizing: border-box !important;
}

.contact-wrapper table,
.contact-wrapper tbody,
.contact-wrapper tr,
.contact-wrapper td {
    width: 100% !important;
    display: block !important;
}

.contact-wrapper input[type="text"],
.contact-wrapper input[type="email"],
.contact-wrapper textarea,
.contact-wrapper select {
    width: 100% !important;
    min-width: 100% !important;
    padding: 0.75rem !important;
    font-size: 1rem !important;
}

@media (max-width: 1024px) {
    .contact-wrapper {
        max-width: 95%;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        padding: 1.5rem;
    }
    
    .contact-wrapper iframe {
        min-height: 700px !important;
    }
}

@media (max-width: 480px) {
    .contact-wrapper {
        padding: 1rem;
    }
}


/* Impressum */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
}

.legal-section h3 {
    color: var(--text);
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-section a:hover {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .legal-section {
        padding: 1.5rem;
    }
}

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 150, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 40vh;
        padding: 6rem 1rem 3rem;
    }
    
    .page-hero-content h1 {
        font-size: 3rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 35vh;
        padding: 5rem 1rem 2rem;
    }
    
    .page-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
}

/* Datenschutz */
.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Legal Content Styling */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(0, 150, 255, 0.3);
}

.legal-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #0096ff;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.legal-section ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.legal-section ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #0096ff;
}

.legal-section a {
    color: #0096ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: #8a2be2;
}

@media (max-width: 768px) {
    .legal-section h2 {
        font-size: 1.6rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .legal-section p,
    .legal-section ul li {
        font-size: 0.95rem;
    }
}

/* Page Hero (für Unterseiten) */
.page-hero {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(180deg, rgba(0, 150, 255, 0.1) 0%, transparent 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
}
