﻿/* BetnBet Bonus Rules Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar {
    background-color: transparent;
}

.scrolling-navbar {
    transition: background .5s ease-in-out, padding .5s ease-in-out;
}

.top-nav-collapse {
    background-color: #1c2631 !important;
}

.navbar:not(.top-nav-collapse) {
    background: transparent !important;
}

@media only screen and (max-width: 768px) {
    .navbar {
        background-color: #667490;
    }
}

.bg-color3 {
    background-color: #192a3c !important;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
        z-index: -1;
    }

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #FFA500 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

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

/* Bonus Cards */
.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .bonus-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #FFD700, #FFA500, #FF8C00);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .bonus-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
        border-color: rgba(255, 215, 0, 0.3);
        cursor: pointer;
    }

        .bonus-card:hover::before {
            transform: scaleX(1);
        }

/* Bonus Header */
.bonus-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bonus-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

    .bonus-icon svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

    .bonus-icon:hover {
        transform: scale(1.1) rotate(5deg);
    }

.bonus-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFD700;
    flex: 1;
}

/* Bonus Content */
.bonus-content {
    color: rgba(255, 255, 255, 0.9);
}

.bonus-section {
    margin-bottom: 1.5rem;
}

.section-title {
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.bonus-list {
    list-style: none;
    margin-left: 0;
}

    .bonus-list li {
        position: relative;
        padding-left: 1.5rem;
        margin-bottom: 0.5rem;
        color: rgba(255, 255, 255, 0.85);
    }

        .bonus-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00ff88;
            font-weight: bold;
        }

    .bonus-list.dark li, .bonus-list.dark li::before {
        color: black;
    }

.highlight {
    color: #FFD700;
    font-weight: 600;
}

/* Crypto Badges */
.crypto-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

    .crypto-badge svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }

/* Info Boxes */
.example-box {
    background: rgba(0, 255, 136, 0.1);
    border-left: 4px solid #00ff88;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
}

.warning-box {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #FFC107;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
}

.info-box {
    background: rgba(13, 202, 240, 0.1);
    border-left: 4px solid #0dcaf0;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
}

/* Quick Navigation */
.quick-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 50;
}

.quick-nav-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .quick-nav-item.active {
        background: #FFD700;
        transform: scale(1.3);
    }

    .quick-nav-item:hover {
        background: #FFD700;
        transform: scale(1.2);
    }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-button {
    background: #000;
    color: #FFD700;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

/* Footer */
.footer {
    text-align: center;
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 4rem;
}

.footer-content {
    color: rgba(255, 255, 255, 0.6);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        margin-top: 3rem;
    }

    .bonus-grid, .banking-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bonus-card {
        padding: 1.5rem;
    }

    .quick-nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .container {
        padding: 0 15px;
    }

    .bonus-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .bonus-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

        .bonus-icon svg {
            width: 20px;
            height: 20px;
        }

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

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

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .bonus-card {
        padding: 1rem;
    }

    .bonus-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .bonus-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-top: 2rem;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .bonus-card {
        border: 2px solid #FFD700;
    }

    .crypto-badge {
        border: 1px solid #000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.bonus-card:focus-within {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

.cta-button:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

.quick-nav-item:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .hero,
    .quick-nav,
    .cta-section,
    .footer {
        display: none;
    }

    .bonus-card {
        break-inside: avoid;
        border: 1px solid #000;
        background: white;
        color: black;
    }

    .bonus-title {
        color: black;
    }

    .highlight {
        color: black;
        font-weight: bold;
    }
}
