:root {
    --bg-dark: #0a0a0a;
    --bg-surface: #141414;
    --bg-card: #1f1f1f;
    --accent-orange: #ff6f3c;
    --accent-orange-darker: #ff5722;
    --accent-orange-light: #ff8f66;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --border-color: #2d2d2d;
    --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.7;
    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.6rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title span {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

section {
    padding: 5rem 0;
}

.site-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    border-bottom: 2px solid var(--accent-orange);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 25px rgba(255, 111, 60, 0.15);
}

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

.logo img {
    max-height: 46px;
    width: auto;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 111, 60, 0.3));
}

.logo:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 4px 12px rgba(255, 111, 60, 0.5));
}

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

.mobile-sticky-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(12px);
    padding: 0.9rem;
    border-top: 2px solid var(--accent-orange);
    z-index: 1001;
    box-shadow: 0 -4px 25px rgba(255, 111, 60, 0.2);
}

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

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

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 1.2px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-darker) 100%);
    color: #fff;
    box-shadow: 0 5px 20px rgba(255, 111, 60, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 111, 60, 0.6);
}

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

.btn-secondary:hover {
    background-color: var(--accent-orange);
    color: #fff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 30px rgba(255, 111, 60, 0.4);
}

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

.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1rem;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 111, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 87, 34, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%),
        url('images/banners/vox-casino-bonus.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 111, 60, 0.03) 2px,
        rgba(255, 111, 60, 0.03) 4px
    );
    pointer-events: none;
}

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

.hero-title {
    font-size: 5.2rem;
    margin-bottom: 1.8rem;
    color: #fff;
    text-shadow: 
        0 0 20px rgba(255, 111, 60, 0.5),
        0 0 40px rgba(255, 111, 60, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 20px rgba(255, 111, 60, 0.5),
            0 0 40px rgba(255, 111, 60, 0.3),
            0 4px 20px rgba(0, 0, 0, 0.5);
    }
    to {
        text-shadow: 
            0 0 30px rgba(255, 111, 60, 0.7),
            0 0 60px rgba(255, 111, 60, 0.5),
            0 4px 20px rgba(0, 0, 0, 0.5);
    }
}

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

.game-categories {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
    position: relative;
}

.game-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
}

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

.category-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-surface) 100%);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.45s ease;
    z-index: -1;
}

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

.category-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 111, 60, 0.35);
}

.card-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.card-content {
    padding: 2.2rem;
    position: relative;
    background: var(--bg-card);
}

.card-content h3 {
    font-size: 1.85rem;
    margin-bottom: 0.9rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.category-card:hover .card-content h3 {
    color: var(--accent-orange);
}

.card-content p {
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
    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: 1.05rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.content-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-surface) 100%);
}

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

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

.text-container h3 {
    font-size: 2.1rem;
    color: var(--text-primary);
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.text-container h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background: linear-gradient(180deg, var(--accent-orange), var(--accent-orange-light));
    border-radius: 3px;
}

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

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

.content-image {
    border-radius: 16px;
    margin: 3.5rem 0;
    width: 100%;
    border: 3px solid var(--border-color);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.content-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 111, 60, 0.2);
}

.featured-games {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
}

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

.game-item {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-surface) 100%);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.game-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 111, 60, 0.25);
    border-color: var(--accent-orange);
}

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

.game-item:hover .game-image {
    transform: scale(1.1);
    filter: brightness(1.15);
}

.game-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-primary);
    padding: 1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.game-item:hover h4 {
    color: var(--accent-orange);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-surface) 100%);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-orange);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.feature-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(255, 111, 60, 0.15);
    border-left-width: 6px;
}

.feature-list li strong {
    color: var(--accent-orange);
    font-weight: 600;
}

.numbered-list {
    padding-left: 2rem;
    margin: 2rem 0;
}

.numbered-list li {
    background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-surface) 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    list-style-position: inside;
}

.numbered-list li::marker {
    color: var(--accent-orange);
    font-weight: 700;
    font-family: var(--font-heading);
}

.numbered-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(255, 111, 60, 0.15);
    background: linear-gradient(145deg, var(--bg-surface) 0%, var(--bg-card) 100%);
}

.numbered-list li strong {
    color: var(--accent-orange);
    font-weight: 600;
}

.site-footer {
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-dark) 100%);
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-top: 4rem;
    border-top: 2px solid var(--accent-orange);
    position: relative;
}

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

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

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

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

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

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

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

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

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

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

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

.footer-bottom {
    border-top: 1px solid var(--border-color);
    text-align: center;
    padding: 2.25rem 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: 85px;
    }

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

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

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

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

    section {
        padding: 3.5rem 0;
    }

    .desktop-nav {
        display: none;
    }

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

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

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

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

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

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

.games-showcase {
    background-color: #111111;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 40px;
}

.section-title .highlight {
    color: #ff6600;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.game-item {
    display: block;
    background-color: #0a0a0a;
    border: 1px solid #333333;
    border-radius: 15px;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.game-item:hover {
    transform: translateY(-5px);
    border-color: #ff6600;
}

.game-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.game-item h4 {
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    padding: 15px 10px;
    letter-spacing: 0.5px;
}