:root {
    --bg-dark: #0f0f0f;
    --bg-surface: #1b1b1b;
    --bg-card: #222222;
    --accent-orange: #ff7b3d;
    --accent-orange-darker: #ff6420;
    --accent-orange-light: #ff9966;
    --text-primary: #fafafa;
    --text-secondary: #9e9e9e;
    --border-color: #2f2f2f;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.65;
    font-size: 16px;
    padding-top: 80px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
    position: relative;
    letter-spacing: 2px;
}

.section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
}

section {
    padding: 6rem 0;
}

.site-header {
    background-color: rgba(15, 15, 15, 0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo:hover img {
    filter: brightness(1.2);
}

.desktop-nav {
    display: flex;
    gap: 1.5rem;
}

.mobile-sticky-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 1.25rem;
    border-top: 1px solid var(--border-color);
    z-index: 1001;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.5);
}

.mobile-sticky-nav .btn-group {
    display: flex;
    gap: 1.25rem;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-sticky-nav .btn {
    flex: 1;
}

.btn {
    display: inline-block;
    padding: 1rem 2.25rem;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255, 123, 61, 0.35);
}

.btn-primary:hover {
    background-color: var(--accent-orange-darker);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 123, 61, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--bg-card);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.25rem 3.5rem;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    background: 
        linear-gradient(135deg, rgba(15, 15, 15, 0.85) 0%, rgba(255, 123, 61, 0.15) 50%, rgba(15, 15, 15, 0.85) 100%),
        url('../images/banners/casino-vox.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--bg-dark), transparent);
}

.hero-content {
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 5.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 2px 40px rgba(255, 123, 61, 0.4);
    letter-spacing: 4px;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 3.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.game-categories {
    background-color: var(--bg-surface);
    position: relative;
}

.game-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3.5rem;
}

.category-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover::after {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border-color: var(--accent-orange);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    filter: brightness(0.8);
    transition: all 0.4s ease;
}

.category-card:hover .card-image {
    filter: brightness(1);
    transform: scale(1.05);
}

.card-content {
    padding: 2.5rem;
    position: relative;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.card-link {
    font-family: var(--font-heading);
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-link:hover {
    color: var(--accent-orange-light);
}

.payment-methods {
    background-color: var(--bg-dark);
    padding: 6rem 0;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.payment-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 80px;
}

.payment-item:hover {
    border-color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.payment-icon {
    max-width: 80px;
    max-height: 40px;
    width: auto;
    height: auto;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

.payment-item:hover .payment-icon {
    filter: brightness(1.2);
}

.games-showcase {
    background-color: var(--bg-surface);
    position: relative;
}

.games-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-item {
    text-align: center;
    transition: all 0.3s ease;
}

.game-item:hover {
    transform: translateY(-5px);
}

.game-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.game-item:hover .game-image {
    border-color: var(--accent-orange);
    box-shadow: 0 10px 30px rgba(255, 123, 61, 0.3);
}

.game-item h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
    font-family: var(--font-body);
    font-weight: 600;
}

.content-section {
    background-color: var(--bg-dark);
}

.text-container {
    max-width: 950px;
}

.text-container .section-title {
    margin-bottom: 3.5rem;
}

.text-container h3 {
    font-size: 2.4rem;
    color: var(--accent-orange);
    margin-top: 4rem;
    margin-bottom: 1.75rem;
    letter-spacing: 1px;
}

.text-container h4 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.text-container ul {
    margin: 2rem 0;
    padding-left: 2rem;
}

.text-container li {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 1rem;
    position: relative;
}

.text-container li::marker {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.text-container li strong {
    color: var(--text-primary);
}

.text-container p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 2.1;
    margin-bottom: 2.25rem;
}

.text-container p strong {
    color: var(--text-primary);
}

.content-image {
    border-radius: 10px;
    margin: 4rem 0;
    width: 100%;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

.site-footer {
    background-color: var(--bg-surface);
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-top: 4.5rem;
    border-top: 1px solid var(--border-color);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-about .logo {
    margin-bottom: 2rem;
}

.footer-about .logo img {
    max-height: 45px;
    opacity: 0.9;
}

.footer-about p {
    line-height: 2;
}

.footer-links h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1.75rem;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-orange);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    text-align: center;
    padding: 2.5rem 0;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
        padding-bottom: 90px;
    }

    .hero {
        min-height: 90vh;
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    section {
        padding: 4rem 0;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-sticky-nav {
        display: block;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .btn-large {
        font-size: 1.1rem;
        padding: 1.1rem 2.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .text-container h3 {
        font-size: 1.75rem;
    }
}