:root {
    /* Winity Dark Luxury Color Palette */
    --clr-bg-base: #0a0a0a;
    --clr-bg-surface: #141414;
    --clr-bg-surface-light: #1f1f1f;
    
    --clr-primary: #d4af37; /* Luxury Gold */
    --clr-primary-hover: #f1c43f;
    --clr-text-main: #e2e8f0;
    --clr-text-muted: #94a3b8;
    
    --clr-border: #2a2a2a;
    --clr-gradient: linear-gradient(135deg, #d4af37 0%, #a67c00 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Layout */
    --container-max: 1200px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    /* Animation */
    --transit-fast: 0.2s ease-in-out;
    --transit-norm: 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-base);
    color: var(--clr-text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transit-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transit-fast);
    font-size: 1rem;
    border: none;
}

.btn--primary {
    background: var(--clr-gradient);
    color: #000;
}
.btn--primary:hover {
    background: #f1c43f;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--clr-primary);
    color: var(--clr-primary);
}
.btn--outline:hover {
    background: var(--clr-primary);
    color: #000;
}

.btn--large {
    padding: 14px 32px;
    font-size: 1.125rem;
}

/* === HEADER === */
.header {
    position: sticky;
    top: 0;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--clr-border);
    z-index: 100;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header__logo {
    max-height: 40px;
    width: auto;
}

.footer__logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.logo__text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    background: var(--clr-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.nav__list {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav__link {
    font-weight: 500;
    color: var(--clr-text-muted);
}
.nav__link:hover, .nav__link.active {
    color: var(--clr-text-main);
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.header__actions {
    display: flex;
    gap: 15px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--clr-text-main);
}

@media (max-width: 768px) {
    .nav { display: none; }
    .header__actions { display: none; }
    .menu-toggle { display: flex; }
}

/* === HERO SLIDER === */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--clr-bg-surface);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide__content {
    max-width: 600px;
    z-index: 2;
}

.slide__content--button-only {
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.slide__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 15px;
    line-height: 1.1;
    color: #fff;
}

.slide__desc {
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    margin-bottom: 30px;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
    display: flex;
    gap: 10px;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    cursor: pointer;
    transition: var(--transit-fast);
}
.slider-btn:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #000;
}

@media (max-width: 768px) {
    .hero-slider { height: 400px; }
    .slide__title { font-size: 2.5rem; }
}

/* === GAMES SECTION === */
.games-section {
    padding: 60px 20px;
}

.games-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.games-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}
.games-header h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: var(--clr-gradient);
    border-radius: 4px;
}

.view-all {
    color: var(--clr-primary);
    font-weight: 500;
}
.view-all:hover {
    text-decoration: underline;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.game-card {
    background: var(--clr-bg-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    transition: transform var(--transit-norm);
    border: 1px solid var(--clr-border);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--clr-primary);
}

.game-image {
    aspect-ratio: 1/1;
    background: var(--clr-bg-surface-light);
    display: block;
}

.game-info {
    padding: 15px;
}

.game-name {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

.game-provider {
    display: block;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
}

.game-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transit-norm);
}
.game-card:hover .game-overlay {
    opacity: 1;
}

.game-overlay span {
    background: var(--clr-gradient);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
}

/* Table Styles */
.seo-table-container {
    overflow-x: auto;
    margin: 20px 0 40px;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
}

.table-characteristics {
    width: 100%;
    border-collapse: collapse;
    background: var(--clr-bg-surface);
}

.table-characteristics th,
.table-characteristics td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--clr-border);
    text-align: left;
}

.table-characteristics tr:last-child th,
.table-characteristics tr:last-child td {
    border-bottom: none;
}

.table-characteristics th {
    background: rgba(255,255,255,0.03);
    color: var(--clr-primary);
    font-weight: 600;
    width: 35%;
}

.table-characteristics td {
    color: var(--clr-text-main);
}

/* === SEO CONTENT === */
.seo-content {
    padding: 40px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.seo-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--clr-primary);
}

.seo-block h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #fff;
}

.seo-block p {
    margin-bottom: 15px;
    color: var(--clr-text-muted);
    font-size: 1.05rem;
}

.seo-block strong {
    color: var(--clr-text-main);
}

.seo-list {
    margin-bottom: 20px;
    padding-left: 20px;
    color: var(--clr-text-muted);
}
.seo-list li {
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--clr-border);
}

.faq-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--clr-primary);
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background: var(--clr-bg-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-border);
    transition: transform var(--transit-fast), border-color var(--transit-fast);
}

.faq-item:hover {
    transform: translateX(5px);
    border-color: var(--clr-primary);
}

.faq-item h4 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 12px;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* === INTERNAL PAGES COMMON === */
.page-header {
    background: var(--clr-bg-surface);
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid var(--clr-border);
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--clr-primary);
}

/* === FOOTER === */
.footer {
    background: #050505;
    border-top: 1px solid var(--clr-border);
    padding: 60px 0 20px;
}

.footer__container {
    display: grid;
    grid-template-columns: 2fr 3fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__brand p {
    color: var(--clr-text-muted);
    margin: 15px 0;
    font-size: 0.9rem;
}

.age-limit {
    display: inline-block;
    border: 2px solid var(--clr-text-muted);
    color: var(--clr-text-muted);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    font-weight: bold;
}

.footer__links {
    display: flex;
    gap: 50px;
}

.footer__col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer__col a {
    display: block;
    color: var(--clr-text-muted);
    margin-bottom: 10px;
    font-size: 0.9rem;
}
.footer__col a:hover {
    color: var(--clr-primary);
}

.footer__partners h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
}

.partners-logos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.partners-logos a {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    text-decoration: underline;
}

.footer__providers {
    text-align: center;
    border-top: 1px solid var(--clr-border);
    padding-top: 30px;
    margin-top: 10px;
    margin-bottom: 40px;
}

.providers-img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    opacity: 0.8;
    transition: opacity var(--transit-fast);
}
.providers-img:hover {
    opacity: 1;
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--clr-text-muted);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr;
    }
}
