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

:root {
    --primary-color: #FF8C42;
    --primary-dark: #FF6B1A;
    --secondary-color: #4CAF50;
    --accent-color: #FFD700;
    --bg-light: #F5F7FA;
    --bg-white: #FFFFFF;
    --bg-gradient: linear-gradient(135deg, #5B9BD5 0%, #4A8BC2 100%);
    --text-dark: #2C3E50;
    --text-gray: #5A6C7D;
    --text-light: #7A8B9C;
    --border-color: #E1E8ED;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --danger-color: #FF5252;
    --gold-color: #D4AF37;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header */
.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    gap: 1.5rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold-color);
    text-decoration: none;
    text-transform: uppercase;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 0.85;
}

.logo-icon {
    font-size: 2.2rem;
    animation: pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.logo-text {
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Region Selector */
.region-selector {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.3rem;
    border-radius: 30px;
    border: 1px solid var(--border-color);
}

.region-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: transparent;
    color: var(--text-gray);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
}

.region-btn:hover {
    background: rgba(255, 140, 66, 0.1);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.region-btn.active {
    background: var(--primary-color);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

.flag {
    font-size: 1.3rem;
}

/* CTA Buttons */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #FF6B1A 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.5);
    border: none;
    cursor: pointer;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.6);
    background: linear-gradient(135deg, #FF9D5C 0%, #FF8C42 100%);
}

.cta-header {
    padding: 0.6rem 1.3rem;
    font-size: 0.95rem;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    font-weight: 800;
}

.cta-hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.5);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
    font-weight: 900;
}

.cta-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.6);
}

.cta-secondary {
    background: #FFFFFF;
    color: var(--text-dark);
    border: 3px solid #FFFFFF;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
    text-shadow: none;
    font-weight: 700;
}

.cta-secondary:hover {
    background: #FFFFFF;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.6);
    transform: translateY(-3px) scale(1.02);
}

.cta-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
    font-weight: 900;
}

.cta-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.5);
}

.cta-text {
    white-space: nowrap;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.cta-section {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 15px;
    border: 2px dashed var(--primary-color);
}

/* Hero Section */
.hero {
    background: url('back1.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #FFFFFF;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 3px solid rgba(255, 140, 66, 0.3);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.4);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 600;
}

/* Quick Navigation */
.quick-nav {
    background: var(--bg-white);
    padding: 1rem 0;
    position: sticky;
    top: 75px;
    z-index: 999;
    border-bottom: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.quick-nav-items {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--bg-light);
}

.quick-nav-items::-webkit-scrollbar {
    height: 6px;
}

.quick-nav-items::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 3px;
}

.quick-nav-items::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.quick-nav-link {
    white-space: nowrap;
    padding: 0.6rem 1.5rem;
    background: var(--bg-light);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 600;
}

.quick-nav-link:hover {
    background: rgba(255, 140, 66, 0.1);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    padding: 3rem 0;
    background: var(--bg-light);
}

.content-wrapper {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.content-section {
    margin-bottom: 4rem;
    scroll-margin-top: 150px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    font-weight: 800;
}

.content-section h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-section h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.content-section p {
    color: var(--text-gray);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    color: var(--text-gray);
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-dark);
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
    padding: 2rem 2.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* Info Boxes */
.info-box,
.warning-box,
.highlight-box,
.terms-box,
.limits-box,
.help-box {
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 5px solid;
    box-shadow: var(--shadow-sm);
}

.info-box {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(76, 175, 80, 0.04) 100%);
    border-color: var(--success-color);
}

.info-box h3 {
    color: var(--success-color);
    margin-top: 0;
    font-weight: 700;
}

.warning-box {
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.08) 0%, rgba(255, 82, 82, 0.04) 100%);
    border-color: var(--danger-color);
}

.warning-box h3 {
    color: var(--danger-color);
    margin-top: 0;
    font-weight: 700;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.12) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-color: var(--primary-color);
    text-align: center;
    border: 2px solid var(--primary-color);
    border-left-width: 5px;
}

.highlight-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 2rem;
    font-weight: 800;
}

.terms-box,
.limits-box {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.06) 0%, rgba(212, 175, 55, 0.04) 100%);
    border-color: var(--primary-color);
}

.terms-box h3,
.limits-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-weight: 700;
}

.help-box {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-color: var(--success-color);
    text-align: center;
    border: 2px solid var(--success-color);
    border-left-width: 5px;
}

.help-box h3 {
    color: var(--success-color);
    margin-top: 0;
    font-weight: 700;
}

/* Bonus Cards */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.bonus-image-wrapper {
    margin: 2.5rem 0;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.bonus-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 140, 66, 0.4);
    border-color: var(--gold-color);
}

.bonus-image-wrapper a {
    display: block;
    cursor: pointer;
}

.bonus-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    transition: transform 0.3s ease;
}

.bonus-image-wrapper:hover .bonus-image {
    transform: scale(1.02);
}

/* Pokies Image */
.pokies-image-wrapper {
    margin: 2.5rem 0;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.pokies-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 140, 66, 0.4);
    border-color: var(--gold-color);
}

.pokies-image-wrapper a {
    display: block;
    cursor: pointer;
}

.pokies-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    transition: transform 0.3s ease;
}

.pokies-image-wrapper:hover .pokies-image {
    transform: scale(1.02);
}

.bonus-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 18px;
    border: 3px solid var(--border-color);
    border-top: 5px solid var(--primary-color);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--gold-color) 100%);
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 45px rgba(255, 140, 66, 0.25);
}

.bonus-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-color) 100%);
    color: #FFFFFF;
    font-size: 1.6rem;
    font-weight: 900;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
}

.bonus-card h3 {
    margin: 1rem 0;
    color: var(--text-dark);
    font-weight: 700;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

.bonus-spins {
    font-size: 1.25rem;
    color: var(--success-color);
    font-weight: 700;
}

/* Steps List */
.steps-list {
    counter-reset: step-counter;
    list-style: none;
    margin-left: 0;
}

.steps-list li {
    counter-increment: step-counter;
    padding-left: 3.5rem;
    position: relative;
    margin-bottom: 1.8rem;
    color: var(--text-gray);
}

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: -2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-color) 100%);
    color: #FFFFFF;
    font-weight: 800;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

/* Game Tags */
.games-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.game-tag {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    border: 2px solid var(--primary-color);
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-tag:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

/* Payment Grid */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.payment-method {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.payment-method:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.payment-method h4 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.payment-method p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.payment-time {
    display: block;
    font-size: 0.9rem;
    color: var(--success-color);
    margin-top: 0.75rem;
    font-weight: 600;
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.support-method {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.support-method:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.support-method h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.support-method p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.warning-text {
    color: var(--danger-color);
    font-weight: 700;
}

/* VIP Benefits */
.vip-benefits {
    margin: 2rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.benefit-item {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1) 0%, rgba(212, 175, 55, 0.08) 100%);
    padding: 1.2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    text-align: center;
    transition: all 0.3s ease;
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.benefit-item:hover {
    background: var(--primary-color);
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.promo-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.promo-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 35px rgba(255, 140, 66, 0.2);
    transform: translateY(-5px);
}

.promo-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-weight: 700;
}

.promo-card p,
.promo-card ul {
    color: var(--text-gray);
}

.promo-card ul {
    margin-left: 1.5rem;
}

/* Complaints List */
.complaints-list {
    margin: 2rem 0;
}

.complaint-item {
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.08) 0%, rgba(255, 82, 82, 0.03) 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--danger-color);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.complaint-item h3 {
    color: var(--danger-color);
    margin-top: 0;
    font-weight: 700;
}

.complaint-item p {
    color: var(--text-gray);
}

/* Comparison Table */
.comparison-table {
    margin: 2rem 0;
}

.comparison-row {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    border-left-width: 5px;
    transition: all 0.3s ease;
}

.comparison-row:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.comparison-row h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-weight: 700;
}

.comparison-row p {
    color: var(--text-gray);
}

/* Registration Steps */
.registration-steps {
    background: rgba(26, 26, 46, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.registration-steps li ul {
    margin-top: 0.5rem;
}

/* Verdict Section */
.verdict-section {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
}

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

.pros-box {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--success-color);
    box-shadow: var(--shadow-sm);
}

.pros-box h3 {
    color: var(--success-color);
    margin-top: 0;
    font-weight: 800;
}

.pros-box ul li {
    color: var(--text-dark);
}

.cons-box {
    background: linear-gradient(135deg, rgba(255, 82, 82, 0.1) 0%, rgba(255, 82, 82, 0.05) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--danger-color);
    box-shadow: var(--shadow-sm);
}

.cons-box h3 {
    color: var(--danger-color);
    margin-top: 0;
    font-weight: 800;
}

.cons-box ul li {
    color: var(--text-dark);
}

.final-thoughts {
    margin-top: 3rem;
}

.final-thoughts h3 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
}

.final-thoughts p {
    color: var(--text-dark);
}

.signature {
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-top: 2rem;
    text-align: center;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #1a1a1a;
    border-top: 3px solid var(--primary-color);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-intro {
    max-width: 600px;
    margin: 0 auto;
}

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

.footer-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2) drop-shadow(0 2px 6px rgba(212, 175, 55, 0.4));
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 700;
}

.footer-section p {
    color: #B0B0B0;
    line-height: 1.7;
    font-size: 0.95rem;
}


.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

.footer-organizations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
}

.org-section h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.org-logos {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.org-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.org-item:hover {
    background: rgba(255, 140, 66, 0.1);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.org-item a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.org-badge {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.age-badge {
    background: var(--danger-color);
    color: #FFFFFF;
    font-weight: 900;
    font-size: 1rem;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-style: normal;
}

.org-name {
    color: #B0B0B0;
    font-size: 0.95rem;
    font-weight: 600;
}

.org-item:hover .org-name {
    color: var(--primary-color);
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        background: url('back_mob.jpg') center center;
        background-size: cover;
        background-attachment: scroll;
    }

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

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

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

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

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
    }

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

    .quick-nav {
        top: 70px;
    }

    .logo-image {
        height: 50px;
    }

    .region-selector {
        flex-direction: column;
        gap: 0.3rem;
    }

    .region-btn {
        justify-content: center;
    }

    .nav {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

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

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-hero,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .bonus-grid,
    .payment-grid,
    .support-grid,
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .bonus-image-wrapper,
    .pokies-image-wrapper {
        margin: 2rem 0;
        border-width: 2px;
    }

    .verdict-pros-cons {
        grid-template-columns: 1fr;
    }

    .verdict-section {
        padding: 2rem 1.5rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2.5rem 0;
        background-attachment: scroll;
    }

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

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

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .content-wrapper {
        padding: 1.5rem;
    }

    .content-section {
        margin-bottom: 2.5rem;
    }

    .content-section h2 {
        font-size: 1.7rem;
    }

    .content-section h3 {
        font-size: 1.3rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-image {
        height: 50px;
    }

    .footer-logo-image {
        height: 35px;
    }

    .bonus-card,
    .promo-card,
    .payment-method {
        padding: 1.5rem;
    }

    .info-box,
    .warning-box,
    .highlight-box,
    .terms-box {
        padding: 1.5rem;
    }

    .org-item {
        padding: 0.6rem 0.8rem;
    }

    .org-badge {
        font-size: 1.3rem;
    }

    .org-name {
        font-size: 0.85rem;
    }

    .cta-header {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .cta-hero {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .cta-large {
        padding: 1rem 1.8rem;
        font-size: 1.05rem;
    }

    .cta-text {
        font-size: 0.95em;
    }

    .cta-section {
        padding: 1.5rem 1rem;
    }

    .modal-content {
        max-width: 95%;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-text {
        font-size: 1rem;
    }

    .cta-modal {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

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

/* Selection */
::selection {
    background: var(--primary-color);
    color: #FFFFFF;
}

::-moz-selection {
    background: var(--primary-color);
    color: #FFFFFF;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    transition: all 0.3s ease;
}

.modal.active .modal-overlay {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: #FFFFFF;
    max-width: 500px;
    width: 90%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 1;
    transform: translateY(50px) scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal.active .modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #FFFFFF;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--danger-color);
    transform: rotate(90deg);
}

.modal-image {
    width: 100%;
    overflow: hidden;
}

.modal-image img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cta-modal {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Additional Enhancements */
strong {
    color: var(--text-dark);
    font-weight: 700;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-gray);
}

/* Back to top button styling */
button {
    font-family: inherit;
}

/* Link styling in content */
.content-section a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: var(--gold-color);
}

/* Partner links - mask affiliate URLs */
[data-partner-link] {
    cursor: pointer;
}

[data-partner-link]:hover {
    text-decoration: none;
}

