html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #120c0b;
}
::-webkit-scrollbar-thumb {
    background: #8b4513;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

/* SEO Content Styles - Converted from Tailwind @apply to standard CSS */
article {
    max-width: 80rem; /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: #d1d5db; /* text-gray-300 */
    font-weight: 300; /* font-light */
    line-height: 1.625; /* leading-relaxed */
}

article > div {
    background-color: #120c0b; /* bg-amun-darker */
    padding: 2rem; /* p-8 */
    border-radius: 0.75rem; /* rounded-xl */
    border-width: 1px;
    border-color: rgba(139, 69, 19, 0.2); /* border-amun-accent/20 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
}

article h1 {
    font-family: 'Cinzel', serif; /* font-egypt */
    font-size: 1.875rem; /* text-3xl */
    line-height: 2.25rem;
    color: #d4af37; /* text-amun-gold */
    margin-bottom: 2rem; /* mb-8 */
    border-bottom-width: 1px;
    border-color: rgba(139, 69, 19, 0.3); /* border-amun-accent/30 */
    padding-bottom: 1rem; /* pb-4 */
}

@media (min-width: 768px) {
    article h1 {
        font-size: 2.25rem; /* md:text-4xl */
        line-height: 2.5rem;
    }
}

article h2 {
    font-family: 'Cinzel', serif; /* font-egypt */
    font-size: 1.5rem; /* text-2xl */
    line-height: 2rem;
    color: #fff; /* text-white */
    margin-bottom: 1rem; /* mb-4 */
    margin-top: 2rem; /* mt-8 */
}

article h3 {
    font-family: 'Cinzel', serif; /* font-egypt */
    font-size: 1.25rem; /* text-xl */
    line-height: 1.75rem;
    color: #f3e5ab; /* text-amun-gold-light */
    margin-bottom: 0.75rem; /* mb-3 */
}

article p {
    margin-bottom: 1.5rem; /* mb-6 */
}

article strong {
    font-weight: 700; /* font-bold */
    color: #fff; /* text-white */
}

article p:last-child {
    font-weight: 700; /* font-bold */
    color: #d4af37; /* text-amun-gold */
    margin-top: 1rem; /* mt-4 */
}

/* Tables in SEO Content */
/* Table Wrappers (Direct children) */
article > div > div:not(:last-of-type) {
    overflow-x: auto;
    margin-bottom: 2rem;
}

/* FAQ Container (Last child div) */
article > div > div:last-of-type {
    margin-top: 2rem;
    border-top: 1px solid rgba(139, 69, 19, 0.2);
    padding-top: 1.5rem;
}

/* Inner Table Wrapper in FAQ */
article > div > div:last-of-type > div {
    overflow-x: auto;
}

article > div > div:last-of-type table th:first-child {
    width: 33%;
}

article table {
    width: 100%; /* w-full */
    text-align: left; /* text-left */
    border-collapse: collapse;
    background-color: rgba(0, 0, 0, 0.4); /* bg-black/40 */
    border-radius: 0.5rem; /* rounded-lg */
    overflow: hidden;
    margin-bottom: 0; /* margin handled by wrapper */
    white-space: nowrap;
    font-size: 0.875rem; /* text-sm equivalent */
}

@media (min-width: 768px) {
    article table {
        white-space: normal;
    }
}

article thead tr {
    background-color: rgba(139, 69, 19, 0.3); /* bg-amun-accent/30 */
    color: #d4af37; /* text-amun-gold */
}

article th {
    padding: 1rem; /* p-4 */
    font-weight: 700; /* font-bold */
    border-bottom-width: 1px;
    border-color: rgba(139, 69, 19, 0.5); /* border-amun-accent/50 */
}

article tbody tr {
    border-bottom-width: 1px;
    border-color: #1f2937; /* border-gray-800 */
    transition: background-color 0.2s;
}

article tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05); /* hover:bg-white/5 */
}

article td {
    padding: 1rem; /* p-4 */
}

article td:first-child {
    font-weight: 700; /* font-bold */
    color: #d4af37; /* text-amun-gold */
}

article td:last-child {
    color: #9ca3af; /* text-gray-400 */
}

/* Gold Text Gradient */
.text-gold-gradient {
    background: linear-gradient(to bottom, #f3e5ab, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button Glow */
.btn-glow:hover {
    box-shadow: 0 0 15px rgba(0, 168, 232, 0.6);
}

/* Hero Background Simulation */
.hero-bg {
    background: linear-gradient(rgba(26, 17, 16, 0.3), rgba(26, 17, 16, 1)), 
                url('img/banner.png'); 
    background-size: cover;
    background-position: center top;
}

/* Gold Frame Style for Slots */
.slot-card {
    border: 2px solid #b8860b; /* Darker gold border */
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.slot-card:hover {
    border-color: #f3e5ab; /* Lighter gold on hover */
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.jackpot-bar {
    background: linear-gradient(to right, #b8860b, #f3e5ab, #b8860b);
    color: #000;
    font-weight: 800;
    text-align: center;
    font-size: 0.75rem;
    padding: 2px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 10;
}