
:root {
    --primary-green-light: #4ade80;
    --primary-green-dark: #15803d;
    --bottle-green: #1a472a;
    --gold: #fbbf24;
    --gold-dark: #d97706;
    --gold-light: #fef3c7;
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green-dark) 50%, var(--bottle-green) 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
}


.text-gold {
    color: var(--gold) !important;
}

.text-bottle-green {
    color: var(--bottle-green) !important;
}


.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gold:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-gold:active {
    transform: translateY(0);
}

.glow-btn {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    animation: glow-pulse 2s infinite alternate;
}

@keyframes glow-pulse {
    from {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
    }
    to {
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.6);
    }
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-1px);
}


.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease;
}

.age-verification-modal {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--bottle-green));
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--gold);
    max-width: 500px;
    margin: 20px;
    animation: slideInUp 0.6s ease;
}

.age-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1rem;
    animation: bounce 1s infinite;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 71, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--gold);
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}


.main-header {
    background: rgba(26, 71, 42, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-text {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}


.hero-section {
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><image href="data:image/svg+xml,%3Csvg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="1" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.1"/%3E%3C/svg%3E" width="100" height="100"/%3E%3C/pattern%3E%3C/defs%3E%3Crect width="100%" height="100%" fill="url(%23grain)"/%3E%3C/svg%3E');
    opacity: 0.1;
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.badge-feature {
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.badge-feature:hover {
    background: var(--gold);
    color: var(--bottle-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.animate-text {
    animation: slideInDown 1s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.casinos-section {
    padding: 4rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--white);
}


.casino-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 20px;
    padding: 0;
    margin-bottom: 2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.casino-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(251, 191, 36, 0.2);
    border-color: var(--gold);
}

.casino-card:hover::before {
    opacity: 1;
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(251, 191, 36, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.casino-rank {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.casino-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 1rem;
}

.logo-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(251, 191, 36, 0.5);
    border-radius: 10px;
    padding: 1rem 2rem;
    color: var(--gold);
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.casino-rating {
    text-align: right;
}

.stars {
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.rating-text {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9rem;
}

.card-body {
    padding: 1.5rem;
    flex: 1;
}

.casino-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.casino-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.casino-bonus {
    background: rgba(251, 190, 36, 0.493);
    border: 1px solid var(--gold);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgb(62, 62, 62);
    font-weight: 600;
}

.casino-details {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.casino-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge-secure,
.badge-instant {
    background: #fef3c791;
    border: 1px solid rgb(62, 62, 62);
    color: rgb(62, 62, 62);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.casino-payment {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.payment-method {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 500;
}

.card-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(251, 191, 36, 0.2);
}

.casino-actions {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.casino-info-btn,
.casino-play-btn {
    flex: 1;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.casino-play-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.casino-play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.casino-play-btn:hover::before {
    left: 100%;
}


.features-section {
    padding: 4rem 0;
    background: rgba(26, 71, 42, 0.3);
    backdrop-filter: blur(10px);
}

.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
}

.feature-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--bottle-green), rgba(17, 24, 39, 0.9));
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--gold);
}

.footer-section h5,
.footer-section h6 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--gold);
    width: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.copyright a {
    color: var(--gold);
    text-decoration: none;
}

.age-badge {
    width: 120px;
    height: auto;
    margin: 0.5rem;
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .casino-actions {
        flex-direction: column;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .casino-rank {
        order: -1;
    }
    
    .casino-rating {
        text-align: center;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-banner .row {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-banner .col-md-4 {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .casinos-section {
        padding: 2rem 0;
    }
    
    .features-section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .age-verification-modal {
        padding: 2rem;
        margin: 10px;
    }
    
    .age-icon {
        font-size: 3rem;
    }
}


.casino-card,
.feature-card,
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.glow-btn,
.casino-play-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::after,
.casino-play-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.glow-btn:hover::after,
.casino-play-btn:hover::after {
    opacity: 1;
    animation: gloss-sweep 0.8s ease-in-out;
}

@keyframes gloss-sweep {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.loading-shimmer {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0px, rgba(255, 255, 255, 0.2) 40px, rgba(255, 255, 255, 0.1) 80px);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite linear;
}


@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


.btn:focus,
.nav-link:focus,
.footer-links a:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}


@media print {
    .age-verification-overlay,
    .cookie-banner,
    .main-header,
    .casino-actions {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .casino-card {
        border: 1px solid #000 !important;
        background: white !important;
    }
}