/* ==========================================================================
   bet O bet Smartlink Landing Page - Premium Upgraded Stylesheet
   ========================================================================== */

/* Design Tokens & Theme Variables */
:root {
    --bg-primary: #0A0A0D;      /* Deep black */
    --bg-secondary: rgba(18, 19, 26, 0.75); /* Translucent Slate for Glassmorphism */
    --bg-card-hover: rgba(26, 28, 38, 0.9);
    
    --accent: #FFC700;          /* High-voltage Neon Gold */
    --accent-secondary: #FF9900; /* Warm Gold/Orange */
    --accent-hover: #E6B200;
    --accent-glow: rgba(255, 199, 0, 0.45);
    
    --text-primary: #FFF8E7;    /* Elegant Champagne Cream */
    --text-secondary: #FFECA1;  /* Soft Warm Gold */
    --text-muted: #D1C7A3;      /* Warm Gold-Tinted Slate */
    
    --success: #00F0FF;         /* Neon Cyan/Teal for trust indicators */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-glow: rgba(255, 199, 0, 0.4);
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: radial-gradient(circle at top, rgba(10, 10, 13, 0.5) 0%, rgba(5, 5, 7, 0.98) 100%), 
                url('assets/bg.png') no-repeat center top;
    background-size: cover;
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

/* Background Glowing Orbs (Extra layer of depth) */
.glow-bg {
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.25;
}

.glow-1 {
    top: -20vw;
    right: -10vw;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}

.glow-2 {
    top: 40vw;
    left: -15vw;
    background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
}

/* ==========================================================================
   Header Component (Glassmorphism)
   ========================================================================== */
.header {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 199, 0, 0.15);
    background-color: rgba(10, 10, 13, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

/* Logo Design */
.logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    letter-spacing: -1.5px;
    display: flex;
    align-items: center;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.logo-bet {
    color: var(--text-primary);
}

.logo-o {
    color: var(--accent);
    background: linear-gradient(135deg, rgba(255, 199, 0, 0.25) 0%, rgba(255, 153, 0, 0.05) 100%);
    border: 2px solid var(--accent);
    padding: 0 0.5rem;
    margin: 0 0.2rem;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 0 15px var(--accent-glow);
    transform: rotate(-3deg);
}

.header-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.badge-18 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.8rem;
    color: #FF4A4A; 
    border: 1.5px solid #FF4A4A;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(255, 74, 74, 0.3);
}

.badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 3.5rem 0;
    text-align: center;
    position: relative;
}

.hero-container {
    display: flex;
    flex-direction: column; /* Stacks column on mobile */
    align-items: center;
    gap: 2.5rem;
    max-width: 1200px;
}

.hero-content-left {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Canadian Promotion Badge */
.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(90deg, rgba(255, 199, 0, 0.15) 0%, rgba(255, 153, 0, 0.03) 100%);
    border: 1px solid var(--border-color-glow);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.75rem;
    box-shadow: 0 0 15px rgba(255, 199, 0, 0.1);
    animation: fadeInDown 0.6s ease-out;
}

.flag-icon {
    font-size: 1.25rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.promo-tag-text {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
}

/* Hero Title with Double Glow and Custom Gradients */
.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.text-highlight {
    color: var(--accent);
    background: linear-gradient(180deg, #FFFFFF 15%, var(--accent) 70%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
    filter: drop-shadow(0 2px 8px rgba(255, 199, 0, 0.3));
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-bottom: 2.75rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

#dynamic-hero-link {
    display: block;
    cursor: pointer;
    width: 100%;
}

/* Hero Banner Glowing metallic border frame */
.hero-banner-container {
    width: 100%;
    max-width: 650px;
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 199, 0, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 
                0 0 40px rgba(255, 199, 0, 0.15), 
                inset 0 0 20px rgba(255, 255, 255, 0.05);
    background: #000000;
    animation: zoomIn 1s ease-out;
    position: relative;
}

.hero-banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hero-banner-container:hover .hero-banner-image {
    transform: scale(1.04) rotate(0.5deg);
}

/* Trust rating directly above the button to boost CTR */
.trust-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    animation: fadeInUp 1.1s ease-out;
    width: 100%;
}

.stars {
    color: var(--accent);
    letter-spacing: 2px;
}

/* Dynamic Outbound Button Styling with Shinning Gradient Shimmer */
.cta-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    animation: fadeInUp 1.2s ease-out;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    color: #000000;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.35rem;
    padding: 1.35rem 3.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--accent-glow), 
                inset 0 2px 0 rgba(255, 255, 255, 0.35);
    transition: var(--transition-smooth);
    letter-spacing: 0.75px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 440px;
}

/* Button hover and shimmer animation */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(255, 255, 255, 0.4) 50%, 
                transparent 100%);
    transition: 0.6s ease-in-out;
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 15px 40px rgba(255, 199, 0, 0.7), 
                inset 0 2px 0 rgba(255, 255, 255, 0.5);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 199, 0, 0.5);
}

.arrow-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow-icon {
    transform: translateX(6px);
}

.pulse-animation {
    animation: ctaPulse 2s infinite;
}

@keyframes ctaPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 199, 0, 0.75);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(255, 199, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 199, 0, 0);
    }
}

/* CTA footer metadata specs */
.cta-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.meta-icon {
    width: 18px;
    height: 18px;
    color: var(--success);
}

.meta-item-separator {
    color: var(--text-muted);
}

/* ==========================================================================
   Benefits / Highlights Section (Glassmorphic cards)
   ========================================================================== */
.benefits-section {
    padding: 4.5rem 0;
    background-color: rgba(9, 9, 12, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 199, 0, 0.1);
    border-bottom: 1px solid rgba(255, 199, 0, 0.1);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
}

.benefit-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-glow);
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 
                0 0 25px rgba(255, 199, 0, 0.08);
}

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

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 199, 0, 0.15) 0%, rgba(255, 199, 0, 0.02) 100%);
    border: 1px solid rgba(255, 199, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: rotateY(180deg);
    border-color: var(--accent);
}

.benefit-icon {
    width: 30px;
    height: 30px;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
    letter-spacing: -0.25px;
}

.benefit-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   Compliance & Trust Section
   ========================================================================== */
.compliance-section {
    padding: 5rem 0;
}

.compliance-container {
    max-width: 850px;
}

.compliance-box {
    background: linear-gradient(135deg, rgba(20, 21, 31, 0.6) 0%, rgba(10, 10, 14, 0.9) 100%);
    border: 1px solid rgba(255, 199, 0, 0.15);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    position: relative;
    overflow: hidden;
}

.compliance-box::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,199,0,0.06) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.compliance-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.badge-rg {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    color: #000000;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    box-shadow: 0 0 15px var(--accent-glow);
}

.compliance-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.compliance-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    position: relative;
    z-index: 2;
}

.badge-item-plain {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
}

.badge-item-plain:hover {
    border-color: var(--accent);
    background: rgba(255, 199, 0, 0.05);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    padding: 4.5rem 0 3.5rem;
    border-top: 1px solid rgba(255, 199, 0, 0.15);
    background-color: rgba(6, 6, 8, 0.95);
    backdrop-filter: blur(10px);
    text-align: center;
}

.footer-container {
    max-width: 950px;
}

.footer-terms-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2.25rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
    margin-bottom: 2.25rem;
}

.footer-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.footer-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Modal Overlay & Box
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: #12131A;
    border: 1px solid rgba(255, 199, 0, 0.25);
    border-radius: 20px;
    width: 100%;
    max-width: 650px;
    padding: 3rem;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 199, 0, 0.05);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.25rem;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

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

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.75rem;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 0.6rem;
}

.modal-body {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.modal-body h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 1.75rem 0 0.6rem;
}

.modal-body p {
    margin-bottom: 1.25rem;
}

/* ==========================================================================
   Keyframes CSS Animations
   ========================================================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==========================================================================
   Media Queries & Responsiveness
   ========================================================================== */
@media (min-width: 768px) {
    .hero-section {
        padding: 5.5rem 0;
        text-align: left;
    }
    
    .hero-container {
        flex-direction: row; /* Side by side split on desktop */
        justify-content: space-between;
        align-items: center;
        gap: 3.5rem;
    }
    
    .hero-content-left {
        align-items: flex-start;
        text-align: left;
    }
    
    .hero-title {
        font-size: 3.6rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2.25rem;
    }

    .trust-rating {
        justify-content: flex-start;
    }

    .cta-wrapper {
        align-items: flex-start;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
    
    .btn-primary {
        font-size: 1.4rem;
        padding: 1.3rem 3.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.2rem;
    }
    .hero-container {
        gap: 5rem;
    }
}
