:root {
    --bg-dark: #0a0a0a;
    --bg-surface: #1a1a1a;
    --accent-orange: #ff6b35;
    --accent-orange-darker: #e55a2b;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #2a2a2a;
    --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.6;
    font-size: 16px;
    padding-top: 70px;
}

.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: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

section {
    padding: 5rem 0;
}

.site-header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 2px solid var(--accent-orange);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

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

.logo:hover img {
    opacity: 0.8;
}

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

.mobile-sticky-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    padding: 0.75rem;
    border-top: 2px solid var(--accent-orange);
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

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

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

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-darker));
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
}

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

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

.btn-large {
    font-size: 1.3rem;
    padding: 1rem 3rem;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    background-image: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)), url('../images/banners/vox-casino.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.8) 100%);
}

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

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(255, 107, 53, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    font-weight: 400;
}

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

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

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

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    border-color: var(--accent-orange);
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

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

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--accent-orange);
}

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

.card-link {
    font-family: var(--font-heading);
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

.featured-games {
    background-color: var(--bg-surface);
}

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

.game-card {
    background-color: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
    border-color: var(--accent-orange);
}

.game-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

.game-info {
    padding: 1.5rem;
    text-align: center;
}

.game-info h3 {
    font-size: 1.4rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.game-info .btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
}

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

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

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

.text-container h1 {
    font-size: 2.8rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.text-container h2 {
    font-size: 2.2rem;
    color: var(--accent-orange);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.text-container h3 {
    font-size: 2rem;
    color: var(--accent-orange);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
}

.text-container p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.75rem;
}

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

.text-container li {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.text-container strong {
    color: var(--accent-orange);
    font-weight: 600;
}

.content-image {
    border-radius: 12px;
    margin: 3rem 0;
    width: 100%;
    border: 2px solid var(--border-color);
}

.providers-section {
    background-color: var(--bg-surface);
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.provider-logo {
    max-width: 120px;
    max-height: 60px;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.provider-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.site-footer {
    background-color: var(--bg-surface);
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-top: 3.5rem;
    border-top: 2px solid var(--accent-orange);
}

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

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

.footer-about .logo img {
    max-height: 40px;
    opacity: 0.8;
}

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

.footer-links h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

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

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

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

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

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

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
}

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

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

    .hero-title {
        font-size: 3rem;
    }

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

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

    section {
        padding: 3rem 0;
    }

    .desktop-nav {
        display: none;
    }

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

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

    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .providers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .provider-logo {
        max-width: 80px;
        max-height: 40px;
    }

    .text-container h1 {
        font-size: 2.2rem;
    }

    .text-container h2 {
        font-size: 1.8rem;
    }

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

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

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

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