:root {
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-highlight: rgba(255, 255, 255, 0.25);
    --accent-gold: #d4a853;
    --accent-gold-light: #f0d78c;
    --accent-blue: #6ea8fe;
    --accent-purple: #a78bfa;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --shadow-soft: rgba(0, 0, 0, 0.3);
    --shadow-glow: rgba(212, 168, 83, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0c0c1e 0%, #1a1a3a 25%, #0f0f2a 50%, #1e1e4a 75%, #0a0a1a 100%);
    background-attachment: fixed;
}

/* Animated background orbs */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(ellipse 600px 600px at 20% 30%, rgba(106, 168, 254, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 500px 500px at 80% 70%, rgba(167, 139, 250, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 700px 700px at 50% 50%, rgba(212, 168, 83, 0.05) 0%, transparent 50%);
    animation: orbFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 3%) rotate(5deg); }
    50% { transform: translate(-1%, 5%) rotate(-3deg); }
    75% { transform: translate(-3%, 2%) rotate(3deg); }
}

/* Glass noise texture overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 2;
}

/* Header Styling */
header {
    text-align: center;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.casino-decorations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.card-suits {
    display: flex;
    gap: 0.6rem;
}

.suit {
    font-size: 1.4rem;
    opacity: 0.4;
    transition: all 0.3s ease;
    filter: blur(0px);
}

.suit:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

.spade, .club {
    color: var(--text-secondary);
}

.heart {
    color: #e57373;
}

.diamond {
    color: var(--accent-gold);
}

h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold-light) 50%, var(--text-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
    text-shadow: none;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.glow-text {
    position: relative;
}

/* Author Box */
.author-box {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease-out 0.2s backwards;
}

.author-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.author-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.author-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.author-title {
    font-size: 0.8rem;
    color: var(--accent-gold);
    background: rgba(212, 168, 83, 0.15);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
}

.author-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.update-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.update-date i {
    color: var(--accent-blue);
}

/* Casino List */
.casino-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 5;
}

/* Glass Card Styling */
.casino-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.6s ease-out backwards;
    margin-top: 0;
    padding: 0;
}

.casino-card:nth-child(1) { animation-delay: 0.1s; }
.casino-card:nth-child(2) { animation-delay: 0.2s; }
.casino-card:nth-child(3) { animation-delay: 0.3s; }
.casino-card:nth-child(4) { animation-delay: 0.4s; }
.casino-card:nth-child(5) { animation-delay: 0.5s; }

/* Glass reflection effect */
.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, var(--glass-highlight) 0%, transparent 100%);
    border-radius: 24px 24px 0 0;
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.casino-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-highlight);
    box-shadow: 
        0 25px 50px -12px var(--shadow-soft),
        0 0 60px -15px var(--shadow-glow),
        inset 0 1px 0 var(--glass-highlight);
}

.casino-card:hover::before {
    opacity: 0.7;
}

/* First card special treatment */
.casino-card:nth-child(1) {
    border-color: rgba(212, 168, 83, 0.3);
    box-shadow: 
        0 15px 35px -10px var(--shadow-soft),
        0 0 40px -10px var(--shadow-glow);
}

.casino-card:nth-child(1)::after {
    content: 'TOP PICK';
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: #1a1a2e;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
}

/* Rank Badge */
.rank {
    position: absolute;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    z-index: 10;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    top: 20px;
    left: 20px;
    transform: none;
    animation: none;
    box-shadow: 0 4px 15px var(--shadow-soft);
}

.rank::before,
.rank::after {
    display: none;
}

.casino-card:nth-child(1) .rank {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    border-color: transparent;
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
}

.casino-card:nth-child(2) .rank {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    border-color: transparent;
    color: #1a1a2e;
}

.casino-card:nth-child(3) .rank {
    background: linear-gradient(135deg, #cd7f32 0%, #e6a960 100%);
    border-color: transparent;
    color: #1a1a2e;
}

/* Casino Content Layout */
.casino-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1.75rem;
    padding-left: 80px;
    gap: 2rem;
    min-height: 120px;
}

.casino-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px;
}

.logo-container {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.logo-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.logo-container a:hover {
    transform: scale(1.05);
}

.casino-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    filter: brightness(1.05);
    transition: all 0.3s ease;
}

.casino-logo:hover {
    filter: brightness(1.15);
}

.btn-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

/* Rating */
.rating {
    text-align: center;
}

.rating-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    line-height: 1;
}

.stars {
    color: var(--accent-gold);
    font-size: 0.75rem;
    margin-top: 4px;
    display: flex;
    gap: 2px;
    justify-content: center;
}

.stars i {
    filter: drop-shadow(0 0 3px rgba(212, 168, 83, 0.5));
}

/* Features Section */
.features {
    flex: 1;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.features::before,
.features::after {
    display: none;
}

.features:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(255, 255, 255, 0.1);
}

.features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.features li:last-child {
    margin-bottom: 0;
}

.features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0.8;
}

.features li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Button Container */
.button-container {
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

/* Claim Button - Liquid Glass Style */
.claim-btn {
    width: 100%;
    padding: 14px 28px;
    border: none;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    color: #1a1a2e;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(212, 168, 83, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.claim-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;
}

.claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(212, 168, 83, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.claim-btn:hover::before {
    left: 100%;
}

.claim-btn:active {
    transform: translateY(0);
}

/* First card button pulse */
.casino-card:nth-child(1) .claim-btn {
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% { 
        box-shadow: 
            0 4px 15px rgba(212, 168, 83, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% { 
        box-shadow: 
            0 6px 25px rgba(212, 168, 83, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

/* Countdown Timer - Glass Style */
.countdown-container {
    text-align: center;
    width: 100%;
}

.urgency-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.countdown {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 10px;
    display: inline-block;
    border: 1px solid var(--glass-border);
    box-shadow: none;
    text-shadow: none;
    animation: none;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide sparkle effects */
.sparkle {
    display: none;
}

/* Hide unused elements */
.circuit-overlay,
.particles,
.particle {
    display: none;
}

/* Content Sections */
.content-section {
    margin-top: 3rem;
    animation: fadeInDown 0.6s ease-out 0.4s backwards;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-highlight);
    box-shadow: 0 15px 30px -10px var(--shadow-soft);
}

.feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    border-radius: 12px;
    color: #1a1a2e;
    font-size: 1.25rem;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--glass-highlight);
}

.faq-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.faq-answer {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.site-footer {
    margin-top: 4rem;
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 500;
}

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

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* Legal Pages */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-page h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: none;
    -webkit-text-fill-color: var(--text-primary);
}

.legal-page .last-updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.legal-page p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-page li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    .card-suits {
        display: none;
    }
    
    .casino-decorations {
        gap: 0;
    }
    
    /* Author Box Mobile */
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.25rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .author-meta {
        justify-content: center;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .update-date {
        justify-content: center;
    }
    
    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Legal Pages Mobile */
    .legal-page {
        padding: 2rem 1rem;
    }
    
    .legal-page h1 {
        font-size: 1.5rem;
    }
    
    
    .casino-card {
        border-radius: 20px;
        margin-top: 0;
    }
    
    .casino-card:nth-child(1)::after {
        right: 16px;
        top: -10px;
        font-size: 0.6rem;
        padding: 5px 12px;
    }
    
    .rank {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        top: 16px;
        left: 16px;
        border-radius: 12px;
    }
    
    .casino-content {
        flex-direction: column;
        padding: 1.5rem;
        padding-top: 4rem;
        gap: 1.25rem;
        text-align: center;
    }
    
    .casino-header {
        width: 100%;
        min-width: auto;
    }
    
    .logo-container {
        width: 100px;
        height: 50px;
    }
    
    .features {
        width: 100%;
        text-align: left;
    }
    
    .features li {
        font-size: 0.9rem;
    }
    
    .button-container {
        width: 100%;
        min-width: auto;
    }
    
    .claim-btn {
        padding: 14px 24px;
        font-size: 0.85rem;
    }
}

@media (min-width: 769px) {
    .casino-content {
        min-height: 120px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Selection Styling */
::selection {
    background: rgba(212, 168, 83, 0.3);
    color: var(--text-primary);
}


