/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --dark-bg: #1a1a2e;
    --darker-bg: #0f0f1e;
    --text-light: #ffffff;
    --text-gray: #b8b8b8;
    --accent-gold: #FFD700;
    --success-green: #4CAF50;
    --border-color: #2d2d44;
    --card-bg: #16213e;
    --hover-bg: #2a2a3e;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Prevent horizontal overflow for all images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-top: 2px solid var(--primary-color);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.cookie-content p {
    margin-bottom: 15px;
    color: var(--text-gray);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Header */
.header {
    background: var(--dark-bg);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-list a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-list a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 6px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.btn-register {
    background: linear-gradient(135deg, var(--primary-color), #ff5252);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5);
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-color), #ff5252);
    padding: 15px 0;
}

.promo-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--text-light);
    gap: 20px;
}

.promo-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.promo-icon {
    font-size: 24px;
}

.promo-text {
    font-weight: 600;
    font-size: 16px;
}

.promo-badges {
    display: flex;
    gap: 10px;
}

.promo-badges img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* Main Content */
.main-content {
    padding: 40px 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.hero-section {
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 40px;
    position: relative;
    background-image: url('../images/winnita casino banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border-radius: 20px;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.85) 0%, rgba(26, 26, 46, 0.75) 50%, rgba(15, 15, 30, 0.85) 100%);
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 2px 10px rgba(255, 107, 107, 0.3));
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    line-height: 1.8;
}

.disclaimer {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-size: 16px;
    min-height: 56px;
    white-space: nowrap;
    text-align: center;
    position: relative;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    backdrop-filter: blur(10px);
}

.btn-primary {
    background: linear-gradient(135deg, #ff3366, #ff5555, #ff7777, #ff9999);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: #ffffff !important;
    box-shadow: 
        0 8px 32px rgba(255, 51, 102, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.2),
        0 0 30px rgba(255, 51, 102, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 0 12px rgba(255, 255, 255, 0.6),
        0 0 20px rgba(255, 255, 255, 0.4),
        0 4px 4px rgba(0, 0, 0, 0.5);
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 48px rgba(255, 51, 102, 0.7),
        0 0 0 4px rgba(255, 255, 255, 0.4),
        0 0 40px rgba(255, 51, 102, 0.6),
        inset 0 2px 6px rgba(255, 255, 255, 0.4),
        inset 0 -2px 6px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ff2255, #ff4477, #ff6699, #ff88aa);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff !important;
    text-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.9),
        0 0 18px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 255, 255, 0.6),
        0 5px 6px rgba(0, 0, 0, 0.6);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 
        0 6px 24px rgba(255, 51, 102, 0.5),
        0 0 0 3px rgba(255, 255, 255, 0.3),
        0 0 25px rgba(255, 51, 102, 0.4),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0.05));
    color: var(--text-light);
    border: 2px solid var(--primary-color);
    box-shadow: 
        0 4px 20px rgba(255, 107, 107, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color), #ff5252);
    color: var(--text-light);
    box-shadow: 
        0 8px 32px rgba(255, 107, 107, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-small {
    padding: 12px 24px;
    font-size: 14px;
    min-height: 44px;
    border-radius: 25px;
    font-weight: 700;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
}

/* Table of Contents */
.table-of-contents {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.toc-toggle {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    width: 100%;
    text-align: left;
}

.toc-list {
    list-style: none;
    display: none;
}

.toc-list.show {
    display: block;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.toc-list a:hover {
    color: var(--primary-color);
}

/* Official Site Card */
.official-site-card {
    background: linear-gradient(135deg, var(--card-bg), var(--hover-bg));
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.card-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.card-content img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.card-info {
    flex: 1;
}

.card-info strong {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.rating {
    display: block;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.card-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.feature {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.feature-label {
    color: var(--text-gray);
}

.feature-value {
    color: var(--success-green);
    font-weight: 600;
}

/* Content Sections */
.content-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.content-section p {
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

.content-section strong {
    color: var(--text-light);
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Tables */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    display: table;
}

.info-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 30px 0;
}

.info-table thead {
    background: var(--primary-color);
}

.info-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-light);
}

.info-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-gray);
}

.info-table tbody tr:hover {
    background: var(--hover-bg);
}

.info-table tbody tr:last-child td {
    border-bottom: none;
}

.section-note {
    font-style: italic;
    color: var(--text-gray);
    margin: 20px 0;
    text-align: center;
}

/* Offers Section */
.offers-section {
    margin-bottom: 60px;
}

.offers-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.offer-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
}

.offer-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.2);
}

.offer-card img {
    width: 100%;
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    display: block;
}

.offer-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.offer-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.offer-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.offers-section > .btn {
    display: block;
    margin: 30px auto;
    text-align: center;
}

/* Games Section */
.games-section {
    margin: 40px 0;
}

.games-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.game-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.2);
}

.game-card img {
    width: 100%;
    max-width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.game-info {
    padding: 15px;
    text-align: center;
}

.game-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.game-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Sports Carousel */
.sports-carousel {
    position: relative;
    margin: 30px 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: #ff5252;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -20px;
}

.carousel-btn.next {
    right: -20px;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.sports-grid::-webkit-scrollbar {
    height: 6px;
}

.sports-grid::-webkit-scrollbar-track {
    background: var(--card-bg);
    border-radius: 3px;
}

.sports-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.sport-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.sport-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.sport-card a {
    display: block;
    text-decoration: none;
    color: var(--text-light);
}

.sport-card img {
    width: 100%;
    max-width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

.sport-card span {
    display: block;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
}

/* Images */
.app-image,
.registration-image,
.security-image {
    margin: 30px 0;
    text-align: center;
}

.app-image img,
.registration-image img,
.security-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.app-image,
.registration-image,
.security-image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Security List */
.security-list {
    list-style: none;
    margin: 30px 0;
}

.security-list li {
    background: var(--card-bg);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--success-green);
}

.security-list strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 15px;
    z-index: 999;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    max-width: 250px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-cta a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-light);
}

.floating-cta img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.cta-info {
    flex: 1;
}

.cta-rating {
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.cta-bonus {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background: var(--card-bg);
    padding: 60px 0;
    margin-top: 60px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: var(--dark-bg);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--hover-bg);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

.faq-answer.show {
    max-height: 500px;
    padding: 20px;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 2px solid var(--border-color);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    margin-bottom: 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-text {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-text p {
    margin-bottom: 15px;
}

.footer-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-links a {
    display: block;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.1);
}

.social-links img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.license-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.license-badges img {
    height: 50px;
    width: auto;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-cta {
    margin: 30px 0;
}

.footer-cta-link {
    display: block;
    background: linear-gradient(135deg, var(--primary-color), #ff5252);
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-light);
    transition: transform 0.3s;
}

.footer-cta-link:hover {
    transform: translateY(-3px);
}

.footer-cta-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.footer-cta-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.footer-cta-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

.responsible-gaming-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.responsible-gaming-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.responsible-gaming-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
    font-size: 0.9rem;
}

.scroll-top {
    background: var(--primary-color);
    border: none;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }

    * {
        max-width: 100%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 15, 30, 0.98);
        backdrop-filter: blur(10px);
        padding: 80px 20px 20px;
        width: 100%;
        max-width: 100vw;
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    .nav.active {
        display: block;
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-list a {
        display: block;
        padding: 18px 15px;
        font-size: 16px;
        font-weight: 600;
        color: var(--text-light);
        transition: all 0.3s;
        border-radius: 8px;
        margin: 5px 0;
    }

    .nav-list a:hover {
        background: rgba(255, 107, 107, 0.1);
        color: var(--primary-color);
        padding-left: 20px;
    }

    .nav-list a::after {
        display: none;
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .hero-section {
        padding: 60px 15px;
        min-height: 400px;
        background-attachment: scroll;
        border-radius: 15px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
        word-wrap: break-word;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 15px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .card-content {
        flex-direction: column;
        text-align: center;
    }

    .card-features {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        display: none;
    }

    .sports-carousel {
        overflow-x: hidden;
        width: 100%;
    }

    .sports-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .floating-cta {
        bottom: 10px;
        right: 10px;
        max-width: calc(100vw - 20px);
        width: auto;
        min-width: 200px;
        padding: 12px;
    }

    .floating-cta img {
        width: 50px;
        height: 50px;
    }

    .promo-banner {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .promo-content {
        flex-direction: column;
        width: 100%;
    }

    .promo-text {
        font-size: 14px;
        word-wrap: break-word;
    }

    .content-section .btn {
        width: 100%;
        max-width: 100%;
        padding: 18px 28px;
        font-size: 17px;
        margin: 15px 0;
        min-height: 58px;
    }

    .btn-primary {
        box-shadow: 
            0 8px 35px rgba(255, 51, 102, 0.6),
            0 0 0 4px rgba(255, 255, 255, 0.3),
            0 0 30px rgba(255, 51, 102, 0.5),
            inset 0 2px 4px rgba(255, 255, 255, 0.3),
            inset 0 -2px 4px rgba(0, 0, 0, 0.2);
        color: #ffffff !important;
        text-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.9),
            0 0 15px rgba(255, 255, 255, 0.7),
            0 0 25px rgba(255, 255, 255, 0.5),
            0 4px 5px rgba(0, 0, 0, 0.6);
        font-weight: 900;
        letter-spacing: 1.2px;
    }

    .btn-secondary {
        box-shadow: 
            0 6px 25px rgba(255, 107, 107, 0.3),
            inset 0 1px 2px rgba(255, 255, 255, 0.1);
    }

    .info-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .info-table table {
        min-width: 600px;
    }

    .header-content {
        flex-wrap: nowrap;
        width: 100%;
        position: relative;
    }

    .header-actions {
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .btn-register {
        padding: 10px 18px;
        font-size: 14px;
        white-space: nowrap;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }

    .hero-section {
        padding: 50px 15px;
        min-height: 350px;
        background-attachment: scroll;
        border-radius: 10px;
    }

    .hero-section h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .hero-description {
        font-size: 1rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .content-section h3 {
        font-size: 1.2rem;
        word-wrap: break-word;
    }

    .info-table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .info-table table {
        min-width: 500px;
    }

    .info-table th,
    .info-table td {
        padding: 8px;
        word-wrap: break-word;
    }

    .btn {
        padding: 16px 24px;
        font-size: 16px;
        min-height: 56px;
        width: 100%;
        max-width: 100%;
        border-radius: 30px;
    }

    .btn-primary {
        box-shadow: 
            0 10px 40px rgba(255, 51, 102, 0.7),
            0 0 0 5px rgba(255, 255, 255, 0.4),
            0 0 35px rgba(255, 51, 102, 0.6),
            inset 0 2px 5px rgba(255, 255, 255, 0.35),
            inset 0 -2px 5px rgba(0, 0, 0, 0.25);
        font-size: 17px;
        font-weight: 900;
        color: #ffffff !important;
        text-shadow: 
            0 3px 12px rgba(0, 0, 0, 1),
            0 0 18px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.6),
            0 5px 6px rgba(0, 0, 0, 0.7);
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .btn-secondary {
        box-shadow: 
            0 6px 28px rgba(255, 107, 107, 0.35),
            inset 0 1px 3px rgba(255, 255, 255, 0.15);
    }

    .btn-small {
        padding: 10px 16px;
        font-size: 13px;
        min-height: 38px;
    }

    .hero-description {
        font-size: 1rem;
        word-wrap: break-word;
    }

    .promo-text {
        font-size: 13px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .game-card {
        min-width: 0;
    }

    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .floating-cta {
        max-width: calc(100vw - 20px);
        width: calc(100vw - 20px);
        right: 10px;
        left: 10px;
    }
}

