/* ===== RESET & BASIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    background-attachment: fixed;
    min-height: 100vh;
    line-height: 1.6;
}

/* ===== LOGO ===== */
h1 {
    padding: 30px 20px;
    text-align: center;
}

h1 img {
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

h1 img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8));
}

/* ===== NAVIGATION ===== */
nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px;
    text-align: center;
    border-top: 2px solid #00d4ff;
    border-bottom: 2px solid #00d4ff;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 10px 15px;
    padding: 12px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 500;
    border: 1px solid transparent;
}

nav a:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    color: #00d4ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    animation: particles 20s linear infinite;
}

@keyframes particles {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    max-width: 900px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.highlight {
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #b8b8b8;
    animation: fadeInUp 1s ease 0.2s both;
}

/* ===== SERVER STATUS ===== */
.server-status {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s both;
    flex-wrap: wrap;
}

.status-indicator,
.player-count {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.status-indicator.online {
    border-color: #00ff88;
}

.status-indicator.online .pulse {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* ===== BUTTONS ===== */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.6);
}

.btn-large {
    padding: 20px 50px;
    font-size: 1.3rem;
}

.copy-message {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid #00ff88;
    border-radius: 10px;
    color: #00ff88;
    display: none;
    animation: fadeIn 0.3s ease;
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00d4ff;
}

.feature-card p {
    color: #b8b8b8;
    line-height: 1.8;
}

/* ===== STATS ===== */
.stats {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #00d4ff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.stat-label {
    color: #b8b8b8;
    font-size: 1.1rem;
}

/* ===== DISCORD CTA ===== */
.discord-cta {
    padding: 100px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.discord-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.discord-cta p {
    font-size: 1.2rem;
    color: #b8b8b8;
    margin-bottom: 40px;
}

/* ===== FOOTER ===== */
footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 40px 20px;
    border-top: 2px solid #00d4ff;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content p {
    color: #b8b8b8;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ff88;
}

/* ===== SEITEN-INHALT (für Team, Über uns, etc.) ===== */
.page-content {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
}

.page-subtitle {
    text-align: center;
    color: #b8b8b8;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

/* ===== TEAM GRID ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: #00d4ff;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.member-avatar {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.member-avatar img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.member-role {
    position: absolute;
    bottom: 15px;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.role-admin {
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: white;
}

.role-mod {
    background: linear-gradient(135deg, #2ed573, #7bed9f);
    color: white;
}

.role-dev {
    background: linear-gradient(135deg, #1e90ff, #70a1ff);
    color: white;
}

.role-support {
    background: linear-gradient(135deg, #ffa502, #ffc312);
    color: white;
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #00d4ff;
}

.member-info p {
    color: #b8b8b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 212, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(0, 212, 255, 0.4);
    transform: scale(1.1);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    /* Navigation */
    nav a {
        display: block;
        margin: 10px auto;
        max-width: 300px;
    }
    
    /* Hero */
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .server-status { flex-direction: column; gap: 15px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    
    /* Stats */
    .stats { gap: 30px; }
    .stat-number { font-size: 2rem; }
    
    /* Logo */
    h1 img { height: 50px !important; }
    
    /* Team */
    .team-grid { grid-template-columns: 1fr; }
    .page-title { font-size: 2rem; }
}