﻿/* 36TBET Casino Styles - Vertical Layout Optimized for Mobile */

:root {
    --primary-color: #009c3b; /* Brazilian flag green */
    --secondary-color: #ffdf00; /* Brazilian flag yellow */
    --accent-color: #002776; /* Brazilian flag blue */
    --text-color: #ffffff;
    --dark-bg: #121212;
    --dark-bg-lighter: #1a1a1a;
    --border-color: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

body::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari/Opera */
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: var(--accent-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 120px;
    height: auto;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    background: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--accent-color);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.main-nav {
    background: var(--dark-bg-lighter);
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
}

.main-nav::-webkit-scrollbar {
    display: none;
}

.nav-container {
    display: flex;
    gap: 15px;
    padding: 0 15px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 30px 0;
    text-align: center;
    background: linear-gradient(to bottom, var(--dark-bg-lighter), var(--dark-bg));
}

.hero h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.hero p {
    font-size: 16px;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
    margin: 0 auto;
}

.hero-image {
    margin-top: 30px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Feature Sections */
.feature-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-section.animated {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-align: center;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-text {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.game-card {
    background: var(--dark-bg-lighter);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.game-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.game-card:nth-child(1) {
    transition-delay: 0.1s;
}

.game-card:nth-child(2) {
    transition-delay: 0.2s;
}

.game-card:nth-child(3) {
    transition-delay: 0.3s;
}

.game-card:nth-child(4) {
    transition-delay: 0.4s;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.game-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.game-info {
    padding: 10px;
}

.game-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.game-provider {
    font-size: 12px;
    color: #999;
}

/* Bonus Section */
.bonus-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.bonus-card.animated {
    opacity: 1;
    transform: scale(1);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 60%);
    opacity: 0.5;
    z-index: 0;
}

.bonus-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bonus-description {
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
}

/* Footer */
footer {
    background: var(--accent-color);
    padding: 30px 0;
    text-align: center;
}

.footer-logo {
    width: 100px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
}

.footer-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* Tag Keywords Section */
.tags-section {
    padding: 30px 0;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-link {
    display: inline-block;
    background: var(--border-color);
    color: #e0e0e0;
    text-decoration: none;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: var(--primary-color);
    color: var(--text-color);
    transform: translateY(-2px);
}

/* Promotions Section */
.promo-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.promo-card {
    background: var(--dark-bg-lighter);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.promo-card.animated {
    opacity: 1;
    transform: translateX(0);
}

.promo-card:nth-child(1) {
    transition-delay: 0.1s;
}

.promo-card:nth-child(2) {
    transition-delay: 0.2s;
}

.promo-card:nth-child(3) {
    transition-delay: 0.3s;
}

.promo-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.promo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.promo-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.promo-content p {
    font-size: 13px;
    color: #bbb;
}

/* Call to action button */
.cta-button {
    background: var(--secondary-color);
    color: var(--accent-color);
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 300px;
    margin: 20px auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background: #ffe333;
}

.cta-button svg {
    margin-left: 10px;
    width: 18px;
    height: 18px;
}

/* Pulse animation for CTA */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero .cta-button {
    animation: pulse 2s infinite;
}

/* Game Filters */
.games-filter {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 0 0 15px 0;
    scrollbar-width: none;
    margin-bottom: 20px;
}

.games-filter::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    background: var(--dark-bg-lighter);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: var(--dark-bg-lighter);
    padding: 15px;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: bottom 0.3s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 14px;
    color: #e0e0e0;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Form Error Messages */
.error-message {
    color: #ff4d4d;
    font-size: 12px;
    margin-top: 5px;
}

input.error {
    border-color: #ff4d4d;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .promo-cards {
        flex-direction: row;
    }
    
    .promo-card {
        flex: 1;
    }
    
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        max-width: 720px;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .feature-section {
        display: flex;
        gap: 30px;
    }
    
    .section-title {
        text-align: left;
    }
    
    .feature-image {
        max-width: 450px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
} 