:root {
    --gold: #FFD700;
    --gold-light: #FFED4E;
    --gold-dark: #B8860B;
    --dark-bg: #0a0118;
    --dark-secondary: #1a0f2e;
    --dark-card: #2a1a4a;
    --purple: #7c3aed;
    --purple-light: #a78bfa;
    --purple-dark: #5b21b6;
    --text-primary: #ffffff;
    --text-secondary: #d1c4e9;
    --success: #10b981;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    background: rgba(10, 1, 24, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(255, 215, 0, 0.15);
    box-shadow: var(--shadow-md);
}

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-lg);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

.logo:hover {
    filter: drop-shadow(0 3px 6px rgba(255, 215, 0, 0.5));
    transform: scale(1.02);
}

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

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: var(--transition);
    border-radius: 2px;
}

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

.header-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.875rem 2.25rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: inline-block;
    text-align: center;
    min-height: 48px;
    line-height: 1.5;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

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

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

.btn:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: var(--text-primary);
    border: 2px solid var(--purple-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 3px solid var(--gold);
    font-weight: 700;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.btn-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark-bg);
    font-size: 1.15rem;
    padding: 1.125rem 2.75rem;
    font-weight: 900;
    border: none;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.5);
    filter: brightness(1.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1002;
}

.hamburger span {
    width: 28px;
    height: 4px;
    background: var(--gold);
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: var(--spacing-xl) var(--spacing-sm);
    background: linear-gradient(135deg, #0a0118 0%, #1a0f2e 50%, #2a1544 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

.canada-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #ffffff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.2));
}

.hero-content .subheadline {
    font-size: 1.65rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-weight: 400;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 500px;
    max-height: 500px;
}

/* Canadian Maple Leaf Decorations */
.maple-leaf {
    position: absolute;
    font-size: 4rem;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    color: #dc2626;
    filter: blur(1px);
    animation: float 20s infinite ease-in-out;
}

.maple-leaf-1 {
    top: 10%;
    left: 5%;
    font-size: 5rem;
    animation-delay: 0s;
}

.maple-leaf-2 {
    top: 60%;
    right: 8%;
    font-size: 4.5rem;
    animation-delay: 7s;
    opacity: 0.06;
}

.maple-leaf-3 {
    bottom: 15%;
    left: 15%;
    font-size: 3.5rem;
    animation-delay: 3s;
}

.maple-leaf-4 {
    top: 20%;
    right: 10%;
    font-size: 4rem;
    animation-delay: 5s;
    opacity: 0.07;
}

.maple-leaf-5 {
    bottom: 10%;
    right: 12%;
    font-size: 5.5rem;
    animation-delay: 10s;
}

.maple-leaf::before {
    content: '🍁';
}

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 6px rgba(255, 215, 0, 0.3));
}

/* Bonuses Section */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.bonus-card {
    background: var(--dark-card);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 3px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.bonus-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        rgba(220, 38, 38, 0.3) 0%,
        rgba(255, 215, 0, 0.3) 50%,
        rgba(220, 38, 38, 0.3) 100%);
    opacity: 0.6;
    transition: var(--transition);
}

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

.bonus-card:hover::after {
    opacity: 1;
    height: 5px;
}

.bonus-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(220, 38, 38, 0.15);
    border-color: var(--gold);
}

.canada-corner-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.2) 0%, rgba(255, 215, 0, 0.15) 100%);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    border: 1.5px solid rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(10px);
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(220, 38, 38, 0.2);
    transition: var(--transition);
}

.bonus-card:hover .canada-corner-badge {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.bonus-icon {
    font-size: 4.5rem;
    margin-bottom: var(--spacing-sm);
}

.bonus-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    color: var(--gold);
    font-weight: 800;
}

.bonus-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* About Section */
.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.about-row:nth-child(even) .about-content {
    order: 2;
}

.about-content h3 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--gold);
    font-weight: 800;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(255, 215, 0, 0.15) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-md);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

/* CTA Block */
.cta-block {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    padding: var(--spacing-lg) var(--spacing-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    box-shadow: var(--shadow-lg);
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.cta-block h2 {
    font-size: 2.75rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

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

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

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.game-card {
    position: relative;
    height: 320px;
    background: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.game-card:hover::after {
    left: 100%;
}

.game-card:hover {
    transform: scale(1.08);
    border-color: var(--gold);
    box-shadow: var(--shadow-xl);
}

.game-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(255, 215, 0, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--gold);
    font-size: 1.75rem;
    font-weight: 900;
}

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

/* SEO Text */
.seo-text {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-top: var(--spacing-md);
    font-size: 1.05rem;
}

.seo-text h3 {
    color: var(--gold);
    margin-bottom: var(--spacing-sm);
    font-size: 1.75rem;
    font-weight: 800;
}

.seo-text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

/* Providers Grid */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.provider-card {
    background: var(--dark-card);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    border: 3px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    cursor: pointer;
    color: var(--text-secondary);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.provider-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.provider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 1px;
}

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

.provider-card:hover {
    transform: scale(1.12);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    color: var(--gold);
}

/* Payment Table */
.payment-table-wrapper {
    overflow-x: auto;
    margin-bottom: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.payment-table thead {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
}

.payment-table th,
.payment-table td {
    padding: 1.25rem;
    text-align: left;
}

.payment-table th {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    color: var(--text-primary);
}

.payment-table tbody tr {
    border-bottom: 2px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.payment-table tbody tr:hover {
    background: rgba(124, 58, 237, 0.15);
}

.payment-table td {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 500;
}

.payment-logo {
    width: 70px;
    height: 45px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.btn-small {
    padding: 0.625rem 1.75rem;
    font-size: 0.9rem;
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-md);
}

.info-table tr {
    border-bottom: 2px solid rgba(255, 215, 0, 0.1);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 1.25rem;
}

.info-table td:first-child {
    font-weight: 800;
    color: var(--gold);
    width: 30%;
    background: rgba(124, 58, 237, 0.15);
    font-size: 1.05rem;
}

.info-table td:last-child {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: var(--dark-secondary);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 3px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-column h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--gold);
    font-weight: 800;
    font-size: 1.25rem;
}

.footer-column p,
.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.625rem;
    transition: var(--transition);
    font-size: 1.05rem;
    font-weight: 500;
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.trust-badges {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(30, 20, 60, 0.3));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.trust-badge {
    flex: 1;
    min-width: 0;
    height: 60px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: var(--transition);
    color: var(--gold);
    overflow: hidden;
    padding: 8px;
}

.trust-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.trust-badge:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.responsible-gaming {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    margin-top: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(30, 20, 60, 0.3));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.responsible-logo {
    flex: 1;
    min-width: 0;
    height: 60px;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    text-align: center;
    text-decoration: none;
    color: var(--gold);
    transition: var(--transition);
    border: 2px solid rgba(255, 215, 0, 0.2);
    font-weight: 600;
    overflow: hidden;
    padding: 8px;
}

.responsible-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.responsible-logo:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: var(--dark-card);
    border: 3px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
}

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

.testimonial-header {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold);
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.testimonial-rating {
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-text::before {
    content: '"';
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.03) 0%, rgba(255, 215, 0, 0.03) 100%);
}

.faq-container {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
}

.faq-item {
    background: var(--dark-card);
    border-left: 4px solid var(--gold);
    margin-bottom: var(--spacing-md);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.15);
    transform: translateX(4px);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
    padding: var(--spacing-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.faq-question::before {
    content: '▼';
    font-size: 0.8rem;
    transition: var(--transition);
    display: inline-block;
}

.faq-answer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

/* Typography Styles in SEO Text */
.seo-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gold);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.seo-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 0.9);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.seo-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 215, 0, 0.85);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.seo-text strong {
    color: var(--gold);
    font-weight: 700;
}

.seo-text em {
    font-style: italic;
    color: rgba(255, 215, 0, 0.8);
}

.seo-text a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition);
}

.seo-text a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.4);
}

/* List Styles */
.seo-text ul,
.seo-text ol {
    margin: var(--spacing-md) 0 var(--spacing-md) var(--spacing-lg);
    background: rgba(255, 215, 0, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--gold);
}

.seo-text li {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
}

.seo-text li:last-child {
    margin-bottom: 0;
}

.seo-text ul li::marker {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.seo-text ol li::marker {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
}

.seo-text ul ul,
.seo-text ol ol {
    margin: 0.75rem 0 0 var(--spacing-md);
    background: rgba(255, 215, 0, 0.03);
    border-left-width: 3px;
}

.seo-text ul ul li::marker,
.seo-text ol ol li::marker {
    color: rgba(255, 215, 0, 0.8);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 420px;
        height: 100vh;
        background: var(--dark-secondary);
        flex-direction: column;
        padding: var(--spacing-xl) var(--spacing-md);
        transition: var(--transition);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.7);
        border-left: 3px solid var(--gold);
        z-index: 1001;
    }

    .nav-menu li {
        margin-bottom: 1.5rem;
    }

    .nav-menu a {
        font-size: 1.35rem;
        padding: 1rem 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .header-actions {
        display: flex !important;
        order: 3;
        width: 100%;
        gap: 0.75rem;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .header-actions .btn {
        flex: 1;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .hero {
        margin-top: 140px;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .canada-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-image {
        order: 2;
        height: 400px;
    }

    .hero-image img {
        max-width: 400px;
        max-height: 400px;
    }

    .maple-leaf {
        font-size: 3rem;
    }

    .maple-leaf-1 {
        font-size: 3.5rem;
    }

    .maple-leaf-2 {
        font-size: 3rem;
    }

    .maple-leaf-5 {
        font-size: 4rem;
    }

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

    .canada-corner-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
        top: 10px;
        right: 10px;
    }

    .about-row {
        grid-template-columns: 1fr;
    }

    .about-row:nth-child(even) .about-content {
        order: 1;
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: var(--spacing-sm);
    }

    .game-card {
        height: 240px;
    }

    .providers-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: var(--spacing-sm);
    }

    .provider-card {
        height: 100px;
    }

    .seo-text-columns {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .seo-text h2 {
        font-size: 1.75rem;
    }

    .seo-text h3 {
        font-size: 1.35rem;
    }

    .seo-text h4 {
        font-size: 1.1rem;
    }

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

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

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

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content .subheadline {
        font-size: 1.35rem;
    }

    .hero-image {
        height: 350px;
    }

    .hero-image img {
        max-width: 350px;
        max-height: 350px;
    }

    .about-image {
        height: 250px;
    }

    .game-card {
        height: 200px;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .providers-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .provider-card {
        height: 90px;
    }

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

    .btn-cta {
        padding: 1rem 2.25rem;
        font-size: 1.05rem;
    }

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

    .responsible-gaming {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }

    .responsible-logo {
        height: 100px;
    }

    .trust-badge {
        height: 70px;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus states for accessibility */
.btn:focus-visible,
.nav-menu a:focus-visible,
.responsible-logo:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

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

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

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    border-radius: 6px;
    border: 2px solid var(--dark-secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
}
