:root {
    --bg-color: #0d0f12;
    --panel-bg: #14181f;
    --accent-gold: #cca553;
    --accent-purple: #7b2cbf;
    --text-main: #e2e8f0;
    --text-muted: #718096;
    --online-green: #00f5d4;
    --offline-red: #ff0054;
}

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

body {
    background: linear-gradient(rgba(13, 15, 18, 0.85), rgba(13, 15, 18, 0.85)),
                url('../images/bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    background-attachment: fixed;
    color: #e2e8f0;
    box-shadow: inset 0 0 120px rgba(13, 15, 18, 0.95),
                inset 250px 0 300px rgba(123, 44, 191, 0.15),
                inset -250px 0 300px rgba(204, 165, 83, 0.12);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

header {
    width: 100%;
    max-width: 1200px;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== ВЕРХНЕЕ МЕНЮ ШАПКИ ===== */
.top-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-menu-link {
    color: #a0aec0;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.top-menu-link:hover {
    color: var(--accent-gold);
    text-shadow: 0 0 8px rgba(204, 165, 83, 0.5);
}

.top-menu-link:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
}

.top-menu-link.active {
    color: var(--accent-gold);
    text-shadow: 0 0 8px rgba(204, 165, 83, 0.4);
}

.top-menu-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
}

/* ==========================================
   ЛОГОТИП ВЕРСЕЛ-СТИЛЬ (ЧЁРНЫЙ ТРЕУГОЛЬНИК)
   ========================================== */

.logo-vercel-style {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    gap: 15px;
    padding: 5px 0;
}

.logo-text-zone h2 {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
    margin: 0;
    text-shadow: 0 0 10px rgba(204, 165, 83, 0.5);
    font-family: 'Cinzel', serif;
}

.triangle-logo {
    width: 45px;
    height: 45px;
    fill: #000000;
    transition: all 0.4s ease;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(123, 44, 191, 0.6));
}

.glow-effect {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    filter: blur(30px);
    z-index: -1;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    background: linear-gradient(90deg,
        rgba(123, 44, 191, 0.6) 0%,
        rgba(204, 165, 83, 0.5) 25%,
        rgba(123, 44, 191, 0.6) 50%,
        rgba(204, 165, 83, 0.5) 75%,
        rgba(123, 44, 191, 0.6) 100%);
    background-size: 200% 100%;
    animation: fireRun 3s linear infinite;
    opacity: 0.7;
}

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

.logo-text-zone {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    opacity: 0.15;
    transition: all 0.4s ease;
    transform: translateX(-10px);
}

.logo-vercel-style:hover .logo-text-zone {
    opacity: 1;
    transform: translateX(0);
}

.logo-text-zone h2 {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-main);
    margin: 0;
    text-shadow: 0 0 10px rgba(204, 165, 83, 0.5);
    animation: textPulse 2s ease-in-out infinite;
}

.logo-text-zone span {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.4s ease;
}

.text-interlude {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.text-essence {
    background: linear-gradient(90deg, #ffffff 0%, var(--accent-purple) 50%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.logo-vercel-style:hover .logo-text-zone span {
    opacity: 1;
}

.logo-vercel-style:hover .text-interlude {
    animation: textPulse 2s ease-in-out infinite;
}

.logo-vercel-style:hover .text-essence {
    animation: textPulse 2s ease-in-out infinite 0.3s;
}

@keyframes textPulse {
    0%, 100% {
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(204, 165, 83, 0.5);
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(204, 165, 83, 0.8), 0 0 30px rgba(123, 44, 191, 0.6);
    }
}

.logo-vercel-style:hover .triangle-logo {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(123, 44, 191, 0.9)) drop-shadow(0 0 25px rgba(204, 165, 83, 0.7));
}

.logo-vercel-style:hover .glow-effect {
    filter: blur(20px);
    opacity: 1;
    background: linear-gradient(90deg,
        rgba(123, 44, 191, 0.9) 0%,
        rgba(204, 165, 83, 0.8) 25%,
        rgba(123, 44, 191, 0.9) 50%,
        rgba(204, 165, 83, 0.8) 75%,
        rgba(123, 44, 191, 0.9) 100%);
    background-size: 200% 100%;
    animation: fireRun 1.5s linear infinite;
    box-shadow: 0 0 30px #7b2cbf, 0 0 60px #cca553;
}

.main-content {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    margin-top: 50px;
}

.hero-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: rgba(20, 24, 31, 0.35);
    padding: 50px 40px;
    border-radius: 8px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(123, 44, 191, 0.25);
    box-shadow: 0 0 20px rgba(123, 44, 191, 0.2);
    width: 100%;
}

.hero-block h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(123, 44, 191, 0.5),
                 0 0 40px rgba(204, 165, 83, 0.3),
                 0 0 60px rgba(123, 44, 191, 0.4);
    font-family: 'Cinzel', serif;
    letter-spacing: 3px;
    background: linear-gradient(180deg, #ffffff 0%, #cca553 50%, #7b2cbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(123, 44, 191, 0.6));
}

.page-title {
    font-size: 32px;
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    letter-spacing: 2px;
    background: linear-gradient(180deg, #ffffff 0%, #cca553 50%, #7b2cbf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(123, 44, 191, 0.6));
}

.hero-block p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

.btn-group { display: flex; gap: 20px; margin-top: 50px; flex-wrap: wrap; }

/* ==========================================
   СЕКЦИИ: СКАЧАТЬ / КУПИТЬ / FAQ
   ========================================== */

.content-section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(123, 44, 191, 0.4);
}

.content-section-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 600px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    width: 100%;
}

/* Карточки скачивания */
.download-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(204, 165, 83, 0.2);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #7b2cbf, #cca553, #7b2cbf) 1;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7b2cbf, #cca553, #7b2cbf, #cca553, #7b2cbf);
    background-size: 200% 100%;
    border-radius: 8px 8px 0 0;
    animation: rainbowBorder 3s linear infinite;
}

.download-card:hover {
    border-color: rgba(204, 165, 83, 0.4);
    box-shadow: 0 0 15px rgba(204, 165, 83, 0.1);
    transform: translateY(-2px);
}

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

.download-card h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-size: 16px;
}

.download-card p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.download-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.download-card .card-size {
    color: var(--text-muted);
    font-size: 12px;
}

.download-card .btn-download {
    padding: 8px 20px;
    font-size: 12px;
    text-decoration: none;
}

/* Карточки покупки */
.buy-card {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(204, 165, 83, 0.2);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #7b2cbf, #cca553, #7b2cbf) 1;
    border-radius: 8px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.buy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7b2cbf, #cca553, #7b2cbf, #cca553, #7b2cbf);
    background-size: 200% 100%;
    border-radius: 8px 8px 0 0;
    animation: rainbowBorder 3s linear infinite;
}

.buy-card:hover {
    border-color: rgba(204, 165, 83, 0.4);
    box-shadow: 0 0 20px rgba(204, 165, 83, 0.15);
    transform: translateY(-3px);
}

.buy-card.popular {
    background: rgba(123, 44, 191, 0.1);
    border-color: rgba(123, 44, 191, 0.4);
}

.buy-card.popular::before {
    background: linear-gradient(90deg, #9d4edd, #cca553, #9d4edd, #cca553, #9d4edd);
    background-size: 200% 100%;
    animation: rainbowBorder 2s linear infinite;
    box-shadow: 0 0 10px rgba(123, 44, 191, 0.5);
}

.buy-card .badge-popular {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-purple);
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.buy-card h3 {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 18px;
}

.buy-card .price {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
}

.buy-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    flex: 1;
}

.buy-card ul li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.buy-card .btn-buy {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 100%;
    margin-top: auto;
    padding: 12px 0;
}

/* Карточки FAQ */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.faq-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(204, 165, 83, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: var(--accent-gold);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(204, 165, 83, 0.05);
    border-bottom: 1px solid rgba(204, 165, 83, 0.1);
}

.faq-question span:first-child {
    color: var(--accent-gold);
    font-weight: bold;
}

.faq-question span:last-child {
    color: var(--accent-gold);
    font-size: 20px;
}

.faq-answer {
    padding: 20px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    display: none;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple), #9d4edd);
    color: #fff;
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 44, 191, 0.6);
}

.btn-secondary {
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: var(--bg-color);
    transform: translateY(-2px);
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.panel {
    background: var(--panel-bg);
    border: 1px solid rgba(204, 165, 83, 0.1);
    border-radius: 6px;
    padding: 25px;
}

.panel-title {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
    font-family: 'Cinzel', serif;
}

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

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
}

.online { color: var(--online-green); }
.offline { color: var(--offline-red); }

.top-table {
    width: 100%;
    border-collapse: collapse;
}

.top-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.top-table td {
    padding: 10px 0;
    font-size: 14px;
}

.top-table .char-name { font-weight: 600; }
.top-table .char-lvl { text-align: right; color: var(--accent-gold); font-weight: 700; }
.top-table .char-status { width: 30px; text-align: center; }
.top-table .mini-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }

@media (max-width: 900px) {
    .main-content { grid-template-columns: 1fr; }
    .hero-block { align-items: center; text-align: center; }
    .content-grid { grid-template-columns: 1fr; }
    .panel-title { font-family: 'Cinzel', serif; font-weight: 900; }
}

/* ==========================================
   МОБИЛЬНАЯ АДАПТАЦИЯ (до 729px)
   ========================================== */

@media (max-width: 729px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 20px 15px;
    }

    .top-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .top-menu-link {
        font-size: 11px;
        padding: 6px 0;
    }

    .main-content {
        padding: 20px 15px;
        margin-top: 20px;
        gap: 20px;
    }

    .hero-block {
        padding: 30px 20px;
    }

    .hero-block h1 {
        font-size: 28px;
        margin-bottom: 20px;
        font-family: 'Cinzel', serif;
        font-weight: 900;
        letter-spacing: 2px;
    }

    .hero-block p {
        font-size: 14px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .btn-group {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
        width: 100%;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
        text-align: center;
    }

    .promo-grid {
        flex-direction: column;
        gap: 10px;
        margin: 15px auto;
    }

    .promo-card {
        width: 100%;
        height: 50px;
        min-width: unset;
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 13px;
    }

    .logo-vercel-style {
        gap: 10px;
    }

    .triangle-logo {
        width: 35px;
        height: 35px;
    }

    .logo-text-zone h2 {
        font-size: 16px;
    }

    .logo-text-zone span {
        font-size: 10px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 24px;
    }
}

/* ==========================================
   МОБИЛЬНАЯ АДАПТАЦИЯ (до 480px)
   ========================================== */

@media (max-width: 480px) {
    header {
        padding: 15px 10px;
    }

    .top-menu {
        gap: 8px;
    }

    .top-menu-link {
        font-size: 10px;
        letter-spacing: 0;
    }

    .main-content {
        padding: 15px 10px;
        margin-top: 15px;
    }

    .hero-block {
        padding: 20px 15px;
    }

    .hero-block h1 {
        font-size: 24px;
        margin-bottom: 15px;
        font-family: 'Cinzel', serif;
        font-weight: 900;
        letter-spacing: 1px;
    }

    .hero-block p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .btn-group {
        margin-top: 20px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 12px;
    }

    .triangle-logo {
        width: 30px;
        height: 30px;
    }

    .logo-text-zone h2 {
        font-size: 14px;
    }

    .logo-text-zone span {
        font-size: 9px;
    }
}
/* Основные стили сайта */

/* --- Виджеты и текстовые метки --- */
.account-info-list,
.info-item {
    color: #e2e8f0;
}

.label {
    color: #e2e8f0;
}

.value {
    color: #ffffff;
}

/* Цветовые классы для виджета "Информация аккаунта" с неоновым свечением */
.info-item .gold-text {
    color: #cca553 !important;
    text-shadow: 0 0 8px rgba(204, 165, 83, 0.5);
}

.info-item .purple-text {
    color: #a944ff !important;
    text-shadow: 0 0 8px rgba(169, 68, 255, 0.4);
}

.info-item .green-text {
    color: #00f5d4 !important;
    text-shadow: 0 0 8px rgba(0, 245, 212, 0.4);
}

.info-item .offline-red {
    color: #ff0054 !important;
    text-shadow: 0 0 8px rgba(255, 0, 84, 0.5);
}

/* Глобальные цветовые классы (для других элементов) */
.gold-text {
    color: #cca553 !important;
    text-shadow: 0 0 8px rgba(204, 165, 83, 0.5);
}

.purple-text {
    color: #a944ff !important;
    text-shadow: 0 0 8px rgba(169, 68, 255, 0.4);
}

.green-text {
    color: #00f5d4 !important;
    text-shadow: 0 0 8px rgba(0, 245, 212, 0.4);
}

.offline-red {
    color: #ff0054 !important;
    text-shadow: 0 0 8px rgba(255, 0, 84, 0.5);
}

/* ==========================================
   НОВЫЕ ЭЛЕМЕНТЫ ИНТЕРФЕЙСА
   ========================================== */

/* 3. КНОПКА ДОНАТА */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(204, 165, 83, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(204, 165, 83, 0); }
    100% { box-shadow: 0 0 0 0 rgba(204, 165, 83, 0); }
}

.btn-sidebar-donate {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    padding: 15px 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #cca553, #f1c40f);
    color: #fff;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.btn-sidebar-donate:hover {
    transform: translateY(-2px);
}

/* 4. ПРОМО-КАРТОЧКИ */
.promo-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 10px auto;
}

.promo-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background: #14181f;
    border: 1px solid rgba(204, 165, 83, 0.3);
    border-radius: 4px;
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    min-width: 200px;
    padding: 0 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

.promo-card:hover {
    background: rgba(123, 44, 191, 0.2);
    border-color: var(--accent-purple);
    box-shadow: 0 0 15px rgba(123, 44, 191, 0.4);
    transform: scale(1.03);
}

/* 5. ВЫДВИЖНОЙ ФУТЕР */
.sliding-footer-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.footer-trigger-btn {
    display: block;
    margin: 0 auto;
    background: #14181f;
    border: none;
    color: #e2e8f0;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    order: 2;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-trigger-btn:hover {
    background: var(--accent-purple);
    color: #fff;
}

.main-footer {
    display: flex;
    justify-content: space-between;
    background: #14181f;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    border-top: 1px solid transparent;
    padding: 0 30px;
}

.main-footer.open {
    max-height: 250px;
    padding: 30px;
    border-top: 1px solid var(--accent-gold);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
}

.footer-col {
    width: 33.33%;
    text-align: center;
}

.footer-col h4 {
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 14px;
}

.footer-col p {
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.5;
}

.footer-col a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent-gold);
}

