/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --secondary-dark: #d97706;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --gray-color: #6b7280;
    --white-color: #ffffff;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-dark: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white-color);
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 700;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--gradient-dark);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 1rem 0;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-color) !important;
    text-decoration: none;
}

.navbar-brand i {
    color: var(--secondary-color);
}

.navbar-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: var(--white-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.dropdown-menu {
    background: var(--white-color);
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    padding: 0.5rem 0;
}

.dropdown-item {
    color: var(--dark-color);
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-dark);
    background-image: url('/images/1.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/1.webp') no-repeat center center;
    background-size: cover;
    opacity: 0.7;
    z-index: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.hero-features {
    margin-top: 4rem;
}

.hero-features i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-features p {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    text-align: center;
    margin-bottom: 3rem;
}

/* ===== CASINO CARDS ===== */
.casino-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.casino-header {
    background: var(--gradient-primary);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.casino-logo {
    width: 100%;
    height: 80px;
    background: #3b82f6;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.casino-logo-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.casino-logo-link:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    transform: scale(1.02);
}

.casino-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    transition: var(--transition);
    padding: 0.5rem;
}

.casino-logo-link:hover .casino-logo-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.casino-rating {
    text-align: right;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-color);
    display: block;
}

.rating-stars {
    margin-top: 0.25rem;
}

.rating-stars i {
    font-size: 0.8rem;
    margin-right: 1px;
}

.casino-body {
    padding: 1.5rem;
}

.casino-body h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.casino-bonus {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.casino-features {
    margin-bottom: 1rem;
}

.feature-badge {
    display: inline-block;
    background: var(--light-color);
    color: var(--gray-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.casino-description {
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.casino-footer {
    padding: 1.5rem;
    background: var(--light-color);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.casino-footer .btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

/* ===== BONUS CARDS ===== */
.bonus-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bonus-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white-color);
}

.bonus-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.bonus-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* ===== GUIDE STEPS ===== */
.guide-step {
    display: flex;
    align-items: flex-start;
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.guide-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.step-content p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* ===== FAQ ACCORDION ===== */
.accordion-item {
    border: none;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-button {
    background: var(--white-color);
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white-color);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--light-color);
    color: var(--gray-color);
    line-height: 1.6;
}

/* ===== RESPONSIBLE GAMING ===== */
.responsible-card {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.responsible-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.responsible-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white-color);
}

.responsible-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.responsible-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

.responsible-gaming-box {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    color: var(--white-color);
}

.responsible-gaming-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.responsible-gaming-box ul {
    margin-bottom: 0;
}

.responsible-gaming-box li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.age-badge {
    width: 80px;
    height: 80px;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.age-badge i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.age-badge span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

/* ===== FOOTER ===== */
footer {
    background: var(--gradient-dark);
    color: var(--white-color);
}

footer h5, footer h6 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

footer p {
    color: var(--gray-color);
    line-height: 1.6;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: var(--gray-color);
    text-decoration: none;
    transition: var(--transition);
}

footer ul li a:hover {
    color: var(--secondary-color);
}

.footer-policies a {
    color: var(--gray-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-policies a:hover {
    color: var(--secondary-color);
}

/* ===== MODALS ===== */
.age-modal .modal-content {
    background: var(--white-color);
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--shadow-xl);
}

.age-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white-color);
}

.age-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--warning-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    color: var(--warning-color);
}

/* ===== BUTTONS ===== */
.btn {
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    padding: 0.75rem 1.5rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-warning {
    background: var(--gradient-secondary);
    color: var(--white-color);
}

.btn-warning:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    border: 2px solid var(--white-color);
    color: var(--white-color);
}

.btn-outline-light:hover {
    background: var(--white-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== UTILITIES ===== */
.bg-light {
    background-color: var(--light-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.text-success {
    color: var(--success-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

.text-muted {
    color: var(--gray-color) !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* ===== RESPONSIBLE GAMING BADGES ===== */
.responsible-gaming-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.badge-link {
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.badge-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.responsible-badge {
    height: 40px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    border-radius: var(--border-radius);
    background: var(--white-color);
    padding: 0.25rem;
    box-shadow: var(--shadow-sm);
}

/* ===== LARGE RESPONSIBLE GAMING BADGES ===== */
.responsible-gaming-badges-large {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.badge-link-large {
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge-link-large:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.responsible-badge-large {
    height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    border-radius: var(--border-radius);
    background: var(--white-color);
    padding: 0.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 0.5rem;
}

.badge-caption {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 0.5rem;
}

/* ===== CONTACT SECTION ===== */
#contact {
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

#contact .container {
    position: relative;
    z-index: 2;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 0;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/2.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.6;
    z-index: -1;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h6 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--gray-color);
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-form-card {
    background: var(--white-color);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .guide-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .casino-header {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-rating {
        text-align: center;
        margin-top: 1rem;
    }
    
    .responsible-gaming-badges {
        justify-content: center;
    }
    
    .responsible-badge {
        height: 35px;
        max-width: 70px;
    }
    
    .responsible-gaming-badges-large {
        gap: 1rem;
    }
    
    .responsible-badge-large {
        height: 60px;
        max-width: 120px;
    }
    
    .badge-caption {
        font-size: 0.8rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 1rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-bg {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .casino-card,
    .bonus-card,
    .responsible-card {
        margin-bottom: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== LOADING ANIMATION ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== HOVER EFFECTS ===== */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.hover-scale {
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== CUSTOM SCROLL BEHAVIOR ===== */
html {
    scroll-behavior: smooth;
}

/* ===== FOCUS STATES ===== */
.btn:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
    border-color: var(--primary-color);
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .hero-cta,
    .casino-footer,
    footer {
        display: none !important;
    }
    
    .casino-card,
    .bonus-card,
    .responsible-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
} 