
:root {
    --gold: #D2B48C;
    --gold-light: #DEB887;
    --gold-dark: #8B6F47;
    --black: #1F3A1A;
    --dark-blue: #2D5A3D;
    --dark-blue-light: #7B9E7D;
    --white: #F5F1E8;
    --silver: #D4B896;
    --accent: #C97E5C;
    
    --font-serif: 'Georgia', 'Garamond', serif;
    --font-sans: 'Segoe UI', 'Arial', sans-serif;
    
    --container-width: 1200px;
 --border-radius: 20px;
    
    --shadow-sm: 0 4px 15px rgba(212, 175, 55, 0.12);
    --shadow-md: 0 8px 30px rgba(212, 175, 55, 0.18);
    --shadow-lg: 0 16px 50px rgba(212, 175, 55, 0.25);
    --glow: 0 0 30px rgba(212, 175, 55, 0.5);
    --glow-sm: 0 0 15px rgba(212, 175, 55, 0.3);
}

h1, h2, h3, h4, h5, h6 {
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.95), 1px 1px 4px rgba(0, 0, 0, 0.9), -1px -1px 4px rgba(0, 0, 0, 0.9);
    -webkit-text-stroke: 0.6px rgba(0, 0, 0, 0.7);
}

p, a, span, li, button, label, input, textarea, select {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 1px 1px 2px rgba(0, 0, 0, 0.9);
    -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 110px;
}

section[id] {
    scroll-margin-top: 110px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes glowIn {
    from {
        opacity: 0;
        box-shadow: 0 0 0 rgba(212, 175, 55, 0);
    }
    to {
        opacity: 1;
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-down {
    opacity: 0;
    animation: fadeInDown 0.8s ease-out forwards;
}

.animate-slide-left {
    opacity: 0;
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    opacity: 0;
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-scale {
    opacity: 0;
    animation: scaleIn 0.8s ease-out forwards;
}

.animate-bounce {
    opacity: 0;
    animation: bounceIn 0.8s ease-out forwards;
}

.animate-rotate {
    opacity: 0;
    animation: rotateIn 0.8s ease-out forwards;
}

.animate-glow {
    opacity: 0;
    animation: glowIn 0.8s ease-out forwards;
}

.animated {
    opacity: 1 !important;
    visibility: visible !important;
}

.animate-bounce {
    opacity: 0;
    animation: bounceIn 0.8s ease-out forwards;
}

.animate-rotate {
    opacity: 0;
    animation: rotateIn 0.8s ease-out forwards;
}

.animate-glow {
    opacity: 0;
    animation: glowIn 0.8s ease-out forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

body {
    font-family: var(--font-sans);
    background: linear-gradient(135deg, #1F3A1A 0%, #2D5A3D 25%, #3A6B45 50%, #2D5A3D 75%, #1F3A1A 100%);
    background-attachment: fixed;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
    font-variant: normal;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.95), -1px -1px 4px rgba(0, 0, 0, 0.85), 0 0 10px rgba(0, 0, 0, 0.9);
    -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.6);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(107, 158, 95, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(139, 165, 92, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 120px 0;
    margin: 40px 0;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.98), 3px 3px 15px rgba(0, 0, 0, 0.95), -3px -3px 15px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.9);
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.9);
    position: relative;
    padding-bottom: 40px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 40px rgba(0, 0, 0, 0.98), 3px 3px 15px rgba(0, 0, 0, 0.95), -3px -3px 15px rgba(0, 0, 0, 0.95), 0 0 20px rgba(0, 0, 0, 0.9); }
    50% { text-shadow: 0 0 50px rgba(0, 0, 0, 0.98), 3px 3px 15px rgba(0, 0, 0, 0.95), -3px -3px 15px rgba(0, 0, 0, 0.95), 0 0 30px rgba(210, 180, 140, 0.15); }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, transparent, #6B9E5F, #8FBC5E, #6B9E5F, transparent);
    box-shadow: 0 0 20px rgba(107, 158, 95, 0.6);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(31, 58, 26, 0.93);
    border-bottom: 2px solid var(--gold);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    animation: rotate 3s linear infinite;
}

.logo-text {
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    margin-right: 10px;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.6));
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.95), 1px 1px 3px rgba(0, 0, 0, 0.9);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.7);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 5px 0;
    border-radius: 3px;
    transition: 0.3s ease;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
    background-image: url('assets/2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(29, 42, 74, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    background: var(--gold);
    opacity: 0.1;
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.hero-particles::before {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
}

.hero-particles::after {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: #FFFFFF;
    text-shadow: 
        0 0 40px rgba(0, 0, 0, 0.98),
        0 0 80px rgba(0, 0, 0, 0.95),
        3px 3px 25px rgba(0, 0, 0, 0.92);
    letter-spacing: 8px;
    margin-bottom: 20px;
    font-weight: bold;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 40px rgba(0, 0, 0, 0.98), 0 0 80px rgba(0, 0, 0, 0.95), 3px 3px 25px rgba(0, 0, 0, 0.92); }
    50% { text-shadow: 0 0 50px rgba(0, 0, 0, 0.95), 0 0 100px rgba(0, 0, 0, 0.92), 3px 3px 35px rgba(0, 0, 0, 0.88); }
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 0 35px rgba(0, 0, 0, 0.97), 2px 2px 15px rgba(0, 0, 0, 0.93);
}

.hero-motto {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #FFED4E;
    font-style: italic;
    margin-bottom: 40px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.96), 1px 1px 12px rgba(0, 0, 0, 0.92);
}

.hero-divider {
    width: 200px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 40px auto;
}

.cta-button {
    padding: 16px 50px;
    border: none;
    font-size: 1.1rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cta-button:hover::before {
    opacity: 1;
}

.primary-btn {
    background: linear-gradient(135deg, #6B9E5F 0%, #4A7C3B 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(107, 158, 95, 0.3);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(107, 158, 95, 0.5);
    background: linear-gradient(135deg, #8FBC5E 0%, #6B9E5F 100%);
}

.primary-btn:active {
    transform: translateY(-1px);
}

.primary-btn:active {
    transform: translateY(-1px);
}

.lore {
    background-image: url('assets/Screenshot 2026-01-20 155654.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: multiply;
    position: relative;
}

.lore::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.lore-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.lore-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #FFFFFF;
}

.lore-text p {
    margin-bottom: 25px;
    text-align: justify;
    color: #FFFFFF;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.7);
}

.lore-text p:hover {
    color: var(--gold-light);
}

.lore-divider {
    display: none;
}

.lore-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imperial-emblem {
    width: 300px;
    height: 300px;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    position: relative;
    animation: spin 20s linear infinite;
    box-shadow: var(--glow);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.emblem-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.emblem-symbol {
    font-size: 100px;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px var(--gold));
}

.emblem-inner p {
    color: var(--gold);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.features {
    background-image: url('assets/mod.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(107, 158, 95, 0.12), rgba(143, 188, 94, 0.04));
    border: 2px solid var(--gold);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(107, 158, 95, 0.3);
    backdrop-filter: blur(12px);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 0 40px rgba(107, 158, 95, 0.4), inset 0 1px 0 rgba(143, 188, 94, 0.5);
    background: linear-gradient(135deg, rgba(107, 158, 95, 0.18), rgba(143, 188, 94, 0.08));
    border-color: #8FBC5E;
}

.feature-card:hover::after {
    left: 100%;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 15px var(--gold));
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    filter: drop-shadow(0 0 25px var(--gold));
    transform: scale(1.15) rotate(5deg);
}

.feature-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 1px 1px 4px rgba(0, 0, 0, 0.9);
}

.feature-card p {
    color: #F0F0F0;
    line-height: 1.7;
    font-size: 0.95rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.feature-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.server-section {
    background-image: url('assets/Screenshot 2026-01-20 155826.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: multiply;
}

.server-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.parchment-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(0, 0, 0, 0.8));
    border: 2px solid var(--gold);
    padding: 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(5px);
}

.parchment-card::before {
    content: '✦';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.3;
}

.parchment-card::after {
    content: '✦';
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.3;
}

.parchment-header {
    margin-bottom: 40px;
}

.parchment-header h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.95), 1px 1px 8px rgba(0, 0, 0, 0.90);
    -webkit-text-stroke: 0.7px rgba(0, 0, 0, 0.7);
}

.parchment-subtitle {
    color: var(--gold-light);
    font-style: italic;
    font-size: 0.95rem;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.9), 1px 1px 2px rgba(0, 0, 0, 0.85);
    -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.5);
}

.ip-display {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(212, 175, 55, 0.05));
    border: 2px solid var(--gold);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.ip-display:hover {
    box-shadow: var(--glow-sm);
    border-color: var(--gold-light);
}

.ip-display code {
    font-family: 'Courier New', monospace;
    font-size: 1.6rem;
    color: var(--gold-light);
    letter-spacing: 2px;
    font-weight: bold;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5), 1px 1px 4px rgba(0, 0, 0, 0.9);
    -webkit-text-stroke: 0.5px rgba(212, 175, 55, 0.3);
    user-select: all;
}

.copy-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    padding: 18px 35px;
    border-radius: var(--border-radius);
    font-weight: bold;
    opacity: 0;
    transform: translateY(-20px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 1001;
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.5);
    letter-spacing: 0.5px;
}

.copy-notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.server-info {
    background: rgba(29, 42, 74, 0.5);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.server-info p {
    margin-bottom: 10px;
    color: #FFFFFF;
    font-size: 0.95rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.server-info strong {
    color: var(--gold);
}

.requirements-card {
    background: rgba(29, 42, 74, 0.5);
    border: 2px solid var(--gold);
    padding: 40px 30px;
    border-radius: var(--border-radius);
}

.requirements-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    padding: 12px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list li:hover {
    color: var(--gold);
    padding-left: 10px;
}

.social-channels-card {
    background: rgba(0, 0, 0, 0.65);
    border: 2px solid var(--gold);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    text-align: center;
}

.social-channels-card h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9), 1px 1px 4px rgba(0, 0, 0, 0.85);
    -webkit-text-stroke: 0.6px rgba(0, 0, 0, 0.6);
}

.social-subtitle {
    color: #FFED4E;
    font-style: italic;
    margin-bottom: 30px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.9), 1px 1px 3px rgba(0, 0, 0, 0.85);
}

.social-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    border: 2px solid var(--gold);
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    color: #FFFFFF;
}

.social-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    background: rgba(0, 0, 0, 0.7);
}

.social-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.social-name {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.9), 1px 1px 2px rgba(0, 0, 0, 0.85);
    -webkit-text-stroke: 0.4px rgba(0, 0, 0, 0.5);
}

.discord-btn {
    border-color: #5865F2;
}

.discord-btn:hover {
    box-shadow: 0 0 30px rgba(88, 101, 242, 0.6);
    color: #5865F2;
}

.tiktok-btn {
    border-color: #25F4EE;
}

.tiktok-btn:hover {
    box-shadow: 0 0 30px rgba(37, 244, 238, 0.6);
    color: #25F4EE;
}

.youtube-btn {
    border-color: #FF0000;
}

.youtube-btn:hover {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.6);
    color: #FF0000;
}

.staff-section {
    background-image: url('assets/Screenshot 2026-01-20 155917.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.staff-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 60px;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.staff-card {
    background: linear-gradient(135deg, rgba(107, 158, 95, 0.15), rgba(143, 188, 94, 0.03));
    border: 2px solid var(--gold);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(107, 158, 95, 0.3), 0 -10px 25px rgba(107, 158, 95, 0.08);
    backdrop-filter: blur(12px);
}

.staff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.staff-card:hover::before {
    opacity: 1;
}

.staff-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 0 40px rgba(107, 158, 95, 0.35), inset 0 1px 0 rgba(143, 188, 94, 0.5);
    background: linear-gradient(135deg, rgba(107, 158, 95, 0.22), rgba(143, 188, 94, 0.1));
    border-color: #8FBC5E;
}

.staff-card.sovereign .staff-avatar {
    color: var(--gold);
    font-size: 4rem;
}

.staff-card.admin .staff-avatar {
    color: var(--accent);
    font-size: 3.5rem;
}

.staff-card.moderator .staff-avatar {
    color: var(--silver);
    font-size: 3.5rem;
}

.staff-card.builder .staff-avatar {
    color: var(--gold-light);
    font-size: 3.5rem;
}

.staff-avatar {
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 15px currentColor);
    transition: all 0.3s ease;
    font-size: 4rem;
}

.staff-card:hover .staff-avatar {
    filter: drop-shadow(0 0 25px currentColor);
    transform: scale(1.2) rotateY(10deg);
}

.staff-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: #FFFFFF;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8), 1px 1px 4px rgba(0, 0, 0, 0.9);
}

.staff-role {
    color: #FFED4E;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.staff-desc {
    color: #F0F0F0;
    font-size: 0.95rem;
    line-height: 1.6;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.gallery-section {
    background-image: url('assets/foto rpofilo tik tok.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: multiply;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 60px;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
    background-color: #000000;
    border-radius: var(--border-radius);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
}

.gallery-placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder.golden {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.gallery-placeholder.dark {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.gallery-placeholder.night {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
    box-shadow: var(--glow);
}

.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1), transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.modulistica-section {
    background-image: url('assets/mcita.png');
    padding: 80px 0;
}

.modulistica-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.modulistica-card {
    padding: 40px 30px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(107, 158, 95, 0.15), rgba(143, 188, 94, 0.04));
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(107, 158, 95, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.modulistica-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #6B9E5F, #8FBC5E, #6B9E5F, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modulistica-card:hover::before {
    opacity: 1;
}

.modulistica-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 50px rgba(107, 158, 95, 0.3), inset 0 1px 0 rgba(143, 188, 94, 0.4);
    background: linear-gradient(135deg, rgba(107, 158, 95, 0.2), rgba(143, 188, 94, 0.08));
    border-color: #8FBC5E;
}

.modulistica-card.main {
    grid-column: 2;
    padding: 50px 40px;
}

.modulistica-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.modulistica-card.main .modulistica-title {
    font-size: 1.7rem;
}

.modulistica-card p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.modulistica-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
    text-align: center;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.modulistica-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.modulistica-button:active {
    transform: translateY(0px);
}

.vote-section {
    background-image: url('assets/1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.vote-content {
    text-align: center;
    padding: 60px 40px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.vote-question {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.95), 1px 1px 8px rgba(0, 0, 0, 0.90);
}

.vote-description {
    font-size: 1.05rem;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.vote-button {
    display: inline-block;
    padding: 15px 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

.vote-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6), 0 8px 32px rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.vote-button:active {
    transform: translateY(-1px);
}

.faq-section {
    background-image: url('assets/Screenshot 2026-01-20 155742.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 60px;
    font-style: italic;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(107, 158, 95, 0.12), rgba(143, 188, 94, 0.02));
    border: 2px solid var(--gold);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(107, 158, 95, 0.25);
    backdrop-filter: blur(12px);
}

.faq-header {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
}

.faq-header:hover {
    background: linear-gradient(90deg, transparent, rgba(107, 158, 95, 0.2), transparent);
}

.faq-header h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.faq-toggle {
    font-size: 1.8rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    font-weight: bold;
}

.faq-toggle.active {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.75);
}

.faq-content.active {
    max-height: 500px;
    padding: 25px;
    border-top: 1px solid var(--gold);
}

.faq-content p {
    color: #FFFFFF;
    line-height: 1.7;
    font-size: 0.95rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.footer {
    background: linear-gradient(135deg, #1a3015 0%, #1F3A1A 100%);
    border-top: 2px solid var(--gold);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo .logo-icon {
    font-size: 2rem;
    animation: rotate 3s linear infinite;
}

.footer-logo h3 {
    font-family: var(--font-serif);
    color: #FFFFFF;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.footer-section > p {
    color: #FFFFFF;
    font-style: italic;
    font-size: 0.95rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul a {
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.footer-section ul a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-divider {
    height: 2px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin-bottom: 30px;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom p {
    color: #FFFFFF;
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.85);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.6);
}

.imperial-seal {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 5px;
    font-family: var(--font-serif);
    margin-top: 15px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }

    .hero {
        min-height: 80vh;
        margin-top: 70px;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        flex-direction: column;
        background: var(--black);
        width: 100%;
        text-align: center;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .lore-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lore-divider {
        display: block;
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--gold), transparent);
        margin: 20px 0;
    }

    .imperial-emblem {
        width: 200px;
        height: 200px;
    }

    .emblem-symbol {
        font-size: 60px;
    }

    .server-content {
        grid-template-columns: 1fr;
    }

    .parchment-card {
        padding: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .parchment-card {
        padding: 20px;
    }

    .ip-display code {
        font-size: 1.1rem;
        word-break: break-all;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .staff-grid {
        gap: 20px;
    }

    .feature-card {
        padding: 25px 20px;
    }
}
