* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #1a1410;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HERO SECTION - ПОЛНОЭКРАННАЯ ШАПКА
   ============================================ */
.hero {
    position: relative;
    min-height: 130vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 20, 16, 0.4) 0%, rgba(26, 20, 16, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
}

.hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 40px rgba(212, 165, 116, 0.6));
    animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite alternate;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0% { filter: drop-shadow(0 10px 40px rgba(212, 165, 116, 0.6)); }
    100% { filter: drop-shadow(0 10px 60px rgba(212, 165, 116, 0.9)); }
}

.hero-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    color: #d4a574;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   GAME WORLD CARD - КРАСИВАЯ КАРТОЧКА
   ============================================ */
.game-world-card {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
    backdrop-filter: none;
    border: 3px solid #d4a574;
    padding: 40px 50px;
    position: relative;
    overflow: visible;
    box-shadow: 
        0 0 30px rgba(212, 165, 116, 0.4),
        inset 0 0 20px rgba(212, 165, 116, 0.1);
    animation: cardGlow 3s ease-in-out infinite;
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(212, 165, 116, 0.4),
            inset 0 0 20px rgba(212, 165, 116, 0.1);
        border-color: #d4a574;
    }
    50% {
        box-shadow: 
            0 0 50px rgba(212, 165, 116, 0.6),
            inset 0 0 30px rgba(212, 165, 116, 0.15);
        border-color: #e4b584;
    }
}

.game-world-card::before {
    display: none;
}

.game-world-card::after {
    display: none;
}

.game-world-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.game-world-title {
    font-size: 2.5em;
    color: #d4a574;
    margin-bottom: 10px;
    text-shadow: 0 4px 20px rgba(212, 165, 116, 0.6);
    letter-spacing: 4px;
    font-weight: bold;
    text-transform: uppercase;
}

.game-world-subtitle {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.game-world-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.server-name {
    font-size: 1.8em;
    color: #d4a574;
    font-weight: bold;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(212, 165, 116, 0.6);
}

.server-status {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
}

.online-count {
    color: #4ade80;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.btn-play {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #d4a574 0%, #b8864f 100%);
    color: #fff;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(212, 165, 116, 0.5),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-play::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-play:hover::before {
    width: 400px;
    height: 400px;
}

.btn-play:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(212, 165, 116, 0.7),
        inset 0 2px 10px rgba(255, 255, 255, 0.4);
}

.play-icon {
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.play-text {
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   КНОПКИ
   ============================================ */
.btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #d4a574 0%, #b8864f 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 165, 116, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-5px);
}

/* ============================================
   TOP NAVIGATION
   ============================================ */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 20, 16, 0.98);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(212, 165, 116, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    gap: 35px;
    flex: 1;
    justify-content: center;
}

.nav-social {
    display: flex;
    gap: 12px;
}

.top-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.top-nav a:hover {
    color: #d4a574;
    border-bottom-color: #d4a574;
}

.nav-account {
    color: #d4a574;
    font-weight: 700;
    display: flex;
    gap: 12px;
}

/* ============================================
   FEATURES SECTION - УДАЛЕНА
   ============================================ */

/* ============================================
   COMPACT FEATURES - ПОД СЛАЙДЕРОМ
   ============================================ */
.features-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
    max-width: 100%;
}

@media (min-width: 768px) {
    .features-compact {
        grid-template-columns: repeat(4, 1fr);
    }
}

.feature-card-compact {
    background: linear-gradient(135deg, rgba(42, 31, 26, 0.95) 0%, rgba(26, 20, 16, 0.98) 100%);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #d4a574 0%, #b8864f 50%, #d4a574 100%) 1;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(212, 165, 116, 0.2);
    cursor: pointer;
}

a.feature-card-compact {
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(212, 165, 116, 0.05) 50%, transparent 100%);
    opacity: 1;
    transition: opacity 0.3s;
    pointer-events: none;
}

.feature-card-compact:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.7),
        0 0 20px rgba(212, 165, 116, 0.3),
        inset 0 1px 0 rgba(212, 165, 116, 0.3);
    background: linear-gradient(135deg, rgba(42, 31, 26, 1) 0%, rgba(26, 20, 16, 1) 100%);
}

.feature-icon-compact {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    filter: drop-shadow(0 3px 10px rgba(212, 165, 116, 0.4));
    position: relative;
    z-index: 2;
    display: block;
}

.feature-card-compact h3 {
    color: #d4a574;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.feature-card-compact p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    font-size: 13px;
    position: relative;
    z-index: 2;
}

/* ============================================
   FEATURES SECTION - СТАРАЯ (УДАЛЕНА)
   ============================================ */
.features {
    padding: 100px 0;
    background: #1a1410;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #d4a574;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(212, 165, 116, 0.4);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(42, 31, 26, 0.95) 0%, rgba(26, 20, 16, 0.98) 100%);
    border: 3px solid transparent;
    border-image: linear-gradient(135deg, #d4a574 0%, #b8864f 50%, #d4a574 100%) 1;
    border-radius: 0;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(212, 165, 116, 0.2),
        inset 0 -1px 0 rgba(212, 165, 116, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(212, 165, 116, 0.05) 50%, transparent 100%),
        radial-gradient(circle at top left, rgba(212, 165, 116, 0.15) 0%, transparent 50%),
        radial-gradient(circle at bottom right, rgba(212, 165, 116, 0.15) 0%, transparent 50%);
    opacity: 1;
    transition: opacity 0.4s;
    pointer-events: none;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #d4a574, #b8864f, #d4a574);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover::after {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { 
        filter: brightness(1) drop-shadow(0 0 10px rgba(212, 165, 116, 0.5));
    }
    50% { 
        filter: brightness(1.2) drop-shadow(0 0 20px rgba(212, 165, 116, 0.8));
    }
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(212, 165, 116, 0.4),
        inset 0 1px 0 rgba(212, 165, 116, 0.4),
        inset 0 -1px 0 rgba(212, 165, 116, 0.3);
    background: linear-gradient(135deg, rgba(42, 31, 26, 1) 0%, rgba(26, 20, 16, 1) 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    filter: drop-shadow(0 5px 15px rgba(212, 165, 116, 0.4));
    position: relative;
    z-index: 2;
    display: block;
}

.feature-icon-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #d4a574 0%, #b8864f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 10px 30px rgba(212, 165, 116, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.3),
        inset 0 -2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: iconPulse 2s ease-in-out infinite;
}

.feature-icon-placeholder-compact {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #d4a574 0%, #b8864f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 
        0 5px 15px rgba(212, 165, 116, 0.4),
        inset 0 1px 5px rgba(255, 255, 255, 0.3),
        inset 0 -1px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.05);
    }
}

.feature-card h3 {
    color: #d4a574;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 15px;
    position: relative;
    z-index: 2;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    padding: 100px 0;
    background: #1a1410;
    position: relative;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4a574, transparent);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* ============================================
   SLIDER
   ============================================ */
.slider-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(212, 165, 116, 0.3);
}

.slide {
    display: none;
    position: relative;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.slide.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 20, 16, 0.98) 0%, rgba(26, 20, 16, 0.8) 50%, transparent 100%);
    padding: 50px 40px;
    color: #fff;
    z-index: 2;
}

.slide-content h2 {
    color: #d4a574;
    font-size: 32px;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.slide-content p {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.btn-slide {
    background: linear-gradient(135deg, #d4a574 0%, #b8864f 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-slide:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.5);
}

.slider-dots {
    text-align: center;
    padding: 20px 0;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.3);
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: #d4a574;
}

.dot:hover {
    background: #d4a574;
    transform: scale(1.3);
    border-color: #d4a574;
    box-shadow: 0 0 10px rgba(212, 165, 116, 0.6);
}

/* ============================================
   NEWS SIDEBAR
   ============================================ */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-header-box {
    background: linear-gradient(135deg, #d4a574 0%, #b8864f 100%);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
    border: 2px solid rgba(212, 165, 116, 0.5);
}

.news-header-box h2 {
    font-size: 28px;
    margin: 0;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.news-card {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(26, 20, 16, 0.9) 100%);
    border: 2px solid rgba(212, 165, 116, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.news-card:hover {
    border-color: #d4a574;
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.3);
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.2) 0%, rgba(26, 20, 16, 0.95) 100%);
}

.news-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574 0%, #b8864f 100%);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(212, 165, 116, 0.4);
}

.news-card h3 {
    color: #d4a574;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.news-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.news-link {
    color: #d4a574;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-link:hover {
    color: #f4c594;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(26, 20, 16, 0.98);
    padding: 40px 0;
    margin-top: 0;
    border-top: 2px solid rgba(212, 165, 116, 0.3);
    text-align: left;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3em;
    }
    
    .hero-logo {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2em;
    }
    
    .hero-description {
        font-size: 1.2em;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-container {
        height: 350px;
    }
    
    .top-nav .container {
        gap: 15px;
    }
}

.footer-rpg {
    position: relative;
	transform: translateZ(0);
    will-change: transform;
    background: rgba(20, 14, 10, 0.88);
    backdrop-filter: blur(12px);
    border-top: 2px solid rgba(212, 165, 116, 0.25);
    padding: 70px 0;
    overflow: hidden;
}

/* светящаяся линия сверху */
.footer-rpg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #d4a574,
        transparent
    );
}

/* GRID */
.footer-rpg-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

/* КОЛОНКИ */
.footer-col {
	will-change: transform;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(212, 165, 116, 0.15);
    padding: 25px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

/* мягкое подсвечивание */
.footer-col:hover {
    border-color: rgba(212, 165, 116, 0.5);
    box-shadow:
        0 0 20px rgba(212, 165, 116, 0.2),
        inset 0 0 20px rgba(212, 165, 116, 0.08);
    transform: translateY(-4px);
}

/* заголовок */
.footer-col h3 {
    color: #d4a574;
    margin-bottom: 18px;
    font-size: 20px;
    text-shadow: 0 0 12px rgba(212, 165, 116, 0.4);
}

/* текст */
.footer-col p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* ссылки */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* GOLDEN GLOW */
.footer-links a:hover {
    color: #d4a574;
    text-shadow: 0 0 12px rgba(212, 165, 116, 0.8);
    transform: translateX(6px);
}

.footer-title {
    color: #d4a574;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(212, 165, 116, 0.5);
    border-bottom: 1px solid rgba(212, 165, 116, 0.3);
    padding-bottom: 8px;
}

.open-timer-pro {
    margin: 20px 0 30px;
    text-align: center;
}

/* Заголовок */
.timer-title {
    color: #d4a574;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(212,165,116,0.6);
}

/* Контейнер времени */
.timer-boxes {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Блок времени */
.time-box {
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(212,165,116,0.35);
    border-radius: 12px;
    padding: 10px 15px;
    min-width: 85px;
    backdrop-filter: blur(6px);

    box-shadow:
        0 0 15px rgba(212,165,116,0.2),
        inset 0 0 10px rgba(212,165,116,0.05);

    transition: all 0.3s ease;
}

/* glow при hover */
.time-box:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 25px rgba(212,165,116,0.5);
}

/* цифры */
.time-box span {
    display: block;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 10px rgba(212,165,116,0.7);
}

/* подпись */
.time-box small {
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    text-transform: uppercase;
}

@keyframes timerPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 10px rgba(212,165,116,0.7);
    }
    50% {
        transform: scale(1.08);
        text-shadow: 0 0 20px rgba(212,165,116,1);
    }
}

.time-box {
    position: relative;
    overflow: hidden;
}

.time-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -120%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
    transform: rotate(20deg);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% {
        left: -120%;
    }
    100% {
        left: 140%;
    }
}

@keyframes softGlow {
    0%, 100% {
        box-shadow:
            0 0 15px rgba(212,165,116,0.2),
            inset 0 0 10px rgba(212,165,116,0.05);
    }
    50% {
        box-shadow:
            0 0 30px rgba(212,165,116,0.45),
            inset 0 0 20px rgba(212,165,116,0.15);
    }
}

.timer-title {
    color: #d4a574;
}

@media (max-width: 900px) {
    .footer-rpg-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}