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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    color: #ffffff;
}

/* Hide site header by default */
.site-header {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.site-title a {
    color: #4ade80;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Default casino background image - can be overridden */
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                      url('data:image/svg+xml;utf8,<svg width="1920" height="400" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="casino" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect width="100" height="100" fill="%23111"/><circle cx="50" cy="50" r="2" fill="%234ade80" opacity="0.3"/></pattern></defs><rect width="1920" height="400" fill="url(%23casino)"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Hero with gradient background (default) */
.hero-gradient {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
                linear-gradient(135deg, 
                    rgba(26, 26, 46, 0.9) 0%, 
                    rgba(15, 15, 30, 0.9) 50%, 
                    rgba(22, 33, 62, 0.9) 100%);
}

/* Hero with image background */
.hero-image {
    position: relative;
}

.hero-image .hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Hero with video background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 40px 20px;
}

.page-title {
    font-size: 56px;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background: #0a0a0a;
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 80px;
}

/* Hotel Cards */
.hotel-card {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.07) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hotel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 222, 128, 0.1), transparent);
    transition: left 0.6s ease;
}

.hotel-card:hover::before {
    left: 100%;
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(74, 222, 128, 0.3),
                0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 222, 128, 0.5);
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.05) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.hotel-card:nth-child(even) {
    grid-template-columns: 1fr 400px;
}

.hotel-card:nth-child(even) .hotel-image {
    order: 2;
}

.hotel-card:nth-child(even) .hotel-content {
    order: 1;
}

/* Hotel Image */
.hotel-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hotel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hotel-card:hover .hotel-image img {
    transform: scale(1.15);
}

/* Hotel Content */
.hotel-content {
    padding: 10px;
}

.hotel-name {
    font-size: 32px;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hotel-location {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hotel-rating {
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hotel-description {
    font-size: 16px;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2) 0%, rgba(74, 222, 128, 0.1) 100%);
    color: #4ade80;
    padding: 6px 14px;
    border-radius: 25px;
    font-size: 12px;
    border: 1px solid rgba(74, 222, 128, 0.3);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(74, 222, 128, 0.3);
    transform: translateY(-2px);
}

.book-now-btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(74, 222, 128, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-now-btn:hover {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 222, 128, 0.6);
}

/* No Hotels Message */
.no-hotels-message {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.07) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.no-hotels-message p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.no-hotels-message p:last-child {
    color: #4ade80;
    font-size: 16px;
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 1) 100%);
    padding: 60px 20px 40px;
    text-align: center;
    border-top: 1px solid rgba(74, 222, 128, 0.2);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #4ade80, transparent);
    animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.disclaimer {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 30px;
}

.disclaimer-title {
    font-size: 16px;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 18+ Badge */
.age-restriction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    border-radius: 50%;
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.6),
                inset 0 2px 4px rgba(255, 255, 255, 0.2);
    margin: 30px auto;
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { 
        box-shadow: 0 0 40px rgba(239, 68, 68, 0.6),
                    inset 0 2px 4px rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 60px rgba(239, 68, 68, 0.9),
                    inset 0 2px 4px rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
    100% { 
        box-shadow: 0 0 40px rgba(239, 68, 68, 0.6),
                    inset 0 2px 4px rgba(255, 255, 255, 0.2);
        transform: scale(1);
    }
}

.copyright {
    font-size: 13px;
    color: #64748b;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hotel-card,
    .hotel-card:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .hotel-card:nth-child(even) .hotel-image {
        order: 1;
    }
    
    .hotel-card:nth-child(even) .hotel-content {
        order: 2;
    }
    
    .hotel-name {
        font-size: 26px;
    }
    
    .hotel-description {
        font-size: 15px;
    }
}

/* WordPress Admin Bar Adjustment */
body.admin-bar .site-header {
    top: 32px;
}

body.admin-bar .hero-section {
    margin-top: 0;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}