/* AALIVE Casino - Classic Las Vegas Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #B8001F;
    --dark-red: #800000;
    --gold: #FFD700;
    --dark-gold: #B8860B;
    --black: #1A1A1A;
    --dark-gray: #2C2C2C;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --neon-red: #FF0033;
    --neon-gold: #FFFF00;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--light-gray);
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    overflow-x: hidden;
}

/* Header */
.header {
    background: linear-gradient(90deg, var(--black) 0%, var(--dark-red) 50%, var(--black) 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(184, 0, 31, 0.3);
    border-bottom: 2px solid var(--gold);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px var(--gold));
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold);
    text-shadow: 2px 2px 4px var(--black), 0 0 20px var(--neon-gold);
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
    transform: translateY(-2px);
    text-shadow: 0 0 10px var(--neon-gold);
}

.nav-links a.active {
    color: var(--gold);
    background: rgba(255, 215, 0, 0.1);
    border-radius: 5px;
    text-shadow: 0 0 8px var(--neon-gold);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--gold);
    box-shadow: 0 0 5px var(--gold);
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    color: var(--gold);
    padding: 12px 24px;
    border: 2px solid var(--gold);
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 25px rgba(255, 215, 0, 0.6); }
    100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.3); }
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--neon-red), var(--primary-red), var(--neon-red));
    color: var(--white);
    text-align: center;
    padding: 0.75rem 0;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    animation: urgencyPulse 2s infinite;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

.urgency-banner #countdown {
    color: var(--neon-gold);
    font-family: 'Courier New', monospace;
    font-size: 1.1em;
    text-shadow: 0 0 10px var(--neon-gold);
}

.fire {
    animation: flicker 1s infinite alternate;
}

@keyframes urgencyPulse {
    0%, 100% { background-size: 200% 100%; }
    50% { background-size: 150% 100%; }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes flicker {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Special Offer */
.special-offer {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--gold);
    border-radius: 15px;
    padding: 1rem;
    margin: 1rem 0;
    position: relative;
    text-align: center;
}

.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-red);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: bounce 2s infinite;
}

/* Enhanced CTA Button */
.btn-primary.pulse {
    animation: ctaPulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.btn-primary.pulse small {
    display: block;
    font-size: 0.7em;
    margin-top: 0.2rem;
    opacity: 0.9;
}

@keyframes ctaPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(128, 0, 0, 0.7));
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(26, 26, 26, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--gold);
    text-shadow: 3px 3px 6px var(--black), 0 0 30px var(--neon-gold);
    margin-bottom: 1rem;
    animation: neonFlicker 3s infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% { text-shadow: 3px 3px 6px var(--black), 0 0 30px var(--neon-gold); }
    50% { text-shadow: 3px 3px 6px var(--black), 0 0 40px var(--neon-gold), 0 0 60px var(--gold); }
}

.hero p {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px var(--black);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    color: var(--gold);
    padding: 15px 30px;
    border: 2px solid var(--gold);
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(184, 0, 31, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    padding: 15px 30px;
    border: 2px solid var(--gold);
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    text-shadow: 0 0 10px var(--neon-gold);
}

/* Content Sections */
.section {
    padding: 80px 0;
    background: var(--black);
}

.section:nth-child(even) {
    background: var(--dark-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px var(--black);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Content Block Styles */
.content-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.content-block:nth-child(even) {
    flex-direction: row-reverse;
}

.content-block-image {
    flex: 1;
    min-width: 300px;
}

.content-block-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    filter: drop-shadow(0 5px 15px rgba(184, 0, 31, 0.3));
}

.content-block-text {
    flex: 2;
}

.content-block h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px var(--black);
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

/* Grid Layout */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.grid-item {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(184, 0, 31, 0.3);
    border-color: var(--gold);
}

.grid-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--gold));
}

.grid-item h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px var(--black);
}

.grid-item p {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-red) 100%);
    color: var(--light-gray);
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px var(--black);
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--black), var(--dark-red));
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        border: 1px solid var(--gold);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(255, 215, 0, 0.1);
        transform: translateX(10px);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .content-block {
        flex-direction: column !important;
        text-align: center;
    }

    .content-block-image {
        min-width: 100%;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .content-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 24px;
        font-size: 1rem;
    }
}