@font-face {
    font-family: 'MinecraftTen';
    src: url('assets/fonts/Cubic_11.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Minecraft';
    src: url('assets/fonts/Minecraft.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --ct: #65499B;
    --mcg: #333333;
    --mcg-light: #5e5e5e;

    --primary: #2c4a8b;
    --primary-light: #6083cf;
    --primary-dark: #13264e;
    --secondary: #1D273C;
    --accent: #b983ff;
    --accent-dark: rgb(72, 46, 99);
    --dark: #1D273C;
    --darker: #161d2d;
    --darkest: #091224;
    --light: #f8f9fa;
    --light-green: #E8F5E4;
    --brown: #8B5F3D;
    --dirt: #866043;
    --stone: #7A7A7A;
    --obsidian: #2D0C3A;
    
    --success: #63AF5E;
    --info: #3896D3;
    --warning: #FFB626;
    --danger: #ED4A4C;
    --diamond: #4AEAFF;
    --emerald: #00E676;
    --gold: #FFCC00;
    --coal: #333333;
    --redstone: #FF3030;
    
    --gradient-1: linear-gradient(135deg, #2c4a8b 0%, #1c3260 100%);
    --gradient-2: linear-gradient(135deg, #2c4a8b 0%, #1c3260 100%);
    --gradient-3: linear-gradient(90deg, rgba(139, 95, 61, 0.8) 0%, rgba(64, 102, 199, 0.8) 100%);
    --gradient-diamond: linear-gradient(135deg, #26C6DA 0%, #4AEAFF 100%);
    --gradient-gold: linear-gradient(135deg, #FFC107 0%, #FFEB3B 100%);
    --gradient-redstone: linear-gradient(135deg, #F44336 0%, #FF5252 100%);
    --gradient-obsidian: linear-gradient(135deg, #2D0C3A 0%, #4A148C 100%);
    --gradient-night: linear-gradient(135deg, #13264e 0%, #0F2027 50%, #203A43 100%);
    
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 15px 60px rgba(0, 0, 0, 0.3);
    --shadow-glass: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-inset: inset 0 2px 10px rgba(0, 0, 0, 0.2);
    --shadow-green: 0 5px 20px rgba(90, 189, 60, 0.3);
    --shadow-gold: 0 5px 20px rgba(255, 193, 7, 0.3);
    --shadow-blue: 0 5px 20px rgba(38, 198, 218, 0.3);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --radius-minecraft: 0px;
    
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
    
    --block-border: 3px solid #111;
    --block-border-light: 2px solid rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'MinecraftTen', sans-serif;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--darker);
    overflow-x: hidden;
    width: 100%;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: var(--radius-full);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-light);
}

body {
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: url('https://cdnjs.cloudflare.com/ajax/libs/16bpp-noise/1.0.0/noise.min.svg');
    background-attachment: fixed;
    background-size: 200px;
    background-position: center;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: -1;
    pointer-events: none;
}

.glass {
    background: rgba(3, 150, 235, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glass);
}

.glass-dark {
    background: rgba(6, 0, 119, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: rgba(82, 39, 238, 0.);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-glass);
    padding: 30px;
    transition: transform var(--transition-normal) ease, 
                box-shadow var(--transition-normal) ease,
                background-color var(--transition-normal) ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(21, 42, 94, 0.6);
}

.card-dark{
    background-color: rgba(0, 0, 0, 0.2);
}

.block-card {
    background-color: var(--darker);
    border: var(--block-border);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    transform-style: preserve-3d;
    padding: 20px;
    transition: all var(--transition-normal) ease;
}

.block-card::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
    transform: translateZ(-1px);
}

.block-card:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--light);
    position: relative;
    z-index: 1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    font-family: 'Minecraft', sans-serif;
    letter-spacing: 1px;
}

.section-title span {
    color: var(--accent);
    position: relative;
    display: inline-block;
    bottom: 2px;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    opacity: 0.5;
    border-radius: var(--radius-full);
}

.section-title-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: 900;
    opacity: 0.03;
    white-space: nowrap;
    text-transform: uppercase;
    z-index: -1;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.intro {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    text-align: center;
}
.intro h3{
    font-size: 1.5rem;
    margin: 0px 0 7px;
}
.intro-card {
    text-align: center;
    padding: 40px 33px;
    margin: 0 2em 0;
    max-width: 810px;
}
.intro-icon-container {
    width: 80px;
    height: 80px;
    margin: -5px auto 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.05);
    font-size: 1.7rem;
    color: var(--primary-light)
}
.intro-text-container {
    display: flex; 
    min-width: 600px; 
    justify-content: center;
}
.intro-tips {
    margin: 5px 5px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.intro-tips-text {
    margin: 0 8px 0;
    font-size: 0.85rem;
}
.intro-tips-text i {
    position: relative;
    color: #5ABD3C;
    bottom: -0.09rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.col {
    padding: 15px;
    flex: 1 0 100%;
}

.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.bg-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.deco-1 {
    top: 10%;
    left: -150px;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.deco-2 {
    bottom: 10%;
    right: -150px;
    background: radial-gradient(circle, var(--secondary), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.deco-3 {
    top: 40%;
    right: -100px;
    background: radial-gradient(circle, var(--accent), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.deco-4 {
    bottom: 30%;
    left: -100px;
    background: radial-gradient(circle, var(--brown), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.deco-diamond {
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--diamond), transparent 70%);
    filter: blur(40px);
    animation: pulse 8s ease-in-out infinite alternate;
}

.deco-gold {
    bottom: 20%;
    left: 10%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--gold), transparent 70%);
    filter: blur(40px);
    animation: pulse 10s ease-in-out infinite alternate-reverse;
}

.deco-redstone {
    top: 60%;
    left: 20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--redstone), transparent 70%);
    filter: blur(30px);
    animation: pulse 7s ease-in-out infinite alternate;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-slow {
    animation: float 10s ease-in-out infinite;
}

.floating-fast {
    animation: float 4s ease-in-out infinite;
}

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

@keyframes pulse {
    0% {
        opacity: 0.1;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.15;
        transform: scale(1);
    }
    100% {
        opacity: 0.1;
        transform: scale(0.95);
    }
}

.minecraft-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.04;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
}

.falling-blocks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.falling-block {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0.1;
    background-color: var(--primary);
    top: -30px;
    transform: rotate(0deg);
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(calc(100vh + 30px)) rotate(360deg);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal) ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    z-index: 1;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: transform var(--transition-normal) ease;
    z-index: -1;
    transform: skewX(-15deg);
}

.btn:hover::before {
    transform: skewX(-15deg) translateX(100%);
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--light);
    box-shadow: 0 4px 15px rgba(57, 60, 228, 0.4);
    border-bottom: 3px solid var(--primary-dark);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(57, 123, 230, 0.6);
    transform: translateY(-3px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(55, 20, 233, 0.4);
    border-bottom-width: 1px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid rgba(255, 255, 255, 0.05);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-bottom-width: 1px;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    color: #333;
    box-shadow: 0 4px 15px rgba(219, 192, 116, 0.4);
    border-bottom: 3px solid rgba(219, 192, 116, 0.6);
    font-weight: 700;
}

.btn-accent:hover {
    box-shadow: 0 8px 25px rgba(219, 192, 116, 0.6);
    transform: translateY(-3px);
}

.btn i {
    margin-right: 8px;
    font-size: 1.1em;
}

.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.pixel-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary);
    color: var(--light);
    text-decoration: none;
    font-family: 'Minecraft', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #000;
    box-shadow: 4px 4px 0px #000;
    position: relative;
    transition: all 0.2s;
    text-align: center;
}

.pixel-btn:hover {
    background-color: var(--secondary);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000;
}

.pixel-btn-gold {
    background-color: var(--accent);
    color: #333;
}

.pixel-btn-gold:hover {
    background-color: #ba8cff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal) ease;
    padding: 20px 0;
}

header.scrolled {
    background: rgba(29, 39, 60, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform var(--transition-normal) ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 48px;
    margin-right: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    margin-top: -5px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light);
    transition: all var(--transition-normal) ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Minecraft', sans-serif;
    letter-spacing: 1px;
    margin-top: 1px;
}

.logo-text span {
    color: var(--accent);
    position: relative;
    bottom: 2px;
}

.logo-text span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    opacity: 0.5;
    border-radius: var(--radius-full);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 5px;
    position: relative;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all var(--transition-normal) ease;
    padding: 10px 15px;
    position: relative;
    display: inline-block;
    border-radius: var(--radius-md);
    z-index: 1;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    opacity: 0;
    z-index: -1;
    transform: scale(0.8);
    transition: all var(--transition-normal) ease;
}

.nav-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-links a.active {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal) ease;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.bar {
    width: 24px;
    height: 3px;
    background-color: var(--light);
    border-radius: 3px;
    transition: all var(--transition-normal) ease;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background-image: url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, var(--dark) 0%, rgba(28, 21, 81, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: rgba(119, 63, 216, 0.6);
    border-radius: var(--radius-full);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal) ease;
}

.hero-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-badge.online {
    border-color: rgba(0, 255, 0, 0.3);
}

.hero-badge.online .status-dot {
    background-color: var(--success);
    box-shadow: 0 0 0 3px rgba(0, 255, 0, 0.3);
}

.hero-badge.offline {
    border-color: rgba(237, 74, 76, 0.3);
}

.hero-badge.offline .status-dot {
    background-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(237, 74, 76, 0.3);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--info);
    margin-right: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(90, 189, 60, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(90, 189, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(90, 189, 60, 0);
    }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
    animation: fadeInDown 1s ease;
    font-family: 'Minecraft', sans-serif;
    letter-spacing: 2px;
}

.hero-title span {
    color: var(--accent);
    position: relative;
    display: inline-block;
    bottom: 7px;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
    opacity: 0.5;
    border-radius: var(--radius-full);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    animation: fadeIn 1.5s ease;
}

@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;
    }
}

.pixel-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
}

.announcement {
    background: linear-gradient(135deg, rgba(16, 32, 24, 0.9) 0%, rgba(24, 60, 40, 0.9) 100%);
    padding: 40px 0;
    position: relative;
    border-top: 4px solid var(--primary);
    border-bottom: 4px solid var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.announcement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdnjs.cloudflare.com/ajax/libs/16bpp-noise/1.0.0/noise.min.svg');
    background-size: 100px;
    opacity: 0.05;
    z-index: 0;
    pointer-events: none;
}

.announcement-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.announcement-title {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--accent);
    text-align: center;
    display: flex;
    align-items: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Minecraft', sans-serif;
}

.announcement-title i {
    margin-right: 15px;
    color: var(--accent);
    font-size: 1.8rem;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.announcement-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal) ease;
    position: relative;
}

.announcement-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(255, 255, 255, 0.05);
}

.announcement-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.announcement-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--light);
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.announcement-date {
    text-align: right;
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.server-status {
    background-image: url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.server-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12, 10, 59, 0.9) 0%, rgba(31, 15, 73, 0.95) 100%);
    z-index: 1;
}

.server-status::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.2) 10px,
        rgba(0, 0, 0, 0.3) 10px,
        rgba(0, 0, 0, 0.3) 20px
    );
    z-index: 2;
}

.status-card {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    padding: 40px 20px;
}

.status-header {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    width: 100%;
    position: relative;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
}

.status-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--accent), transparent);
}

.status-icon {
    font-size: 2.2rem;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.3);
    margin-right: 25px;
    color: var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), inset 0 0 15px rgba(219, 192, 116, 0.2);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(219, 192, 116, 0.3);
}

.status-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(219, 192, 116, 0.1);
    transform: rotate(45deg);
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.status-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(219, 192, 116, 0.3);
    font-family: 'Minecraft', sans-serif;
}

.status-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
    margin-bottom: 35px;
}

.status-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal) ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-item:hover {
    transform: translateY(-7px);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(219, 192, 116, 0.3);
}

.status-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, transparent 100%);
    pointer-events: none;
}

.status-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
}

.status-item:nth-child(1)::after {
    background: linear-gradient(to right, #5c913b, #7bc450);
}

.status-item:nth-child(2)::after {
    background: linear-gradient(to right, var(--accent-dark), var(--accent));
}

.status-item:nth-child(3)::after {
    background: linear-gradient(to right, #3b6e9e, #5cabff);
}

.status-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Minecraft', sans-serif;
    position: relative;
    display: inline-block;
}

.status-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.status-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.status-motd {
    width: 100%;
    padding: 30px 25px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-lg);
    word-break: break-word;
    font-family: 'Minecraft', sans-serif;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    color: #a8e890;
    transition: all var(--transition-normal) ease;
    line-height: 1.7;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

.status-motd:hover {
    transform: translateY(-7px);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(219, 192, 116, 0.3);
}

.status-motd::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--accent), var(--diamond), var(--primary));
    background-size: 200% 100%;
    animation: gradientAnimation 8s linear infinite;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

.server-indicator {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 15px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #5c913b;
    margin-right: 10px;
    position: relative;
}

.indicator-dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(92, 145, 59, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.indicator-text {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.offline .indicator-dot {
    background: #e74c3c;
}

.offline .indicator-dot::after {
    background: rgba(231, 76, 60, 0.3);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.features {
    background: var(--darker);
    position: relative;
    background-image: url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(6, 0, 41, 0.9) 50%, var(--dark) 100%);
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.feature-card {
    padding: 35px 25px;
    position: relative;
    text-align: center;
    background: rgba(3, 0, 46, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: visible;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.feature-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    background: var(--gradient-1);
    border-radius: 20px;
    margin: -70px auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(15, 7, 101, 0.3);
    z-index: 2;
    transform: rotate(45deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotate(0deg);
    box-shadow: 0 12px 30px rgba(11, 121, 211, 0.5);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--light);
    transform: rotate(-45deg);
    transition: transform 0.4s ease;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

.feature-card:hover .feature-icon {
    transform: rotate(0deg) scale(1.1);
}

.feature-title {
    font-size: 1.6rem;
    margin: 15px 0;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-family: 'Minecraft', sans-serif;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background: var(--accent);
    opacity: 0.5;
    border-radius: var(--radius-full);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.block-border-1 {
    --block-color: var(--primary);
    --block-size: 16px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.block-border-1::before,
.block-border-1::after {
    content: '';
    position: absolute;
    width: 100%;
    height: var(--block-size);
    background-image: 
        repeating-linear-gradient(
            to right,
            var(--block-color) 0,
            var(--block-color) var(--block-size),
            transparent var(--block-size),
            transparent calc(var(--block-size) * 2)
        );
    opacity: 0.1;
}

.block-border-1::before {
    top: 0;
}

.block-border-1::after {
    bottom: 0;
}

.videos {
    background-image: url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    position: relative;
}

.videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(53, 0, 73, 0.5) 50%, var(--dark) 100%);
    z-index: 1;
}

.video-container {
    margin-top: 60px;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    z-index: 2;
}

.video-player {
    position: relative;
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.3);
    padding: 0;
    border: 3px solid rgba(0, 151, 245, 0.3);
    transition: all var(--transition-normal) ease;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0deg);
}

.video-player:hover {
    transform: perspective(1000px) rotateX(2deg) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 0, 187, 0.5);
}

.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%;
    border: none;
    background-color: #000;
}

.video-info {
    text-align: center;
    margin-top: 20px;
}

.video-title {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Minecraft', sans-serif;
}

.video-desc {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.video-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.video-control {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-normal) ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.video-control:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.video-thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.video-thumbnail {
    width: 80px;
    height: 45px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-normal) ease;
    opacity: 0.6;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.video-thumbnail.active {
    border-color: var(--accent);
    opacity: 1;
    transform: scale(1.1);
}

.video-thumbnail:hover {
    opacity: 1;
    transform: scale(1.1);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specifications {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    background-image: url('https://cdnjs.cloudflare.com/ajax/libs/16bpp-noise/1.0.0/noise.min.svg');
    background-size: 200px;
    background-attachment: fixed;
}

.specifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 32, 24, 0.92) 0%, rgba(10, 21, 16, 0.95) 100%);
    z-index: 0;
}

.specifications .container {
    position: relative;
    z-index: 1;
}

.admins-header {
    text-align: center;
    margin: 60px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.minecraft-item {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border: 4px solid #222;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2), 0 10px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transform: rotate(45deg);
}

.minecraft-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
    background-size: 250% 250%;
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 200%;
    }
}

.minecraft-item i {
    font-size: 32px;
    color: #111;
    transform: rotate(-45deg);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}

.admins-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 20px 0 20px;
    font-family: 'Minecraft', sans-serif;
    letter-spacing: 1px;
    color: var(--light);
    text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.admins-title span {
    background: linear-gradient(135deg, var(--diamond) 0%, var(--info) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    bottom: 2px;
}

.admins-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.admins-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.admin-block {
    display: flex;
    background: rgba(24, 60, 40, 0.3);
    border: 2px solid #222;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.admin-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.cpu-block::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.ram-block::before {
    background: linear-gradient(90deg, var(--info), #70DFFF);
}

.storage-block::before {
    background: linear-gradient(90deg, var(--accent), #FFEC99);
}

.network-block::before {
    background: linear-gradient(90deg, var(--warning), #FFD166);
}

.admin-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(30, 73, 49, 0.7);
}

.adm1::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.adm2::before {
    background: linear-gradient(90deg, var(--info), #70DFFF);
}

.adm3::before {
    background: linear-gradient(90deg, var(--accent), #FFEC99);
}

.adm4::before {
    background: linear-gradient(90deg, var(--warning), #FFD166);
}

.adm5::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.adm6::before {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.admin-icon-container {
    width: 120px;
    height: 120px;
    margin-right: 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.admin-icon-container i {
    font-size: 35px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.admin-content {
    flex: 1;
}

.admin-block .admin-id {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--light);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
    font-family: 'Minecraft', sans-serif;
}

.admin-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--light);
    margin: 0 0 5px;
}

.admin-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.admin-content .member-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 15px;
    justify-content: left;
}

.feature-tag {
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    color: var(--light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cpu-block .feature-tag {
    background: rgba(90, 189, 60, 0.2);
    border-color: rgba(90, 189, 60, 0.3);
}

.ram-block .feature-tag {
    background: rgba(56, 150, 211, 0.2);
    border-color: rgba(56, 150, 211, 0.3);
}

.storage-block .feature-tag {
    background: rgba(255, 223, 94, 0.2);
    border-color: rgba(255, 223, 94, 0.3);
}

.network-block .feature-tag {
    background: rgba(255, 182, 38, 0.2);
    border-color: rgba(255, 182, 38, 0.3);
}

.admin-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
}

.admins-footer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.admins-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--light);
    border: 2px solid #222;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.admins-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.admins-badge i {
    font-size: 1.6rem;
    color: var(--primary-light);
}

@media (max-width: 1200px) {
    .admins-blocks {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admins-title {
        font-size: 2.8rem;
    }
    
    .admin-block {
        flex-direction: column;
    }
    
    .admin-icon-container {
        margin: 0 auto 20px;
    }
    
    .admin-content {
        text-align: center;
    }
    
    .admin-features {
        justify-content: center;
    }
    
    .admins-footer {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .admins-badge {
        width: 100%;
        justify-content: center;
    }

    .server-indicator {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 20px;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .admin-content .member-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .admins-title {
        font-size: 2.2rem;
    }
    
    .specifications {
        padding: 70px 0;
    }
}

.server-team {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.time-line {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    padding: 30px;
    transition: all var(--transition-normal) ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(105, 12, 124, 0.5);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    position: relative;
}

.minecraft-avatar {
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 16px 4px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    object-fit: cover;
}

.minecraft-avatar img {
    width: 100%;
    text-align: center;
}

.minecraft-avatar i {
    font-size: 40px;
    color: var(--light);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.member-name {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--light);
}

.member-role {
    font-size: 16px;
    color: var(--primary-light);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 80%;
}

.member-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.member-social .social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all var(--transition-normal) ease;
}

.member-social .social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.team-join {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.team-join-info {
    text-align: center;
    padding: 30px;
    max-width: 600px;
}

.team-join-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--light);
}

.team-join-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.join-us {
    position: relative;
    background-image: url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
}

.join-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 13, 43, 0.8) 0%, rgba(60, 60, 189, 0.7) 100%);
    z-index: 1;
}

.join-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdnjs.cloudflare.com/ajax/libs/16bpp-noise/1.0.0/noise.min.svg');
    background-size: 100px;
    opacity: 0.05;
    z-index: 1;
    pointer-events: none;
}

.join-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.join-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--light);
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    font-family: 'Minecraft', sans-serif;
    letter-spacing: 2px;
}

.join-title span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.join-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
    opacity: 0.5;
    border-radius: var(--radius-full);
}

.join-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.7;
}

.btn-join {
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
    color: #e0e0e0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    padding: 16px 40px;
    box-shadow: 0 10px 30px rgba(58, 6, 229, 0.4);
    border-bottom: 4px solid rgba(15, 0, 66, 0.6);
    text-shadow: none;
    font-family: 'Minecraft', sans-serif;
}

.btn-join:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(64, 53, 231, 0.5);
}

.btn-join i {
    margin-right: 10px;
    font-size: 1.2em;
}

.join-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 60px;
}

.join-info-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 25px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    transition: all var(--transition-normal) ease;
}

.join-info-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.join-info-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--accent);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    font-family: 'Minecraft', sans-serif;
}

.join-info-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.minecraft-qr {
    max-width: 200px;
    margin: 0 auto 30px;
    background: #F5FAFE;
    padding: 15px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--primary);
    position: relative;
}

.minecraft-qr img {
    width: 100%;
    height: auto;
    display: block;
}

.minecraft-qr::before {
    content: '扫码加入';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.minecraft-divider {
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary) 0px,
        var(--primary) 16px,
        var(--primary-dark) 16px,
        var(--primary-dark) 32px
    );
    margin: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.minecraft-divider-accent {
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--accent) 0px,
        var(--accent) 16px,
        var(--accent-dark) 16px,
        var(--accent-dark) 32px
    );
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.footer-divider {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(60, 60, 189, 0.4),
        rgba(60, 60, 189, 0.4) 10px,
        rgba(60, 60, 189, 0.6) 10px,
        rgba(60, 60, 189, 0.6) 20px
    );
    z-index: 2;
}

.subserver-section {
    position: relative;
    overflow: hidden; /* 防止缩放时溢出 */
}

.subserver-text {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.7;
}

.subserver-text span {
    font-weight: bold;
    background-size: 200% 100%;
    background-image: linear-gradient(to right, #E59769, var(--gold), #E59769);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientAnimation 2s linear infinite;
}

.subserver-avatar {
    width: 150px;
    height: 150px;
    margin: auto;
    margin-bottom: 20px;
    position: relative;
}

.subserver-section .container {
    position: relative;
    z-index: 1;
}

footer {
    background: var(--darkest);
    padding: 60px 0 30px;
    position: relative;
    box-shadow: 10px 4px 0 rgba(0, 0, 0, 0.2);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px 45px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 45px;
    margin-right: 15px;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
    margin-top: -12px;
}

.footer-logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--light);
    font-family: 'Minecraft', sans-serif;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-logo-text span {
    color: var(--accent);
    position: relative;
    bottom: 2px;
}

.footer-logo-text span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    opacity: 0.5;
    border-radius: var(--radius-full);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 2px 0 0;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all var(--transition-normal) ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 20px rgba(97, 218, 255, 0.3);
    color: #fff;
}

.social-icon.copied::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--success);
    border-radius: 100%;
    animation: ripple 0.7s ease;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.footer-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
    color: var(--light);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Minecraft', sans-serif;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 3px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.footer-links li::before {
    content: '\f138';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 0.8rem;
    transition: all var(--transition-normal) ease;
}

.footer-links li:hover::before {
    color: var(--accent);
    transform: translateY(-50%) translateX(3px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color var(--transition-normal) ease, transform var(--transition-normal) ease;
    font-size: 1rem;
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
}

.footer-contact i {
    margin-right: 15px;
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.copyright .server-uptime {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.footer-links-bottom {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition-normal) ease;
    font-size: 0.9rem;
}

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

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal) ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary-light);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darkest);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.minecraft-loader {
    width: 100px;
    height: 100px;
    position: relative;
    transform: rotate(45deg);
    animation: rotateBlock 2s infinite linear;
}

.minecraft-loader-block {
    position: absolute;
    width: 50%;
    height: 50%;
    background-color: var(--primary);
}

.minecraft-loader-block:nth-child(1) {
    top: 0;
    left: 0;
    animation: loaderBlockAnimation 1s infinite alternate;
    background-color: var(--primary);
}

.minecraft-loader-block:nth-child(2) {
    top: 0;
    right: 0;
    animation: loaderBlockAnimation 1s infinite 0.2s alternate;
    background-color: var(--accent);
}

.minecraft-loader-block:nth-child(3) {
    bottom: 0;
    left: 0;
    animation: loaderBlockAnimation 1s infinite 0.4s alternate;
    background-color: var(--redstone);
}

.minecraft-loader-block:nth-child(4) {
    bottom: 0;
    right: 0;
    animation: loaderBlockAnimation 1s infinite 0.6s alternate;
    background-color: var(--diamond);
}

@keyframes loaderBlockAnimation {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0.8);
    }
}

@keyframes rotateBlock {
    0% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(405deg);
    }
}

.notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.notification {
    background: rgba(1, 9, 46, 0.9);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary);
    max-width: 350px;
    pointer-events: auto;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification-success {
    border-left-color: var(--success);
}

.notification-info {
    border-left-color: var(--info);
}

.notification-warning {
    border-left-color: var(--warning);
}

.notification-error {
    border-left-color: var(--danger);
}

.notification-icon {
    font-size: 20px;
    color: var(--light);
}

.notification-success .notification-icon {
    color: var(--success);
}

.notification-info .notification-icon {
    color: var(--info);
}

.notification-warning .notification-icon {
    color: var(--warning);
}

.notification-error .notification-icon {
    color: var(--danger);
}

.notification-message {
    color: var(--light);
    font-size: 15px;
    flex: 1;
}

@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 1200px) {
    .section-title {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .join-title {
        font-size: 3.5rem;
    }
    
    .footer-top {
        gap: 40px 30px;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 100px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .join-title {
        font-size: 3rem;
    }
    
    .status-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .admins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        gap: 60px 30px;
    }
    
    .video-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .join-title {
        font-size: 2.5rem;
    }
    
    .join-text {
        font-size: 1.1rem;
    }
    
    .status-value {
        font-size: 1.8rem;
    }

    .status-info {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        min-height: 300px;
        background: rgba(0, 14, 34, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: transform 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 40px;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        transform: translateY(-100%);
    }

    .nav-links.active {
        transform: translateY(0);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-7px, 6px);
    }
    
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -6px);
    }
    
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .join-title {
        font-size: 2.2rem;
    }
    
    .join-text {
        font-size: 1rem;
    }
    
    .video-title {
        font-size: 1.6rem;
    }
    
    .features-grid, .admins-grid {
        gap: 60px 20px;
    }
    
    .join-info {
        flex-direction: column;
        align-items: center;
    }
    
    .join-info-item {
        width: 100%;
        max-width: 300px;
    }
    
    .notification-container {
        max-width: 280px;
        left: 20px;
        bottom: 20px;
    }
}