/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a1123;
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin: 1rem 0;
    line-height: 1.6;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ffc107;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #ffc107, #ffca2c);
    color: #0a1123;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffca2c, #ffc107);
    color: #0a1123;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #2e4b8f;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #3a5caa;
}

.btn-outline {
    border: 1px solid #2e4b8f;
    background-color: transparent;
    color: #ffffff;
}

.btn-outline:hover {
    background-color: #2e4b8f;
    color: #ffffff;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
}

.btn-bonus {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.btn-cashback {
    background-color: #9333ea;
    color: #ffffff;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.btn-cashback:hover {
    background-color: #a855f7;
}

.btn-crypto {
    background-color: #2563eb;
    color: #ffffff;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.btn-crypto:hover {
    background-color: #3b82f6;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

.btn-icon-arrow {
    margin-left: 0.5rem;
    margin-right: 0;
    animation: pulse 2s infinite;
}

/* Header */
.header {
    background-color: #0a1123;
    border-bottom: 1px solid #1e2747;
    position: relative;
    z-index: 50;
}

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

.logo-link {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.logo-x {
    color: #ffc107;
}

.nav {
    display: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #d1d5db;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffc107;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -0.125rem;
    left: 0;
    width: 0;
    height: 0.125rem;
    background-color: #ffc107;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    position: relative;
    z-index: 51;
}

.hamburger-line {
    display: block;
    width: 1.5rem;
    height: 0.125rem;
    background-color: #ffffff;
    margin: 0.25rem 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #0a1123;
    border-bottom: 1px solid #1e2747;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.5rem);
    transition: all 0.3s ease;
    z-index: 40;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.mobile-nav-list li {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #ffffff;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #ffc107;
    background-color: #1e2747;
}

.mobile-auth-buttons {
    padding-top: 1rem;
    border-top: 1px solid #1e2747;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main Content */
.main {
    flex: 1;
    background-color: #0a1123;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
    overflow: hidden;
}

.hero-background {
    min-height: 37.5rem;
    width: 100%;
    position: relative;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.hero-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 20;
}

.gradient-effect {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, linear-gradient(135deg, #ffc107, #ffca2c), transparent);
    opacity: 0.2;
}

.floating-coin {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #ffca2c);
    opacity: 0.8;
}

.coin-1 {
    top: 25%;
    right: 25%;
    width: 2rem;
    height: 2rem;
    animation: float-slow 12s ease-in-out infinite;
}

.coin-2 {
    top: 33.333333%;
    right: 33.333333%;
    width: 1.5rem;
    height: 1.5rem;
    opacity: 0.6;
    animation: float-medium 8s ease-in-out infinite;
}

.coin-3 {
    bottom: 25%;
    right: 20%;
    width: 2.5rem;
    height: 2.5rem;
    opacity: 0.7;
    animation: float-fast 6s ease-in-out infinite;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 30;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.hero-text {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 40;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffc107, #ffca2c);
    color: #000000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-title-highlight {
    background: linear-gradient(135deg, #ffc107, #ffca2c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-break {
    display: block;
}

.hero-description {
    font-size: 0.875rem;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.highlight {
    background: linear-gradient(135deg, #ffc107, #ffca2c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
}

.hero-bonus {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 40;
}

/* Animations */
@keyframes float-slow {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-15px) translateX(10px);
    }
    50% {
        transform: translateY(0) translateX(20px);
    }
    75% {
        transform: translateY(15px) translateX(10px);
    }
}

@keyframes float-medium {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-10px) translateX(15px);
    }
    50% {
        transform: translateY(0) translateX(30px);
    }
    75% {
        transform: translateY(10px) translateX(15px);
    }
}

@keyframes float-fast {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(5px);
    }
    50% {
        transform: translateY(0) translateX(10px);
    }
    75% {
        transform: translateY(20px) translateX(5px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Bonus Card */
.bonus-card {
    width: 100%;
    max-width: 28rem;
    background: linear-gradient(135deg, rgba(15, 22, 49, 0.9), rgba(30, 39, 71, 0.9));
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.3);
    backdrop-filter: blur(4px);
    position: relative;
    overflow: hidden;
}

.bonus-card-bg-effect {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    background-color: #ffc107;
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(3rem);
}

.bonus-card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(10,17,35,0.8);
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-bottom-left-radius: 0.375rem;
}

.bonus-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.bonus-card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 193, 7, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

.bonus-card-icon svg {
    width: 2rem;
    height: 2rem;
    color: #ffc107;
}

.bonus-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.bonus-card-label {
    background-color: #ffc107;
    color: #000000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    margin-top: 0.25rem;
    display: inline-block;
}

.bonus-card-amount {
    text-align: center;
    margin-bottom: 1.5rem;
}

.bonus-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a1123;
    margin-bottom: 0.5rem;
}

.bonus-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0a1123;
    margin-bottom: 0.25rem;
}

.bonus-subtitle {
    font-size: 0.75rem;
    color: #0a1123;
}

.bonus-card-alert {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 202, 44, 0.1));
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.bonus-card-alert span {
    background: linear-gradient(135deg, #ffc107, #ffca2c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 0.75rem;
}

/* Features Section */
.features-section {
    margin-bottom: 2rem;
    background-color: #0a1123;
    padding: 2rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid #1e2747;
    background-color: #0f1631;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    border-color: #2e4b8f;
    transform: translateY(-2px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    color: #ffc107;
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: block;
}

.feature-description {
    font-size: 0.75rem;
    color: #ffffff;
}

/* Category Section */
.category-section {
    margin-bottom: 2rem;
    background-color: #0a1123;
    padding: 2rem 0;
}

.category-bar {
    background-color: #1e2747;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.75rem;
}

.category-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background-color: #0f1631;
    border: 1px solid rgba(46, 75, 143, 0.3);
    text-decoration: none;
    cursor: pointer;
}

.category-card:hover {
    background-color: #2e4b8f;
    transform: translateY(-1px);
}

.category-icon {
    margin-right: 1rem;
    flex-shrink: 0;
    background-color: #0a1123;
    padding: 0.5rem;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon-img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.category-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    display: block;
}

.category-description {
    color: #d1d5db;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Games Section */
.games-section {
    margin-bottom: 2rem;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    background-color: #ffc107;
    border-radius: 0.25rem;
    display: inline-block;
    vertical-align: middle;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 165px);
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.game-card {
    background-color: #0f1631;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #1e2747;
    position: relative;
    cursor: pointer;
    max-width: 165px;
    margin: 0 auto;
}

.game-card:hover {
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.3);
    transform: translateY(-2px);
}

.game-image-container {
    position: relative;
    aspect-ratio: 165/88;
    background-color: #0f1631;
    overflow: hidden;
}

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

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

.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-badge {
    position: absolute;
    top: 0;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0 0 0.375rem 0;
}

.new-badge {
    right: 0;
    background-color: #ffc107;
    color: #000000;
}

.hot-badge {
    left: 0;
    background-color: #dc2626;
    color: #ffffff;
}

.game-content {
    padding: 0.75rem;
}

.game-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-description {
    color: #9ca3af;
    font-size: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.section-footer {
    text-align: center;
}

/* Bonuses Section */
.bonuses-section {
    margin-bottom: 2rem;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.bonus-card-large {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 193, 7, 0.3);
    background: linear-gradient(135deg, #0f1631, #1e2747);
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 20rem;
}

.bonus-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bonus-bg-effect {
    position: absolute;
    top: -2.5rem;
    right: -2.5rem;
    width: 10rem;
    height: 10rem;
    background-color: #ffc107;
    opacity: 0.2;
    border-radius: 50%;
    filter: blur(3rem);
}

.cashback-bonus .bonus-bg-effect {
    background-color: #9333ea;
}

.crypto-bonus .bonus-bg-effect {
    background-color: #2563eb;
}

.bonus-badge-top {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ffc107;
    color: #000000;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-bottom-left-radius: 0.375rem;
}

.cashback-bonus .bonus-badge-top {
    background-color: #9333ea;
    color: #ffffff;
}

.crypto-bonus .bonus-badge-top {
    background-color: #2563eb;
    color: #ffffff;
}

.bonus-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.bonus-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: rgba(255, 193, 7, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
}

.cashback-bonus .bonus-icon {
    background-color: rgba(147, 51, 234, 0.3);
    box-shadow: 0 0 15px rgba(147, 51, 234, 0.5);
}

.crypto-bonus .bonus-icon {
    background-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.5);
}

.bonus-icon svg {
    width: 2rem;
    height: 2rem;
    color: #ffc107;
}

.cashback-bonus .bonus-icon svg {
    color: #a855f7;
}

.crypto-bonus .bonus-icon svg {
    color: #3b82f6;
}

.bonus-title-section {
    flex: 1;
}

.bonus-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
}

.bonus-label {
    background-color: #ffc107;
    color: #000000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    margin-top: 0.25rem;
    display: inline-block;
}

.cashback-bonus .bonus-label {
    background-color: #9333ea;
    color: #ffffff;
}

.crypto-bonus .bonus-label {
    background-color: #2563eb;
    color: #ffffff;
}

.bonus-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.bonus-description {
    font-size: 0.875rem;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.bonus-amount {
    color: #ffc107;
    font-weight: 700;
    font-size: 1.125rem;
    position: relative;
    display: inline-block;
}

.cashback-bonus .bonus-amount {
    color: #a855f7;
}

.crypto-bonus .bonus-amount {
    color: #3b82f6;
}

.bonus-alert {
    background-color: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem;
    text-align: center;
}

.cashback-bonus .bonus-alert {
    background-color: rgba(147, 51, 234, 0.1);
    border-color: rgba(147, 51, 234, 0.2);
}

.crypto-bonus .bonus-alert {
    background-color: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.bonus-alert span {
    color: #ffc107;
    font-weight: 700;
    font-size: 0.75rem;
}

.cashback-bonus .bonus-alert span {
    color: #a855f7;
}

.crypto-bonus .bonus-alert span {
    color: #3b82f6;
}

.bonus-footer {
    position: relative;
    margin-top: auto;
}

.bonus-amount-badge {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffc107;
    color: #000000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.cashback-bonus .bonus-amount-badge {
    background-color: #9333ea;
    color: #ffffff;
}

.crypto-bonus .bonus-amount-badge {
    background-color: #2563eb;
    color: #ffffff;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #0a1123, #050811);
    color: #d1d5db;
    border-top: 1px solid #1e2747;
}

.providers-section {
    width: 100%;
}

.providers-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.footer-content {
    padding: 3rem 0;
}

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

.footer-brand {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}

.footer-logo-icon span {
    color: #000000;
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

.footer-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 16rem;
    margin: 0 auto;
}

.footer-stat {
    background: linear-gradient(135deg, #1e2747, #2a3458);
    border-radius: 0.5rem;
    padding: 0.75rem;
    text-align: center;
}

.footer-stat-number {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-stat-label {
    font-size: 0.75rem;
    color: #9ca3af;
}

.footer-links {
    text-align: center;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-title-line {
    width: 0.25rem;
    height: 1.5rem;
    background: linear-gradient(to bottom, #fbbf24, #f59e0b);
    border-radius: 9999px;
    margin-right: 0.75rem;
}

.footer-links-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: #fbbf24;
}

.footer-link-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #fbbf24;
    border-radius: 50%;
    margin-right: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-link:hover .footer-link-dot {
    opacity: 1;
}

.footer-security {
    text-align: center;
}

.license-card {
    background: linear-gradient(135deg, #1e2747, #2a3458);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.license-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.license-link:hover {
    transform: scale(1.05);
}

.license-image {
    height: 4rem;
    width: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.license-info {
    text-align: left;
}

.license-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0;
}

.license-provider {
    color: #fbbf24;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 0;
}

.license-status {
    color: #9ca3af;
    font-size: 0.75rem;
    margin: 0;
}

.security-features {
    padding-top: 1rem;
    border-top: 1px solid #4b5563;
}

.security-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.security-feature:last-child {
    margin-bottom: 0;
}

.security-label {
    color: #9ca3af;
}

.security-status.active {
    color: #10b981;
}

.security-status.required {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid #1e2747;
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
}

.footer-copyright {
    margin-bottom: 1rem;
}

.copyright-text {
    color: #9ca3af;
    font-size: 0.875rem;
    margin: 0;
}

.brand-highlight {
    color: #fbbf24;
    font-weight: 600;
}

.disclaimer-text {
    color: #6b7280;
    font-size: 0.75rem;
    margin: 0.25rem 0 0 0;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.system-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-indicator {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (min-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 640px) {
    .mobile-break {
        display: none;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .games-grid {
        grid-template-columns: repeat(3, 165px);
    }

    .bonuses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-copyright {
        margin-bottom: 0;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .nav {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-background {
        min-height: 40.625rem;
    }

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

    .hero-grid {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }

    .hero-text {
        width: 50%;
        text-align: left;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-bonus {
        width: 50%;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .games-grid {
        grid-template-columns: repeat(5, 165px);
    }

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

    .footer-brand,
    .footer-links,
    .footer-security {
        text-align: left;
    }

    .footer-logo {
        justify-content: flex-start;
    }

    .footer-section-title {
        justify-content: flex-start;
    }

    .footer-links-list {
        align-items: flex-start;
    }

    .footer-link {
        justify-content: flex-start;
    }

    .footer-stats {
        margin: 0;
    }
}

@media (min-width: 1024px) {
    .hero-background {
        min-height: 43.75rem;
    }

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

    .games-grid {
        grid-template-columns: repeat(7, 165px);
    }

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

@media (min-width: 1280px) {
    .hero-background {
        min-height: 50rem;
    }

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0f1631, #1e2747);
    padding: 3rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid #2e4b8f;
}

.page-header-content {
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffc107, #ffca2c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.page-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.page-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffc107;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Game Categories */
.game-categories {
    margin-bottom: 2rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.category-tab {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border: 2px solid transparent;
    background-color: #1e2747;
    color: #9ca3af;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.category-tab:hover {
    color: #ffffff;
    background-color: #2e4b8f;
}

.category-tab.active {
    border-color: #ffc107;
    color: #ffffff;
    background-color: #2e4b8f;
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: 2rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0f1631, #1e2747);
    padding: 3rem 0;
    margin: 3rem 0 2rem 0;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* No Games Message */
.no-games-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: #9ca3af;
    font-size: 1.125rem;
    background-color: rgba(30, 39, 71, 0.3);
    border-radius: 0.5rem;
    border: 1px dashed #2e4b8f;
}

/* Shine Animation */
@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
}

/* Responsive Design for Games Page */
@media (min-width: 640px) {
    .page-title {
        font-size: 3rem;
    }

    .category-tabs {
        gap: 1rem;
    }

    .category-tab {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    .cta-buttons {
        flex-wrap: nowrap;
    }
}

@media (min-width: 768px) {
    .page-stats {
        gap: 3rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .page-title {
        font-size: 3.75rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

/* Disable animations on mobile for better performance */
@media (max-width: 768px) {
    .floating-coin {
        animation: none;
    }

    .coin-1,
    .coin-2,
    .coin-3 {
        display: none;
    }

    .cta-section::before {
        animation: none;
    }

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

    .category-tabs {
        gap: 0.25rem;
    }

    .category-tab {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* Content Section */
.content-section {
    padding: 3rem 0;
    background-color: #0f1629;
    border-top: 1px solid #1e2747;
}

.main-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1a2332;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #2e4b8f;
}

/* Author Info */
.author-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: #0f1629;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #ffc107;
    margin-bottom: 2rem;
}

.author-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-icon {
    width: 32px;
    height: 32px;
    color: #0a1123;
}

.author-details {
    flex: 1;
}

.author-name {
    color: #ffc107;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 0 0.25rem 0;
}

.author-title {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0 0 0.75rem 0;
    font-weight: 500;
}

.author-bio {
    color: #d1d5db;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.author-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.credential-badge {
    background-color: #2e4b8f;
    color: #ffffff;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
}

.main-content h1 {
    color: #ffc107;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.main-content h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #ffc107;
    padding-bottom: 0.5rem;
}

.main-content h3 {
    color: #ffc107;
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem 0;
}

.main-content p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.main-content ul {
    color: #d1d5db;
    margin: 1rem 0;
    padding-left: 2rem;
}

.main-content li {
    margin-bottom: 0.5rem;
}

.main-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #0f1629;
    border-radius: 0.5rem;
    overflow: hidden;
}

.main-content th,
.main-content td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #2e4b8f;
}

.main-content th {
    background-color: #2e4b8f;
    color: #ffffff;
    font-weight: 600;
}

.main-content td {
    color: #d1d5db;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background-color: #0a1123;
    border-top: 1px solid #1e2747;
}

.faq-section h2 {
    color: #ffc107;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.faq-item {
    background-color: #1a2332;
    border: 1px solid #2e4b8f;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ffc107;
    transform: translateY(-2px);
}

.faq-item h2 {
    color: #ffc107;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: left;
}

.faq-item p {
    color: #d1d5db;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design for Content */
@media (max-width: 768px) {
    .author-info {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar {
        align-self: center;
    }

    .author-credentials {
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .main-content {
        padding: 3rem;
    }

    .main-content h1 {
        font-size: 2.5rem;
    }

    .main-content h2 {
        font-size: 1.75rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .content-section {
        padding: 4rem 0;
    }

    .faq-section {
        padding: 4rem 0;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #ffc107, #ffca2c);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #ffca2c, #ffd54f);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
    transform: translateY(-2px);
}

.scroll-to-top:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
}

.scroll-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #0a1123;
    stroke-width: 2.5;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
    }

    .scroll-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* Content Images */
.content-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 2rem auto !important;
    border-radius: 0.5rem;
    display: block !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    float: none !important;
    clear: both;
    position: relative;
}

.main-content .content-image {
    margin: 2rem auto !important;
    display: block !important;
    float: none !important;
}

@media (max-width: 768px) {
    .content-image {
        margin: 1.5rem auto !important;
        max-width: 100%;
    }
}
