html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,*:after,*:before {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a4a 50%, #2d2d5f 100%);
}

.main-navigation {
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 70px;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
    text-decoration: none;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    white-space: nowrap;
}

.nav-logo:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item {
    position: relative;
    white-space: nowrap;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700 0%, #ff8c00 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.nav-link:hover::before {
    width: 80%;
}

.nav-cta {
    background: linear-gradient(45deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    color: #1a0033 !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    border-radius: 25px !important;
    white-space: nowrap;
}

.nav-cta:hover {
    background: linear-gradient(45deg, #ff8c00 0%, #ffa500 50%, #ffd700 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.nav-cta::before {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 215, 0, 0.1);
}

.nav-toggle-bar {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 60px;
    }

    .nav-logo {
        font-size: 1.5rem;
        white-space: nowrap;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        white-space: nowrap;
    }

    .nav-item:last-child {
        border-bottom: none;
        margin-top: 10px;
    }

    .nav-link {
        display: block;
        padding: 15px 25px;
        font-size: 1.2rem;
        border-radius: 0;
        width: 100%;
        white-space: nowrap;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link:hover {
        background: rgba(255, 215, 0, 0.15);
    }

    .nav-cta {
        margin: 10px 25px;
        padding: 15px 30px !important;
        border-radius: 25px !important;
        display: inline-block !important;
        width: auto !important;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
        height: 55px;
    }

    .nav-logo {
        font-size: 1.3rem;
        white-space: nowrap;
    }

    .nav-toggle-bar {
        width: 22px;
    }

    .nav-menu {
        top: 55px;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 20px;
        white-space: nowrap;
    }

    .nav-cta {
        margin: 10px 20px !important;
        padding: 12px 25px !important;
        font-size: 1rem !important;
        white-space: nowrap;
    }
}

.hero-banner {
    width: 100%;
    min-height: 50vh;
    background: linear-gradient(135deg, #2c0639 0%, #4a1458 25%, #7b2d8e 50%, #b845c7 75%, #e664da 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
            radial-gradient(circle at 80% 70%, rgba(255, 69, 0, 0.12) 0%, transparent 40%),
            radial-gradient(circle at 50% 10%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%),
            linear-gradient(-45deg, transparent 30%, rgba(255, 215, 0, 0.03) 50%, transparent 70%);
    animation: hero-shimmer 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes hero-shimmer {
    0%, 100% { opacity: 0.3; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow:
            0 0 20px rgba(255, 215, 0, 0.5),
            0 0 40px rgba(255, 215, 0, 0.3),
            2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    letter-spacing: 2px;
    line-height: 1.1;
    background: linear-gradient(45deg, #ffffff 0%, #ffd700 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hero-glow 3s ease-in-out infinite alternate;
}

@keyframes hero-glow {
    0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5), 0 0 40px rgba(255, 215, 0, 0.3), 2px 2px 8px rgba(0, 0, 0, 0.5); }
    100% { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.5), 2px 2px 8px rgba(0, 0, 0, 0.5); }
}

.hero-description {
    font-size: 1.4rem;
    color: #e0e0e0;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(45deg, #ff6b35 0%, #f7931e 50%, #ffd700 100%);
    color: #1a0033;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow:
            0 10px 30px rgba(255, 107, 53, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
            0 15px 40px rgba(255, 107, 53, 0.6),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-cta:active {
    transform: translateY(-1px) scale(1.02);
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: hero-float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; left: 15%; animation-delay: 1s; }
.floating-icon:nth-child(3) { top: 30%; right: 20%; animation-delay: 2s; }
.floating-icon:nth-child(4) { top: 70%; right: 10%; animation-delay: 3s; }
.floating-icon:nth-child(5) { top: 40%; left: 50%; animation-delay: 4s; }
.floating-icon:nth-child(6) { top: 80%; left: 70%; animation-delay: 5s; }

@keyframes hero-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-banner {
        min-height: 45vh;
    }

    .hero-content {
        padding: 50px 25px;
    }

    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 25px;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 40px;
        line-height: 1.5;
    }

    .hero-cta {
        padding: 18px 40px;
        font-size: 1.1rem;
    }

    .floating-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        min-height: 40vh;
    }

    .hero-content {
        padding: 35px 20px;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .hero-cta {
        padding: 16px 35px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .floating-icon {
        font-size: 1.2rem;
        opacity: 0.05;
    }
}

.casino-container {
    max-width: 1400px;
    width: 100%;
    background: linear-gradient(145deg, #1e1e3f 0%, #2a2a5a 100%);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    position: relative;
    margin: 20px auto;
}

.casino-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 69, 0, 0.1) 100%);
    z-index: 1;
}

.casino-header {
    background: linear-gradient(90deg, #ff4500 0%, #ffa500 50%, #ff6347 100%);
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.9;
    font-weight: 300;
}

.casino-content {
    padding: 40px;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.feature-card:hover::before {
    opacity: 1;
    animation: shimmer 2s infinite;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #ffa500;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
}

.feature-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: bold;
}

.feature-desc {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cta-section {
    text-align: center;
    margin-top: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 25px;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #ff4500 0%, #ffa500 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffa500;
    border: 2px solid #ffa500;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.6);
}

.btn-secondary:hover {
    background: #ffa500;
    color: #1e1e3f;
}

.promo-banner {
    background: linear-gradient(90deg, #32cd32 0%, #228b22 100%);
    padding: 20px;
    margin: 30px 0;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '🎰';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    opacity: 0.3;
    animation: bounce 2s infinite;
}

.promo-banner::after {
    content: '🚀';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    opacity: 0.3;
    animation: bounce 2s infinite 1s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(-50%); }
    40% { transform: translateY(-70%); }
    60% { transform: translateY(-60%); }
}

.promo-text {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffa500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .casino-header {
        padding: 20px;
    }

    .logo {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .casino-content {
        padding: 25px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 25px;
        font-size: 1rem;
    }

    .footer-links {
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }

    .promo-banner {
        padding: 15px;
        margin: 20px 0;
    }

    .promo-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .casino-container {
        border-radius: 15px;
    }

    .logo {
        font-size: 1.8rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-desc {
        font-size: 0.9rem;
    }
}

.golden-palace-wrapper {
    max-width: 1400px;
    margin: 20px auto;
    background: linear-gradient(135deg, #1a0033 0%, #2d1b69 50%, #5a2d6b 100%);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.3);
}

.golden-palace-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.palace-header {
    background: linear-gradient(90deg, #b8860b 0%, #daa520 50%, #ffd700 100%);
    padding: 35px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.palace-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1a0033;
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.palace-subtitle {
    font-size: 1.3rem;
    color: #2d1b69;
    font-weight: 600;
    opacity: 0.9;
}

.palace-content {
    padding: 50px 40px;
    position: relative;
    z-index: 2;
}

.palace-games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.palace-game-card {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.palace-game-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: palace-rotate 6s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.palace-game-card:hover::after {
    opacity: 1;
}

@keyframes palace-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.palace-game-card:hover {
    transform: scale(1.05);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.palace-game-emoji {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.palace-game-name {
    font-size: 1.8rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    z-index: 3;
}

.palace-game-text {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 3;
}

.palace-stats {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 35px;
    margin: 40px 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.palace-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.palace-stat {
    position: relative;
}

.palace-stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    display: block;
    margin-bottom: 10px;
}

.palace-stat-text {
    color: #ccc;
    font-size: 1.1rem;
    font-weight: 500;
}

.palace-actions {
    text-align: center;
    margin-top: 50px;
}

.palace-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.palace-btn {
    padding: 18px 40px;
    border: none;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.palace-btn-gold {
    background: linear-gradient(45deg, #b8860b 0%, #daa520 50%, #ffd700 100%);
    color: #1a0033;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.palace-btn-outline {
    background: transparent;
    color: #ffd700;
    border: 3px solid #ffd700;
}

.palace-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(218, 165, 32, 0.6);
}

.palace-btn-outline:hover {
    background: #ffd700;
    color: #1a0033;
}

.palace-promo {
    background: linear-gradient(90deg, #8b0000 0%, #dc143c 50%, #ff6347 100%);
    padding: 25px;
    text-align: center;
    margin: 40px 0;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.palace-promo::before {
    content: '💎';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    animation: palace-pulse 2s infinite;
}

.palace-promo::after {
    content: '🎯';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    animation: palace-pulse 2s infinite 1s;
}

@keyframes palace-pulse {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2); }
}

.palace-promo-text {
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.palace-navigation {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.palace-navigation a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.palace-navigation a:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .palace-title {
        font-size: 2.2rem;
    }

    .palace-subtitle {
        font-size: 1.1rem;
    }

    .palace-content {
        padding: 30px 25px;
    }

    .palace-games {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .palace-game-card {
        padding: 25px;
    }

    .palace-game-emoji {
        font-size: 3rem;
    }

    .palace-game-name {
        font-size: 1.5rem;
    }

    .palace-stats {
        padding: 25px;
    }

    .palace-stat-num {
        font-size: 2rem;
    }

    .palace-buttons {
        flex-direction: column;
        align-items: center;
    }

    .palace-btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 35px;
        font-size: 1.1rem;
    }

    .palace-navigation {
        gap: 20px;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .palace-header {
        padding: 25px;
    }

    .palace-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .palace-subtitle {
        font-size: 1rem;
    }

    .palace-promo {
        padding: 20px;
    }

    .palace-promo-text {
        font-size: 1.2rem;
    }

    .palace-game-emoji {
        font-size: 2.5rem;
    }
}

.site-footer {
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 69, 0, 0.05) 100%);
    z-index: 1;
}

.site-footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 40px;
    position: relative;
    z-index: 2;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.site-footer-column {
    position: relative;
}

.site-footer-heading {
    font-size: 1.5rem;
    color: #ffd700;
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.site-footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700 0%, #ff8c00 100%);
    border-radius: 2px;
}

.site-footer-links {
    list-style: none;
}

.site-footer-links li {
    margin-bottom: 15px;
}

.site-footer-links a {
    color: #b0c4de;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 8px 0;
}

.site-footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700 0%, #ff8c00 100%);
    transition: width 0.3s ease;
}

.site-footer-links a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.site-footer-links a:hover::before {
    width: 100%;
}

.site-footer-info-text {
    color: #8ab4f8;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.site-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #b0c4de;
    font-size: 0.95rem;
}

.site-contact-icon {
    margin-right: 12px;
    font-size: 1.2rem;
    color: #ffd700;
    width: 20px;
}

.site-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 2;
}

.site-footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.site-footer-copyright {
    color: #8ab4f8;
    font-size: 0.9rem;
}

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

.site-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: #ffd700;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.site-social-link:hover {
    background: #ffd700;
    color: #1a1a2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.site-payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.site-payment-icon {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
    color: #b0c4de;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.site-payment-icon:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    color: #ffd700;
}

.site-footer-badges {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.site-badge {
    padding: 12px 20px;
    background: linear-gradient(135deg, #228b22 0%, #32cd32 100%);
    border-radius: 25px;
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .site-footer-main {
        padding: 40px 25px 30px;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 35px;
    }

    .site-footer-heading {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .site-footer-bottom-content {
        padding: 25px;
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .site-footer-social {
        justify-content: center;
    }

    .site-payment-methods {
        justify-content: center;
    }

    .site-footer-badges {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .site-footer-main {
        padding: 30px 20px 25px;
    }

    .site-footer-heading {
        font-size: 1.2rem;
    }

    .site-footer-links a {
        font-size: 0.95rem;
    }

    .site-footer-bottom-content {
        padding: 20px;
    }

    .site-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .site-payment-icon {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .site-badge {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

.content {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content h2 {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    line-height: 1.3;
}

.content h2:first-child {
    margin-top: 0;
}

.content h3 {
    font-size: 1.5rem;
    color: #ff8c00;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: bold;
    line-height: 1.4;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #b0c4de;
    text-align: justify;
}

.content p strong {
    color: #ffd700;
    font-weight: bold;
}

.content ul,
.content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content li {
    font-size: 1rem;
    line-height: 1.7;
    color: #b0c4de;
    margin-bottom: 8px;
    position: relative;
}

.content ul li::marker {
    color: #ffd700;
}

.content ol li::marker {
    color: #ff8c00;
    font-weight: bold;
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.content table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    color: #e0e0e0;
    font-size: 1rem;
}

.content table td:first-child {
    background: linear-gradient(135deg, #2d1b69 0%, #5a2d6b 100%);
    color: #ffd700;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.content table tr:hover {
    background: rgba(255, 215, 0, 0.1);
    transition: background 0.3s ease;
}

.content table td p {
    margin: 0;
    font-size: 1rem;
}

.content table td p strong {
    color: #ffd700;
}

.table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content {
        padding: 25px;
        border-radius: 10px;
    }

    .content h2 {
        font-size: 1.6rem;
        margin-top: 30px;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .content h2:first-child {
        margin-top: 0;
    }

    .content h3 {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 15px;
        text-align: left;
    }

    .content ul,
    .content ol {
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .content li {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .content table {
        font-size: 0.9rem;
        min-width: 100%;
    }

    .content table td {
        padding: 12px 10px;
        white-space: nowrap;
    }

    .content table td p {
        font-size: 0.9rem;
    }

    .table-wrapper {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #ffd700 rgba(255, 215, 0, 0.2);
    }

    .table-wrapper::-webkit-scrollbar {
        height: 6px;
    }

    .table-wrapper::-webkit-scrollbar-track {
        background: rgba(255, 215, 0, 0.1);
        border-radius: 3px;
    }

    .table-wrapper::-webkit-scrollbar-thumb {
        background: #ffd700;
        border-radius: 3px;
    }

    .table-wrapper::-webkit-scrollbar-thumb:hover {
        background: #ff8c00;
    }
}

@media (max-width: 480px) {

    .content {
        padding: 20px;
    }

    .content h2 {
        font-size: 1.4rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .content h3 {
        font-size: 1.2rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .content p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .content ul,
    .content ol {
        padding-left: 20px;
        margin-bottom: 12px;
    }

    .content li {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .content table td {
        padding: 10px 8px;
        font-size: 0.85rem;
    }

    .content table td p {
        font-size: 0.85rem;
    }
}