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

:root {
    --primary-dark: #2b1234;
    --primary-purple: #6a1b9a;
    --accent-green: #00d084;
    --accent-red: #ff6b6b;
    --accent-gold: #ffd700;
    --text-light: #ffffff;
    --text-dark: #2b1234;
    --bg-light: #f5f5f5;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
    color: var(--text-light);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo a {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.logo img {
    height: 50px;
    width: auto;
}

.logo a:hover {
    transform: scale(1.05);
}

.header-menu {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header-buttons-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.promo-buttons {
    display: flex;
    gap: 1rem;
}

.header-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.header-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.header-button svg {
    width: 20px;
    height: 20px;
}

.promotions-button {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    border-color: var(--accent-gold);
}

.free-money-button {
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.2) 0%, rgba(0, 150, 100, 0.2) 100%);
    border-color: var(--accent-green);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}

.button-border-hover {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.button-border-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.button-border-hover:hover::before {
    opacity: 1;
}

.button-border-hover--green {
    border-color: var(--accent-green);
    background: rgba(0, 208, 132, 0.1);
}

.button-border-hover--green:hover {
    background: var(--accent-green);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.4);
    transform: translateY(-2px);
}

.button-border-hover--red {
    border-color: var(--accent-red);
    background: rgba(255, 107, 107, 0.1);
}

.button-border-hover--red:hover {
    background: var(--accent-red);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    transform: translateY(-2px);
}

/* Navigation Menu */
.menu-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.75rem;
}

.navigation-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link svg {
    width: 24px;
    height: 24px;
}

.nav-link:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.nav-link .lines {
    transition: var(--transition);
}

.nav-link:hover .lines {
    fill: var(--accent-gold);
}

/* Hero Section */
.hero-section {
    background: url('back.jpeg') center center / cover no-repeat;
    color: var(--text-light);
    padding: 3rem 0 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 18, 52, 0.6);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.hero-content p {
    font-size: 2rem;
    margin-bottom: 0;
    margin-top: 3rem;
    font-weight: 600;
    color: var(--text-light);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff9900 100%);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Content Section */
.content-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.content-text-full {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.3;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.text-content {
    color: #333;
    line-height: 1.8;
}

.text-content p {
    font-size: 1.05rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.text-content p strong {
    color: var(--primary-purple);
    font-weight: 700;
}

.sub-heading {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--accent-gold);
    display: inline-block;
}

.bonus-tiers {
    background: linear-gradient(135deg, rgba(106, 27, 154, 0.05) 0%, rgba(43, 18, 52, 0.05) 100%);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.tier-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1.05rem;
}

.tier-item:not(:last-child) {
    border-bottom: 1px solid rgba(106, 27, 154, 0.1);
}

.tier-range {
    font-weight: 700;
    color: var(--primary-purple);
    min-width: 150px;
}

.tier-value {
    color: #444;
    font-weight: 500;
}

.bonus-cta {
    text-align: center;
    margin: 2rem 0;
}

.bonus-cta .btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.image-placeholder {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-purple) 100%);
    color: var(--text-light);
    padding: 4rem 0 0;
    margin-top: 4rem;
}

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

.footer-column h4 {
    margin-bottom: 1.5rem;
}

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

.footer-logo img {
    height: 45px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--text-dark);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-rg-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer-rg-links a {
    font-size: 0.9rem;
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

/* Text Content Section */
.text-content-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Games Section */
.games-section {
    padding: 5rem 0;
    background: white;
}

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

.game-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    padding: 0;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.game-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

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

.game-image svg {
    width: 100%;
    height: 100%;
    display: block;
}

.game-rtp {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 208, 132, 0.95);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.game-rtp::before {
    content: '❄️';
    font-size: 0.9rem;
}

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

.game-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.game-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.btn-play {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff9900 100%);
    border: none;
    border-radius: var(--border-radius);
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

/* Promo Section */
.promo-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.promo-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff9900 100%);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.promo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff4757 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.promo-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.promo-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.promo-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

/* Info Section */
.info-section {
    padding: 5rem 0;
    background: white;
}

.info-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: #666;
}

.info-list li svg {
    width: 24px;
    height: 24px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(106, 27, 154, 0.4);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Payment Section */
.payment-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

@media (min-width: 1200px) {
    .payment-grid {
        grid-template-columns: repeat(8, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .payment-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.payment-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.payment-card svg {
    margin-bottom: 1rem;
}

.payment-card p {
    color: #666;
    font-weight: 500;
    font-size: 0.9rem;
}

.payment-text-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.payment-sub-heading {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--accent-gold);
    display: inline-block;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,215,0,0.05)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .header-top {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .header-buttons-group {
        flex-direction: column;
        gap: 1rem;
    }

    .promo-buttons {
        display: none;
    }

    .menu-bottom-row {
        display: none;
    }

    .header-button {
        width: 100%;
        justify-content: center;
    }

    .navigation-list {
        display: none;
    }

    .header-menu {
        justify-content: center;
    }

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

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

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

@media (max-width: 768px) {
    /* Header - Compact */
    .header {
        padding: 0.6rem 0;
    }

    .header-top {
        gap: 0.75rem;
    }

    .logo {
        text-align: center;
    }

    .logo-image {
        height: 42px;
    }

    .language-selector {
        display: none;
    }

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

    .content-text-full {
        padding: 2rem;
    }

    .main-heading {
        font-size: 1.75rem;
        text-align: left;
    }

    .sub-heading {
        font-size: 1.5rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .bonus-tiers {
        padding: 1.25rem 1.5rem;
    }

    .tier-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .tier-range {
        min-width: auto;
    }

    .bonus-cta {
        margin: 1.5rem 0;
    }

    .bonus-cta .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }

    .payment-text-content {
        padding: 2rem;
    }

    .payment-sub-heading {
        font-size: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .hero-section {
        padding: 2.5rem 0 6rem 0;
        min-height: 550px;
    }

    .hero-content {
        padding-bottom: 3rem;
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

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

    .hero-content p {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

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

    .footer-column:first-child {
        grid-column: 1 / -1;
    }

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

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .auth-buttons {
        flex-direction: row;
        gap: 0.65rem;
        justify-content: center;
    }

    .button-border-hover {
        flex: 1;
        max-width: 160px;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .logo-image {
        height: 45px;
    }

    .header {
        padding: 0.75rem 0;
    }

    .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
    }

    .games-grid,
    .promo-grid {
        gap: 1.5rem;
    }

    .game-card,
    .promo-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .game-card {
        padding: 0;
    }

    .game-info {
        padding: 1.5rem;
    }

    .game-rtp {
        padding: 0.35rem 0.7rem;
        font-size: 0.72rem;
    }

    .info-list li {
        font-size: 1rem;
        padding: 0.75rem 0;
    }

    .payment-card {
        padding: 1.5rem 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .btn-large {
        width: 100%;
    }

    .footer {
        padding: 3rem 0 0;
        margin-top: 3rem;
    }

    .footer-grid {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .footer-logo img {
        height: 38px;
    }

    .footer-disclaimer {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    .container {
        padding: 0 1rem;
    }

    /* Header - Compact */
    .header {
        padding: 0.5rem 0;
    }

    .header-top {
        gap: 0.6rem;
    }

    .logo-image {
        height: 38px;
    }

    .auth-buttons {
        gap: 0.5rem;
    }

    .button-border-hover {
        max-width: 140px;
        padding: 0.55rem 0.85rem;
        font-size: 0.8rem;
    }

    /* Hero Section */
    .hero-section {
        padding: 1.5rem 0 4rem 0;
        min-height: 450px;
    }

    .hero-content {
        padding-bottom: 2rem;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        margin-top: 1rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1.15rem;
        margin-top: 1rem;
    }

    .hero-buttons {
        max-width: 300px;
        gap: 0.65rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Text Content */
    .content-text-full {
        padding: 1.25rem;
        border-radius: 8px;
    }

    .main-heading {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
    }

    .sub-heading {
        font-size: 1.2rem;
        margin-top: 1.75rem;
    }

    .text-content p {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .bonus-tiers {
        padding: 0.85rem;
        margin: 1.25rem 0;
    }

    .tier-item {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }

    .bonus-cta {
        margin: 1.25rem 0;
    }

    .bonus-cta .btn-primary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

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

    /* Games & Promo Cards */
    .games-grid,
    .promo-grid {
        gap: 1.25rem;
    }

    .game-card,
    .promo-card {
        max-width: 100%;
    }

    .game-card {
        padding: 0;
    }

    .game-info {
        padding: 1.25rem;
    }

    .game-rtp {
        padding: 0.35rem 0.65rem;
        font-size: 0.7rem;
        top: 8px;
        left: 8px;
    }

    .game-rtp::before {
        font-size: 0.8rem;
    }

    .promo-card {
        padding: 1.25rem;
    }

    .promo-value {
        font-size: 1.65rem;
    }

    .promo-badge {
        padding: 0.4rem 0.85rem;
        font-size: 0.75rem;
    }

    /* Info Section */
    .info-list li {
        font-size: 0.9rem;
        padding: 0.65rem 0;
    }

    .stat-card {
        padding: 1.25rem;
    }

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

    .stat-icon {
        font-size: 2rem;
    }

    /* Payment Section */
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.85rem;
    }

    .payment-card {
        padding: 1rem 0.65rem;
    }

    .payment-card svg {
        width: 50px;
        height: 34px;
    }

    .payment-card p {
        font-size: 0.8rem;
    }

    .payment-text-content {
        padding: 1.25rem;
        border-radius: 8px;
    }

    .payment-sub-heading {
        font-size: 1.2rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 4rem 0;
    }

    .cta-content h2 {
        font-size: 1.65rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        max-width: 300px;
        gap: 0.65rem;
    }

    .btn-large {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 0;
        margin-top: 2.5rem;
    }

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

    .footer-column:first-child {
        grid-column: 1;
    }

    .footer-logo img {
        height: 32px;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-menu a {
        font-size: 0.9rem;
    }

    .footer-rg-text {
        font-size: 0.85rem;
    }

    .footer-rg-links a {
        font-size: 0.85rem;
    }

    .footer-disclaimer {
        padding: 1rem;
    }

    .footer-disclaimer p {
        font-size: 0.8rem;
    }

    .footer-bottom {
        padding: 1.25rem 0;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }

    .footer-bottom-links {
        font-size: 0.85rem;
        gap: 0.75rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-wrapper {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--accent-gold);
    color: var(--text-dark);
}

::-moz-selection {
    background: var(--accent-gold);
    color: var(--text-dark);
}

/* Touch-friendly & Mobile Optimization */
@media (hover: none) and (pointer: coarse) {
    /* Touch devices */
    .btn,
    .button-border-hover,
    .nav-link,
    .header-button,
    .game-card,
    .promo-card,
    .payment-card {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    .btn:active,
    .button-border-hover:active {
        transform: scale(0.97);
    }

    /* Increase touch targets */
    .nav-link,
    .header-button,
    .button-border-hover {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Prevent zoom on input focus for mobile */
@media (max-width: 768px) {
    input,
    textarea,
    select {
        font-size: 16px !important;
    }
}
