/* HolySMP - Modern Minecraft Style CSS */

@import url('../fonts/fontawesome-free-7.2.0-web/css/all.min.css');

/* Custom Properties */
:root {
    /* Minecraft-inspired color palette */
    --primary-color: #2ECC71;
    --primary-dark: #27AE60;
    --secondary-color: #3498DB;
    --accent-color: #F39C12;
    --discord-color: #5865F2;

    /* Dark theme colors */
    --bg-primary: #0F1419;
    --bg-secondary: #1C2330;
    --bg-tertiary: #2A3441;
    --bg-glass: rgba(28, 35, 48, 0.7);
    --bg-glass-light: rgba(46, 204, 113, 0.1);

    /* Text colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B0BEC5;
    --text-muted: #78909C;

    /* Effects */
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(46, 204, 113, 0.3);

    /* Animations */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    /* Typography */
    --font-minecraft: 'Monocraft', 'Minecraft', 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Minecraft', 'Monocraft', 'Segoe UI', system-ui, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
}

/* Font Face */
@font-face {
    font-family: 'Minecraft';
    src: url('../fonts/Minecraft.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Monocraft';
    src: url('../fonts/Monocraft.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-minecraft);
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-minecraft);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(46, 204, 113, 0.5);
}

.btn-secondary {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(28, 35, 48, 0.9);
    border-color: var(--primary-color);
}

.btn-discord {
    background: linear-gradient(135deg, var(--discord-color), #4752C4);
    color: white;
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(88, 101, 242, 0.5);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    left: 0.85rem;
    bottom: 0.85rem;
    z-index: 1400;
    display: flex;
    align-items: flex-end;
    gap: 0.25rem;
    max-width: min(430px, calc(100vw - 1.7rem));
    pointer-events: none;
}

.cookie-consent-figure,
.cookie-consent-bubble {
    pointer-events: auto;
}

.cookie-consent-figure {
    width: clamp(92px, 12vw, 142px);
    margin-left: -0.35rem;
    margin-right: -0.55rem;
    margin-bottom: -0.35rem;
    transform-origin: left bottom;
    transform: translate3d(-32%, 36%, 0) rotate(-14deg) scale(0.9);
    opacity: 0;
    will-change: transform, opacity;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.5));
}

.cookie-consent-image {
    display: block;
    width: 100%;
    height: auto;
    image-rendering: pixelated;
}

.cookie-consent-bubble {
    position: relative;
    flex: 1 1 300px;
    background: linear-gradient(180deg, rgba(23, 29, 38, 0.98) 0%, rgba(15, 20, 25, 0.98) 100%);
    border: 4px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 0.78rem 0.88rem 0.76rem;
    margin-bottom: 0.55rem;
    box-shadow: 0 0 0 2px rgba(12, 16, 20, 0.85), 0 18px 30px rgba(0, 0, 0, 0.38);
    transform: translate3d(-1.15rem, 4rem, 0) scale(0.92);
    opacity: 0;
    will-change: transform, opacity;
}

.cookie-consent-bubble::before {
    content: '';
    position: absolute;
    left: -18px;
    bottom: 8px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 18px solid rgba(20, 26, 34, 0.98);
    filter: drop-shadow(-4px 0 0 rgba(255, 255, 255, 0.12));
}

.cookie-consent-cookies {
    position: absolute;
    top: -18px;
    right: 10px;
    width: 82px;
    height: 54px;
    pointer-events: none;
}

.cookie-consent-cookie {
    position: absolute;
    object-fit: contain;
    image-rendering: pixelated;
    filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.35));
}

.cookie-consent-cookie-main {
    top: 2px;
    right: 12px;
    width: 38px;
    height: 38px;
    transform: rotate(8deg);
}

.cookie-consent-cookie-small {
    top: 14px;
    right: 44px;
    width: 24px;
    height: 24px;
    transform: rotate(-12deg);
}

.cookie-consent-cookie-tiny {
    top: 0;
    right: 0;
    width: 17px;
    height: 17px;
    transform: rotate(18deg);
}

.cookie-consent-bubble-header {
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 0.18rem 0.46rem;
    background: rgba(46, 204, 113, 0.14);
    border: 2px solid rgba(46, 204, 113, 0.35);
    color: var(--primary-color);
    font-size: 0.68rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cookie-consent-bubble p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.42;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.52rem;
    margin-top: 0.75rem;
}

.cookie-consent-actions .btn {
    padding: 0.68rem 0.96rem;
    font-size: 0.79rem;
}

.cookie-consent-meta {
    margin-top: 0.58rem !important;
    font-size: 0.69rem !important;
    color: var(--text-muted) !important;
}

.cookie-consent-meta a {
    color: var(--primary-color);
}

.cookie-consent.is-entering .cookie-consent-figure {
    animation: cookieConsentFigureIn 0.92s cubic-bezier(0.18, 0.88, 0.24, 1) forwards;
}

.cookie-consent.is-entering .cookie-consent-bubble {
    animation: cookieConsentBubbleIn 0.92s cubic-bezier(0.18, 0.88, 0.24, 1) forwards;
}

.cookie-consent.is-visible .cookie-consent-figure {
    opacity: 1;
    transform: translate3d(-7%, 5%, 0) rotate(0deg) scale(1);
}

.cookie-consent.is-visible .cookie-consent-bubble {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.cookie-consent.is-leaving .cookie-consent-figure {
    opacity: 1;
    animation: cookieConsentFigureOut 0.92s cubic-bezier(0.3, 0.02, 0.62, 0.22) forwards;
}

.cookie-consent.is-leaving .cookie-consent-bubble {
    opacity: 1;
    animation: cookieConsentBubbleOut 0.92s cubic-bezier(0.3, 0.02, 0.62, 0.22) forwards;
}

@keyframes cookieConsentFigureIn {
    0% {
        transform: translate3d(-32%, 36%, 0) rotate(-14deg) scale(0.9);
        opacity: 0;
    }
    62% {
        transform: translate3d(-4%, 1%, 0) rotate(2deg) scale(1.02);
        opacity: 1;
    }
    100% {
        transform: translate3d(-7%, 5%, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
}

@keyframes cookieConsentBubbleIn {
    0% {
        transform: translate3d(-1.15rem, 4rem, 0) scale(0.92);
        opacity: 0;
    }
    58% {
        transform: translate3d(0.04rem, -0.14rem, 0) scale(1.01);
        opacity: 1;
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 1;
    }
}

@keyframes cookieConsentFigureOut {
    0% {
        transform: translate3d(-7%, 5%, 0) rotate(0deg) scale(1);
        opacity: 1;
    }
    20% {
        transform: translate3d(-6%, -4%, 0) rotate(-3deg) scale(1.02);
        opacity: 1;
    }
    42% {
        transform: translate3d(-8%, 2%, 0) rotate(1deg) scale(0.99);
        opacity: 1;
    }
    100% {
        transform: translate3d(-18%, 74%, 0) rotate(18deg) scale(0.84);
        opacity: 0;
    }
}

@keyframes cookieConsentBubbleOut {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 1;
    }
    16% {
        transform: translate3d(0, -0.22rem, 0) scale(1.01);
        opacity: 1;
    }
    100% {
        transform: translate3d(-0.14rem, 3.7rem, 0) scale(0.9);
        opacity: 0;
    }
}

@media (max-width: 720px) {
    .cookie-consent {
        left: 0.55rem;
        right: 0.55rem;
        bottom: 0.55rem;
        max-width: none;
        gap: 0.25rem;
    }

    .cookie-consent-figure {
        width: 86px;
        margin-right: -0.45rem;
        margin-left: -0.2rem;
        margin-bottom: -0.25rem;
    }

    .cookie-consent-bubble {
        flex-basis: 0;
        margin-bottom: 0;
    }

    .cookie-consent-cookies {
        width: 72px;
        height: 48px;
        right: 8px;
    }

    .cookie-consent-bubble::before {
        left: 10px;
        bottom: -18px;
        border-right: 12px solid transparent;
        border-left: 12px solid transparent;
        border-top: 18px solid rgba(20, 26, 34, 0.98);
        border-bottom: 0;
        filter: drop-shadow(0 4px 0 rgba(255, 255, 255, 0.12));
    }
}

@media (max-width: 560px) {
    .cookie-consent {
        align-items: flex-end;
        right: 0.55rem;
    }

    .cookie-consent-figure {
        display: none;
    }

    .cookie-consent-bubble {
        flex-basis: auto;
        width: 100%;
        margin-bottom: 0;
    }

    .cookie-consent-cookies {
        top: -12px;
        right: 8px;
        width: 62px;
        height: 42px;
    }
}

/* Header and Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: bold;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8) 0%, rgba(28, 35, 48, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--font-size-6xl);
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(46, 204, 113, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: brightness(1);
    }
    to {
        filter: brightness(1.2);
    }
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn .server-ip {
    display: block;
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-badge {
    padding: 0.5rem 1rem;
    background: var(--bg-glass-light);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: var(--border-radius-lg);
    font-size: var(--font-size-sm);
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

/* Server Info Section */
.server-info {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(46, 204, 113, 0.2);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: var(--transition);
    /* Remove aggressive filters and use subtle tinting */
    opacity: 0.8;
}

.info-card:hover .icon-img {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(46, 204, 113, 0.5));
}

.info-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Values Section */
.values {
    padding: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.value-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(46, 204, 113, 0.2);
}

.value-image {
    flex-shrink: 0;
}

.value-img {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    object-fit: cover;
}

.value-content h3 {
    font-size: var(--font-size-lg);
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.value-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* Discord Section */
.discord {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.discord-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.discord-info {
    text-align: left;
}

.discord-info .section-title {
    text-align: left;
}

.discord-features {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.discord-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--font-size-base);
    color: var(--text-secondary);
}

.feature-icon {
    font-size: var(--font-size-lg);
}

.discord-widget {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.discord-widget-frame {
    display: block;
    width: 100%;
    min-height: 350px;
    border: 0;
    border-radius: calc(var(--border-radius) - 6px);
    background: rgba(88, 101, 242, 0.14);
}

.discord-widget-consent {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    padding: 1rem 0.5rem;
    text-align: center;
}

.discord-widget-consent-image {
    width: min(180px, 72%);
    height: auto;
    image-rendering: pixelated;
    filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.28));
}

.discord-widget-consent-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.32rem 0.62rem;
    border: 2px solid rgba(46, 204, 113, 0.28);
    background: rgba(46, 204, 113, 0.12);
    color: var(--primary-color);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.discord-widget-consent-badge::before {
    content: '';
    width: 15px;
    height: 15px;
    background: url('../images/Cookie.png') center / contain no-repeat;
    image-rendering: pixelated;
    flex: 0 0 15px;
}

.discord-widget-consent h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.discord-widget-consent p {
    max-width: 24rem;
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.55;
}

.discord-widget-consent-button {
    margin-top: 0.25rem;
}

/* Team Section */
.team {
    padding: 6rem 0;
}

.team-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.category-title {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(46, 204, 113, 0.2);
}

.team-avatar {
    margin-bottom: 1rem;
}

.avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.team-name {
    font-size: var(--font-size-lg);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-role {
    font-size: var(--font-size-sm);
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-description {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Creators Section */
.creators {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.creator-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
}

.creator-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(46, 204, 113, 0.2);
}

.creator-image {
    margin-bottom: 1.5rem;
    text-align: center;
}

.creator-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.creator-name {
    font-size: var(--font-size-lg);
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-align: center;
}

.creator-description {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.creator-promo {
    background: var(--bg-glass-light);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: var(--border-radius-sm);
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.promo-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.25rem;
}

.promo-code {
    font-size: var(--font-size-lg);
    font-weight: bold;
    color: var(--primary-color);
    font-family: monospace;
}

.creator-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--bg-tertiary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: var(--font-size-lg);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius-sm);
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: var(--font-size-lg);
    font-weight: bold;
    color: var(--text-primary);
}

.footer-description {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.server-connect {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.connect-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.connect-ip {
    font-family: monospace;
    font-size: var(--font-size-base);
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    background: var(--bg-glass);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.connect-ip:hover {
    background: var(--bg-glass-light);
    border-color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin-bottom: 0.5rem;
}

.footer-note {
    font-size: var(--font-size-xs);
    opacity: 0.7;
}

.footer-cookie-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: var(--transition-fast);
}

.footer-cookie-link:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-glass);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .discord-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .discord-info .section-title {
        text-align: center;
    }

    .value-card {
        flex-direction: column;
        text-align: center;
    }

    .creators-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .section-title {
        font-size: var(--font-size-3xl);
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: var(--font-size-sm);
    }
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .info-card,
    .value-card,
    .team-card,
    .creator-card {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .info-card:nth-child(1) { animation-delay: 0.1s; }
    .info-card:nth-child(2) { animation-delay: 0.2s; }
    .info-card:nth-child(3) { animation-delay: 0.3s; }
    .info-card:nth-child(4) { animation-delay: 0.4s; }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.footer-cookie-link::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url('../images/Cookie.png') center / contain no-repeat;
    image-rendering: pixelated;
    flex: 0 0 16px;
}

/* Homepage relaunch */
.hamburger {
    background: transparent;
    border: 0;
}

.section-kicker,
.hero-kicker,
.creator-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 0.85rem;
    padding: 0.38rem 0.62rem;
    border: 1px solid rgba(46, 204, 113, 0.38);
    border-radius: 6px;
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-color);
    font-size: var(--font-size-xs);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-header .section-kicker {
    margin-left: auto;
    margin-right: auto;
}

.home-hero {
    height: auto;
    min-height: 92vh;
    isolation: isolate;
}

.home-hero .hero-background {
    z-index: 0;
}

.home-hero .hero-overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(8, 12, 15, 0.96) 0%, rgba(8, 12, 15, 0.82) 48%, rgba(8, 12, 15, 0.58) 100%),
        linear-gradient(0deg, var(--bg-primary) 0%, rgba(15, 20, 25, 0.15) 35%, rgba(15, 20, 25, 0.06) 100%);
}

.home-hero .hero-content {
    z-index: 2;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.72fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    min-height: 78vh;
    padding-top: 4rem;
}

.hero-copy {
    max-width: min(760px, 100%);
    min-width: 0;
    text-align: left;
}

.hero-copy .hero-title,
.hero-copy .hero-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.hero-copy .hero-title {
    max-width: 100%;
    line-height: 0.95;
    overflow-wrap: break-word;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.hero-copy .hero-subtitle {
    max-width: 680px;
    color: #d8e4ea;
}

.hero-actions {
    justify-content: flex-start;
}

.btn-copy-ip {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.18rem;
    min-width: min(100%, 280px);
}

.btn-copy-ip .server-ip {
    font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', monospace;
    font-size: var(--font-size-sm);
    opacity: 0.92;
}

.hero-features {
    justify-content: flex-start;
}

.feature-badge {
    border-radius: 6px;
}

.hero-status-panel {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(12, 17, 22, 0.78);
    box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(46, 204, 113, 0.1);
    backdrop-filter: blur(18px);
}

.status-card-live {
    position: relative;
    display: grid;
    gap: 0.3rem;
    min-height: 150px;
    padding: 1.25rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.18), rgba(52, 152, 219, 0.12));
    border: 1px solid rgba(46, 204, 113, 0.24);
}

.status-label,
.server-quickfacts dt {
    color: var(--text-muted);
    font-size: var(--font-size-xs);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.status-number {
    color: var(--primary-color);
    font-size: clamp(3.2rem, 9vw, 6.2rem);
    line-height: 1;
}

.server-status-indicator {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 999px;
    background: var(--text-muted);
    box-shadow: 0 0 0 5px rgba(120, 144, 156, 0.14);
}

.server-status-indicator.online {
    background: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(46, 204, 113, 0.16), 0 0 18px rgba(46, 204, 113, 0.7);
}

.server-status-indicator.offline {
    background: #e74c3c;
    box-shadow: 0 0 0 5px rgba(231, 76, 60, 0.14);
}

.server-quickfacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.server-quickfacts div {
    min-width: 0;
    padding: 0.9rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.server-quickfacts dd {
    margin-top: 0.24rem;
    color: var(--text-primary);
    font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', monospace;
    font-size: var(--font-size-sm);
    overflow-wrap: anywhere;
}

.join-guide,
.home-faq,
.trust-team {
    padding: 6rem 0;
    scroll-margin-top: 5rem;
}

.join-grid,
.faq-grid,
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.join-step,
.faq-item {
    border-radius: 8px;
}

.join-step {
    position: relative;
    text-align: left;
}

.step-index {
    display: inline-flex;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', monospace;
    font-size: var(--font-size-sm);
}

.join-cta,
.creator-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.value-card,
.team-card,
.creator-card,
.discord-widget,
.faq-item,
.info-card {
    border-radius: 8px;
}

.value-card-featured {
    border-color: rgba(243, 156, 18, 0.38);
    box-shadow: var(--shadow-md), 0 0 20px rgba(243, 156, 18, 0.14);
}

.community-hub .discord-feature {
    align-items: center;
}

.community-hub .discord-feature i {
    width: 1.25rem;
    color: var(--primary-color);
}

.creator-program {
    background:
        linear-gradient(180deg, rgba(15, 20, 25, 0.96), rgba(28, 35, 48, 0.86)),
        linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.streamer-carousel {
    --streamer-gap: 1.25rem;
    --streamer-transition-ms: 300ms;
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
    padding: 0.25rem 0 0.5rem;
}

.streamer-carousel::before,
.streamer-carousel::after {
    display: none;
}

.streamer-carousel::before {
    left: 0;
    background: linear-gradient(90deg, rgba(15, 20, 25, 0.98), rgba(15, 20, 25, 0));
}

.streamer-carousel::after {
    right: 0;
    background: linear-gradient(270deg, rgba(15, 20, 25, 0.98), rgba(15, 20, 25, 0));
}

.streamer-carousel-track {
    display: flex;
    gap: var(--streamer-gap);
    width: 100%;
    transform: translateX(0);
    will-change: transform;
}

.streamer-carousel-track.is-sliding {
    transform: translateX(calc(-1 * ((100% + var(--streamer-gap)) / 3)));
    transition: transform var(--streamer-transition-ms) ease;
}

.streamer-card {
    flex: 0 0 calc((100% - (2 * var(--streamer-gap))) / 3);
    min-width: 0;
    min-height: 390px;
    padding: 1.35rem;
    opacity: 1;
    transform: none;
    animation: none;
    justify-content: flex-start;
}

.streamer-card .creator-spotlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 0.35rem 0 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.streamer-card .creator-img {
    width: 108px;
    height: 108px;
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.08), 0 12px 30px rgba(0, 0, 0, 0.32);
}

.streamer-card .creator-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
}

.streamer-card .creator-label {
    margin: 0;
    padding: 0.22rem 0.5rem;
    border: 1px solid rgba(46, 204, 113, 0.45);
    border-radius: 4px;
    color: var(--primary-color);
    font-family: var(--font-minecraft);
    font-size: var(--font-size-xs);
    line-height: 1;
    text-transform: uppercase;
}

.streamer-card .creator-name {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(0.92rem, 1.2vw, 1.2rem);
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.streamer-card .creator-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    padding-top: 1.1rem;
}

.streamer-card .creator-quote {
    position: relative;
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.62;
    text-align: center;
}

.streamer-card .creator-quote::before,
.streamer-card .creator-quote::after {
    color: rgba(46, 204, 113, 0.7);
    font-size: 1.05rem;
}

.streamer-card .creator-socials {
    margin-top: 1.15rem;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.streamer-card .social-link {
    width: 34px;
    height: 34px;
}

.streamer-card .creator-socials-empty {
    min-height: 34px;
    color: var(--text-muted);
    font-size: var(--font-size-xs);
}

.streamer-card .creator-promo {
    margin: auto 0 0;
    padding: 0.82rem;
}

.streamer-card .promo-label {
    font-size: var(--font-size-xs);
}

.streamer-card .promo-code {
    display: block;
    font-size: clamp(0.72rem, 0.95vw, 0.95rem);
    overflow-wrap: anywhere;
}

@media (prefers-reduced-motion: reduce) {
    .streamer-carousel {
        overflow: hidden;
    }

    .streamer-carousel-track {
        transition: none;
    }
}

.creator-grid-featured {
    display: grid;
    grid-template-columns: 1.25fr repeat(2, minmax(0, 0.86fr));
    gap: 1.25rem;
    align-items: stretch;
}

.creator-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.creator-card-large {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    align-items: center;
    gap: 1.35rem;
}

.creator-card .creator-img {
    margin-left: auto;
    margin-right: auto;
}

.creator-card-large .creator-img {
    width: 150px;
    height: 150px;
}

.creator-card-large .creator-name,
.creator-card-large .creator-description {
    text-align: left;
}

.creator-card-large .creator-socials {
    justify-content: flex-start;
}

.creator-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.creator-strip span {
    padding: 0.55rem 0.75rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.045);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.creator-cta {
    justify-content: space-between;
    margin-top: 2rem;
    padding: 1.25rem;
    border: 1px solid rgba(46, 204, 113, 0.22);
    border-radius: 8px;
    background: rgba(46, 204, 113, 0.08);
}

.creator-cta div {
    max-width: 720px;
}

.creator-cta h3,
.creator-cta p {
    margin: 0;
}

.creator-cta p {
    margin-top: 0.35rem;
    color: var(--text-secondary);
}

.team-card-open {
    border-style: dashed;
}

.team-category-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-category-row {
    display: grid;
    grid-template-columns: minmax(230px, 0.85fr) minmax(0, 2.15fr);
    gap: 1.25rem;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(28, 35, 48, 0.54);
}

.team-category-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 0.35rem 0.45rem;
}

.team-category-label {
    margin: 0 0 0.55rem;
    color: var(--primary-color);
    font-family: var(--font-minecraft);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
}

.team-category-copy h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: clamp(1.08rem, 1.8vw, 1.45rem);
    line-height: 1.25;
}

.team-category-copy p:not(.team-category-label) {
    margin: 0.7rem 0 0;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.55;
}

.team-category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    gap: 0.85rem;
    min-width: 0;
}

.team-category-cards-small {
    grid-template-columns: minmax(185px, 360px);
    align-content: center;
}

.team-category-cards-small .team-card-compact {
    min-height: 100%;
}

.team-card-compact {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    min-width: 0;
    padding: 1rem;
    text-align: left;
}

.team-card-compact .team-avatar {
    margin: 0;
}

.team-card-compact .avatar-img {
    width: 64px;
    height: 64px;
}

.team-card-compact .team-name {
    margin: 0 0 0.3rem;
    font-size: var(--font-size-base);
    overflow-wrap: anywhere;
}

.team-card-compact .team-role {
    margin: 0 0 0.45rem;
    font-size: var(--font-size-xs);
}

.team-card-compact .team-description {
    font-size: var(--font-size-xs);
    line-height: 1.45;
}

.faq-item {
    padding: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(28, 35, 48, 0.72);
}

.faq-item h3 {
    margin-bottom: 0.65rem;
    color: var(--text-primary);
    font-size: var(--font-size-lg);
}

.faq-item p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-item a:hover {
    text-decoration: underline;
}

.connect-ip {
    text-align: left;
}

@media (max-width: 980px) {
    .hero-layout,
    .creator-grid-featured {
        grid-template-columns: 1fr;
    }

    .team-category-row {
        grid-template-columns: 1fr;
    }

    .team-category-copy {
        text-align: center;
    }

    .team-category-cards-small {
        grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
    }

    .hero-copy,
    .hero-copy .hero-title,
    .hero-copy .hero-subtitle {
        text-align: center;
    }

    .hero-kicker,
    .hero-actions,
    .hero-features {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-status-panel {
        max-width: 620px;
        margin: 0 auto;
    }
}

@media (max-width: 680px) {
    .home-hero {
        min-height: auto;
    }

    .hero-copy .hero-title {
        font-size: var(--font-size-3xl);
    }

    .hero-layout {
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .server-quickfacts {
        grid-template-columns: 1fr;
    }

    .streamer-carousel {
        --streamer-gap: 0.75rem;
    }

    .streamer-card {
        min-height: 300px;
        padding: 0.85rem;
    }

    .streamer-card .creator-img {
        width: 66px;
        height: 66px;
    }

    .streamer-card .creator-spotlight {
        gap: 0.55rem;
        padding-bottom: 0.75rem;
    }

    .streamer-card .creator-name {
        font-size: var(--font-size-sm);
    }

    .streamer-card .creator-quote {
        font-size: 0.72rem;
        line-height: 1.45;
    }

    .streamer-card .creator-socials {
        gap: 0.45rem;
        margin-top: 0.75rem;
    }

    .streamer-card .social-link {
        width: 28px;
        height: 28px;
    }

    .streamer-card .creator-promo {
        padding: 0.55rem;
    }

    .streamer-card .promo-label {
        display: none;
    }

    .streamer-card .promo-code {
        font-size: 0.62rem;
    }

    .team-category-row {
        padding: 0.8rem;
    }

    .team-category-cards {
        grid-template-columns: 1fr;
    }

    .team-card-compact {
        grid-template-columns: 58px minmax(0, 1fr);
        padding: 0.85rem;
    }

    .team-card-compact .avatar-img {
        width: 58px;
        height: 58px;
    }

    .creator-card-large {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .creator-card-large .creator-name,
    .creator-card-large .creator-description {
        text-align: center;
    }

    .creator-card-large .creator-socials {
        justify-content: center;
    }

    .creator-cta {
        justify-content: center;
        text-align: center;
    }
}