/* verabet - Sports Theme CSS 2026 */
/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary-green: #1B5E20;
    --primary-gold: #FFD700;
    --accent-green: #2E7D32;
    --dark-bg: #0A1628;
    --darker-bg: #050D1A;
    --card-bg: #0F2140;
    --text-light: #FFFFFF;
    --text-muted: #B0BEC5;
    --text-gold: #FFC107;
    --gradient-green: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFA000 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(46, 125, 50, 0.3);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--text-gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-gold);
}

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

ul {
    list-style: none;
}

/* Header and Navigation */
.site-header {
    background: var(--darker-bg);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.main-nav {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo-link {
    display: flex;
    align-items: center;
}

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

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

.nav-link {
    padding: 0.75rem 1.25rem;
    color: var(--text-light);
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: var(--gradient-green);
    color: var(--text-light);
}

.cta-button {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
    color: var(--dark-bg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(0, 0, 0, 0.2);
    padding: 0.75rem 0;
}

.breadcrumb-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb-list a {
    color: var(--text-muted);
}

.breadcrumb-list a:hover {
    color: var(--text-gold);
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.7) 50%, transparent 100%);
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.hero-cta {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    transition: var(--transition);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    color: var(--dark-bg);
}

/* Section Styles */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--text-light);
    margin-bottom: 0.75rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.section-intro {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-top: 1.5rem;
}

/* About Section */
.about-section {
    background: var(--darker-bg);
}

.about-content {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-size: 1.25rem;
    color: var(--text-light);
}

.author-title {
    color: var(--text-gold);
    font-size: 0.9rem;
}

.author-details time {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.about-text p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.about-text h3 {
    color: var(--text-gold);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

/* Games Section */
.games-section {
    background: var(--dark-bg);
}

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

.game-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

.game-link {
    display: block;
    color: inherit;
}

.game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

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

.game-info {
    padding: 1.5rem;
}

.game-title {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.game-description {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Bonus Section */
.bonus-section {
    background: var(--darker-bg);
}

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

.bonus-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.bonus-details h3 {
    color: var(--text-gold);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.25rem;
}

.bonus-details h3:first-child {
    margin-top: 0;
}

.bonus-details p {
    color: var(--text-muted);
}

.bonus-cta,
.sports-cta {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-top: 1.5rem;
    transition: var(--transition);
}

.bonus-cta:hover,
.sports-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    color: var(--dark-bg);
}

/* Sports Section */
.sports-section {
    background: var(--dark-bg);
}

.sports-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.sports-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.sports-details h3 {
    color: var(--text-gold);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.25rem;
}

.sports-details p {
    color: var(--text-muted);
}

/* Payment Section */
.payment-section {
    background: var(--darker-bg);
}

.payment-content {
    text-align: center;
}

.payment-image {
    max-width: 600px;
    margin: 0 auto 3rem;
    border-radius: var(--border-radius);
}

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

.payment-method {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.payment-method h3 {
    color: var(--text-gold);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.payment-method p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.payment-details {
    margin-top: 1rem;
}

.payment-details li {
    color: var(--text-muted);
    padding: 0.25rem 0;
    font-size: 0.9rem;
}

/* License Section */
.license-section {
    background: var(--dark-bg);
}

.license-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.license-image {
    width: 200px;
    flex-shrink: 0;
    border-radius: var(--border-radius);
}

.license-details h3 {
    color: var(--text-gold);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.25rem;
}

.license-details h3:first-child {
    margin-top: 0;
}

.license-details p {
    color: var(--text-muted);
}

/* Responsible Gaming Section */
.responsible-section {
    background: var(--darker-bg);
}

.responsible-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.responsible-image {
    width: 150px;
    flex-shrink: 0;
}

.responsible-details h3 {
    color: var(--text-gold);
    margin: 1.5rem 0 0.75rem;
    font-size: 1.25rem;
}

.responsible-details p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.responsible-tools,
.help-resources {
    margin: 1rem 0;
}

.responsible-tools li,
.help-resources li {
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.responsible-tools li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.help-resources li {
    padding-left: 0;
}

.help-resources a {
    color: var(--text-gold);
}

.age-badge {
    margin-top: 2rem;
    width: 80px;
}

/* Support Section */
.support-section {
    background: var(--dark-bg);
}

.support-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.support-image {
    width: 150px;
    flex-shrink: 0;
}

.support-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    flex: 1;
}

.support-channel {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.support-channel h3 {
    color: var(--text-gold);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.support-channel p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-section {
    background: var(--darker-bg);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--text-gold);
    transition: var(--transition);
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-muted);
}

/* Reviews Section */
.reviews-section {
    background: var(--dark-bg);
}

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

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.review-header {
    margin-bottom: 1rem;
}

.reviewer-name {
    display: block;
    font-size: 1.125rem;
    color: var(--text-light);
}

.reviewer-location {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.review-rating {
    color: var(--primary-gold);
    font-size: 1.25rem;
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Footer */
.site-footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 1.5rem 2rem;
}

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

.footer-brand {
    max-width: 350px;
}

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

.footer-description {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--text-gold);
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

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

.footer-column ul a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column ul a:hover {
    color: var(--text-gold);
}

.footer-payment {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-payment h4 {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.payment-icons {
    max-width: 400px;
    margin: 0 auto;
}

.footer-license {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.license-badge-small {
    width: 80px;
}

.license-info {
    text-align: center;
}

.license-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0.25rem 0;
}

.age-restriction {
    width: 60px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bonus-content,
    .sports-content {
        grid-template-columns: 1fr;
    }
    
    .license-content,
    .responsible-content,
    .support-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .license-image,
    .responsible-image,
    .support-image {
        margin-bottom: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--darker-bg);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .cta-button {
        display: none;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
    
    .section-container {
        padding: 3rem 1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-license {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .about-content {
        padding: 1.5rem;
    }
    
    .game-image {
        height: 200px;
    }
    
    .support-channels {
        grid-template-columns: 1fr;
    }
}

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

.game-card,
.review-card,
.payment-method,
.support-channel {
    animation: fadeInUp 0.6s ease forwards;
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .cta-button,
    .hero-cta,
    .bonus-cta,
    .sports-cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
