/*
Theme Name: Book of Ra España
Description: Tema profesional para el sitio web de Book of Ra España con gestión completa desde WordPress admin
Version: 1.0
Author: BookOfRa.es Team
Text Domain: book-of-ra-es
*/

:root {
    --primary-gold: #d4af37;
    --dark-gold: #b8941f;
    --light-gold: #f4e4a6;
    --egyptian-black: #1a1612;
    --egyptian-brown: #3d2914;
    --papyrus: #f5f1e8;
    --red-gem: #8b0000;
    --blue-gem: #1e3a8a;
    --shadow-dark: rgba(26, 22, 18, 0.8);
    --glow-gold: rgba(212, 175, 55, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cinzel', 'Georgia', serif;
    color: var(--papyrus);
    line-height: 1.7;
    background: linear-gradient(135deg, var(--egyptian-black) 0%, var(--egyptian-brown) 50%, var(--egyptian-black) 100%);
    font-size: 16px;
    overflow-x: hidden;
}
/* Египетские декоративные элементы */
.egyptian-border {
    border: 3px solid var(--primary-gold);
    border-image: linear-gradient(45deg, var(--primary-gold), var(--dark-gold), var(--primary-gold)) 1;
    position: relative;
}

.egyptian-border::before,
.egyptian-border::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    transform: rotate(45deg);
}

.egyptian-border::before {
    top: -10px;
    left: -10px;
}

.egyptian-border::after {
    bottom: -10px;
    right: -10px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: var(--light-gold);
    text-shadow: 0 0 10px var(--glow-gold);
}

/* Заголовки в египетском стиле */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel Decorative', 'Georgia', serif;
    color: var(--primary-gold);
    font-weight: 700;
    text-shadow: 2px 2px 4px var(--shadow-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    background: linear-gradient(45deg, var(--primary-gold), var(--light-gold), var(--primary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

/* Шапка сайта */
.site-header {
    background: linear-gradient(135deg, var(--egyptian-black), var(--egyptian-brown));
    padding: 20px 0;
    border-bottom: 3px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/hieroglyphs.png') repeat-x;
    opacity: 0.1;
}

.site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--glow-gold));
}

.site-title {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.header-buttons {
    display: flex;
    gap: 15px;
}

/* Кнопки в египетском стиле */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 0;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: 2px solid var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Cinzel', serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--glow-gold), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--egyptian-black) !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold) !important;
    border-color: var(--primary-gold);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* Навигация */
.main-navigation {
    background: rgba(26, 22, 18, 0.9);
    border-top: 1px solid var(--primary-gold);
    border-bottom: 1px solid var(--primary-gold);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.main-navigation a {
    display: block;
    padding: 15px 20px;
    color: var(--papyrus);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-navigation a:hover::after {
    width: 80%;
}

.main-navigation a:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

/* Героический раздел */
.hero-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/pharaoh-mask.png') center/contain no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: var(--primary-gold);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Cinzel', serif;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 3px 3px 6px var(--shadow-dark);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--papyrus);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

/* Игровое изображение */
.game-showcase {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 80px rgba(0, 0, 0, 0.5),
        0 0 50px var(--glow-gold);
    border: 3px solid var(--primary-gold);
}

.game-showcase img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.game-showcase:hover img {
    transform: scale(1.05);
}

.game-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--red-gem), #ff4444);
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.5);
    animation: pulse 2s infinite;
    font-family: 'Cinzel', serif;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Карточки контента */
.content-card {
    background: linear-gradient(135deg, rgba(26, 22, 18, 0.9), rgba(61, 41, 20, 0.8));
    border-radius: 25px;
    padding: 40px;
    margin-bottom: 50px;
    border: 2px solid var(--primary-gold);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -15px;
    right: -15px;
    bottom: -5px;
    background: url('assets/images/golden-ornament.svg') center/contain no-repeat;
    opacity: 0.1;
    z-index: -1;
}

/* ===============================
   СИМВОЛЫ - УЛУЧШЕННЫЕ СТИЛИ
   =============================== */

/* Сетка символов */
.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
    padding: 0;
}

/* Карточка символа */
.symbol-card {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.08) 0%, 
        rgba(184, 148, 31, 0.12) 50%, 
        rgba(212, 175, 55, 0.08) 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform-origin: center;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(212, 175, 55, 0.2);
}

/* Фоновый эффект для карточки */
.symbol-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(212, 175, 55, 0.05) 30%, 
        transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Декоративная рамка при наведении */
.symbol-card::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid var(--primary-gold);
    border-radius: 12px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Контент карточки */
.symbol-card > * {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Иконка символа */
.symbol-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: 1;
}

/* Заголовок символа */
.symbol-card h3 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    transition: all 0.3s ease;
}

/* Описание символа */
.symbol-card p {
    color: var(--papyrus);
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* Информация о выплатах */
.payout-info {
    background: rgba(26, 22, 18, 0.6);
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.payout-info p {
    margin-bottom: 8px;
    font-size: 0.85rem;
    color: var(--papyrus);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payout-info p:last-child {
    margin-bottom: 0;
}

.payout-info strong {
    color: var(--primary-gold);
    font-weight: 700;
}

/* ЭФФЕКТЫ ПРИ НАВЕДЕНИИ */
.symbol-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(212, 175, 55, 0.4);
    border-color: var(--light-gold);
}

.symbol-card:hover::before {
    opacity: 1;
}

.symbol-card:hover::after {
    opacity: 1;
}

.symbol-card:hover .symbol-icon {
    transform: scale(1.1) rotateY(10deg);
    filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.6));
}

.symbol-card:hover h3 {
    color: var(--light-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.symbol-card:hover .payout-info {
    background: rgba(26, 22, 18, 0.8);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* СПЕЦИАЛЬНЫЕ СИМВОЛЫ */

/* Book of Ra - особый стиль */
.symbol-card.book-of-ra {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.2) 0%, 
        rgba(184, 148, 31, 0.25) 50%, 
        rgba(212, 175, 55, 0.2) 100%);
    border: 3px solid var(--primary-gold);
    position: relative;
}

.symbol-card.book-of-ra::before {
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.3) 0%, 
        rgba(212, 175, 55, 0.1) 30%, 
        transparent 70%);
}

.symbol-card.book-of-ra:hover {
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.6),
        inset 0 2px 0 rgba(212, 175, 55, 0.5);
}

/* Символы премиум-класса */
.symbol-card.premium {
    border: 2px solid var(--primary-gold);
}

.symbol-card.premium:hover {
    border-color: var(--light-gold);
}

/* Карты (обычные символы) */
.symbol-card.card {
    border: 2px solid rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.05) 0%, 
        rgba(184, 148, 31, 0.08) 50%, 
        rgba(212, 175, 55, 0.05) 100%);
}

.symbol-card.card:hover {
    border-color: var(--primary-gold);
}

/* ЭФФЕКТ МЕРЦАНИЯ */
.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.3) 50%, 
        transparent 100%);
    transition: left 0.8s ease;
    z-index: 3;
}

.shimmer-effect.shimmer-active::after {
    left: 100%;
}

/* АНИМАЦИЯ ПОЯВЛЕНИЯ */
.symbol-card {
    opacity: 0;
    transform: translateY(30px);
    animation: symbolFadeIn 0.6s ease forwards;
}

@keyframes symbolFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Задержки для каскадного появления */
.symbol-card:nth-child(1) { animation-delay: 0.1s; }
.symbol-card:nth-child(2) { animation-delay: 0.2s; }
.symbol-card:nth-child(3) { animation-delay: 0.3s; }
.symbol-card:nth-child(4) { animation-delay: 0.4s; }
.symbol-card:nth-child(5) { animation-delay: 0.5s; }
.symbol-card:nth-child(6) { animation-delay: 0.6s; }
.symbol-card:nth-child(7) { animation-delay: 0.7s; }
.symbol-card:nth-child(8) { animation-delay: 0.8s; }
.symbol-card:nth-child(9) { animation-delay: 0.9s; }

/* АДАПТИВНОСТЬ */
@media (max-width: 768px) {
    .symbols-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .symbol-card {
        padding: 20px 15px;
    }
    
    .symbol-icon {
        font-size: 3rem;
    }
    
    .symbol-card h3 {
        font-size: 1.2rem;
    }
    
    .payout-info {
        padding: 12px;
    }
    
    .payout-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .symbols-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .symbol-card {
        padding: 18px 12px;
    }
    
    .symbol-icon {
        font-size: 2.5rem;
    }
    
    .symbol-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .symbol-card:hover .symbol-icon {
        transform: scale(1.05);
    }
}

/* ДОПОЛНИТЕЛЬНЫЕ ЭФФЕКТЫ */

/* Пульсация для особых символов */
.symbol-card.book-of-ra .symbol-icon {
    animation: bookPulse 3s ease-in-out infinite;
}

@keyframes bookPulse {
    0%, 100% { 
        filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
    }
    50% { 
        filter: drop-shadow(0 4px 20px rgba(212, 175, 55, 0.6));
    }
}

/* Особый эффект для Wild символа */
.symbol-card.wild {
    position: relative;
}

.symbol-card.wild::before {
    background: radial-gradient(circle, 
        rgba(212, 175, 55, 0.2) 0%, 
        rgba(255, 215, 0, 0.1) 30%, 
        transparent 70%);
}

/* Tooltip для символов */
.symbol-card[data-tooltip] {
    position: relative;
}

.symbol-card[data-tooltip]:hover::before {
    opacity: 1;
}

/* Активное состояние при клике */
.symbol-card:active {
    transform: translateY(-6px) scale(0.98);
    transition: all 0.1s ease;
}

/* Таблицы выплат */
.payout-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border: 2px solid var(--primary-gold);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.payout-table th,
.payout-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.payout-table th {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--egyptian-black);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Cinzel', serif;
}

.payout-table td {
    background: rgba(26, 22, 18, 0.7);
    color: var(--papyrus);
}

.payout-table tr:hover td {
    background: rgba(212, 175, 55, 0.1);
}

/* Бонусные функции */
.bonus-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(139, 0, 0, 0.2));
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/egyptian-pattern.png') center/cover;
    opacity: 0.05;
    z-index: 1;
}

.bonus-card-content {
    position: relative;
    z-index: 2;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.bonus-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
    filter: drop-shadow(0 0 15px var(--glow-gold));
}

/* CTA секция */
.cta-section {
    background: linear-gradient(135deg, var(--red-gem) 0%, #b91c1c 100%);
    border-radius: 25px;
    padding: 50px 30px;
    text-align: center;
    margin: 50px 0;
    position: relative;
    box-shadow: 
        0 20px 60px rgba(139, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-gold);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/treasure-pattern.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Футер */
.site-footer {
    background: linear-gradient(135deg, var(--egyptian-black), var(--egyptian-brown));
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 3px solid var(--primary-gold);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url('assets/images/egyptian-border.svg') repeat-x;
    opacity: 0.3;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-widget h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Cinzel Decorative', serif;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: var(--papyrus);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-widget a:hover {
    color: var(--primary-gold);
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.footer-info {
    color: rgba(245, 241, 232, 0.7);
    font-size: 0.9rem;
}

/* Анимации для игровых элементов */
@keyframes goldShimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--glow-gold), transparent);
    animation: goldShimmer 3s infinite;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .content-card {
        padding: 25px 20px;
    }
    
    .symbols-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bonus-features {
        grid-template-columns: 1fr;
    }
    
    .payout-table {
        font-size: 14px;
    }
    
    .payout-table th,
    .payout-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .symbols-grid {
        grid-template-columns: 1fr;
    }
    
    .site-header-inner {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        text-align: center;
    }
}

/* Специальные эффекты для Book of Ra */
.book-glow {
    box-shadow: 
        0 0 20px var(--glow-gold),
        0 0 40px var(--glow-gold),
        0 0 60px var(--glow-gold);
    animation: bookPulse 4s ease-in-out infinite;
}

@keyframes bookPulse {
    0%, 100% { 
        box-shadow: 
            0 0 20px var(--glow-gold),
            0 0 40px var(--glow-gold),
            0 0 60px var(--glow-gold);
    }
    50% { 
        box-shadow: 
            0 0 30px var(--glow-gold),
            0 0 60px var(--glow-gold),
            0 0 90px var(--glow-gold);
    }
}

/* Скроллбар в египетском стиле */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--egyptian-black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--light-gold), var(--primary-gold));
}