/* ==========================================
   IMPERIAL FORTUNE CASINO - STYLES
   Red & Gold Oriental Luxury Theme
   ========================================== */

/* CSS Variables for Theme Colors */
:root {
    --color-red-dark: #8B0000;
    --color-red-primary: #C41E3A;
    --color-red-light: #E85A71;
    --color-gold-dark: #B8860B;
    --color-gold-primary: #D4AF37;
    --color-gold-light: #F4D03F;
    --color-black: #0D0D0D;
    --color-dark-gray: #1A1A1A;
    --color-gray: #4A4A4A;
    --color-light-gray: #E8E8E8;
    --color-white: #FFFFFF;
    --color-overlay: rgba(0, 0, 0, 0.6);
    --color-overlay-light: rgba(255, 255, 255, 0.95);

    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: 'Georgia', 'Times New Roman', serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section-light {
    background: var(--color-white);
}

.section-dark {
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
    color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
    margin: 0 auto 20px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-dark-gray);
    font-style: italic;
}

.section-dark .section-subtitle {
    color: var(--color-gold-light);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1002;
}

.logo img {
    width: 180px;
    height: auto;
    border-radius: 0;
    border: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold-primary);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-gold-primary);
    transition: var(--transition-normal);
    border-radius: 2px;
}

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

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

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

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(139, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.9) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    text-align: center;
    color: var(--color-white);
    max-width: 700px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: bold;
    color: var(--color-gold-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.9);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--color-gold-light);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-location,
.hero-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero-location svg,
.hero-hours svg {
    color: var(--color-gold-primary);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* Buttons */
.btn {
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    border-radius: 4px;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-red-primary) 0%, var(--color-red-dark) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-gold-primary);
    border: 2px solid var(--color-gold-primary);
}

.btn-secondary:hover {
    background: var(--color-gold-primary);
    color: var(--color-black);
}

.btn-full {
    width: 100%;
}

/* Hero Navigation */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
}

.hero-dot.active {
    background: var(--color-gold-primary);
    transform: scale(1.2);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    color: var(--color-gold-primary);
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: var(--color-gold-primary);
    color: var(--color-black);
}

.hero-arrow-prev {
    left: 30px;
}

.hero-arrow-next {
    right: 30px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--color-gray);
}

.about-text strong {
    color: var(--color-red-primary);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--color-light-gray);
    border-radius: 8px;
    transition: var(--transition-normal);
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    font-size: 2rem;
}

.highlight-text h4 {
    color: var(--color-red-primary);
    font-size: 1rem;
    margin-bottom: 3px;
}

.highlight-text p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--color-gray);
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   GAMING SECTION
   ========================================== */
.gaming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.gaming-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.gaming-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.gaming-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.gaming-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gaming-card:hover .gaming-image img {
    transform: scale(1.1);
}

.gaming-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.gaming-badge {
    background: linear-gradient(135deg, var(--color-gold-primary) 0%, var(--color-gold-dark) 100%);
    color: var(--color-black);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.gaming-content {
    padding: 30px;
}

.gaming-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-red-primary);
    margin-bottom: 15px;
}

.gaming-content p {
    color: var(--color-gray);
    margin-bottom: 20px;
}

.gaming-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.gaming-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--color-gray);
    font-size: 0.95rem;
}

.gaming-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold-primary);
    font-weight: bold;
}

/* ==========================================
   LOUNGE & BAR SECTION
   ========================================== */
.lounge-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.lounge-gallery {
    position: sticky;
    top: 100px;
}

.lounge-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 15px;
}

.lounge-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.lounge-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.lounge-thumbs img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-normal);
    opacity: 0.7;
}

.lounge-thumbs img:hover,
.lounge-thumbs img.active {
    opacity: 1;
    box-shadow: 0 0 0 3px var(--color-gold-primary);
}

.lounge-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-red-primary);
    margin-bottom: 20px;
}

.lounge-info p {
    color: var(--color-gray);
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.lounge-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 25px;
}

.lounge-feature {
    display: flex;
    gap: 20px;
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.lounge-feature h4 {
    color: var(--color-red-primary);
    margin-bottom: 8px;
}

.lounge-feature p {
    margin: 0;
    font-size: 0.95rem;
}

.lounge-note {
    padding: 20px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-left: 4px solid var(--color-gold-primary);
    border-radius: 4px;
    font-style: italic;
    color: var(--color-gray);
}

/* ==========================================
   VIP SECTION
   ========================================== */
.section-vip {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%);
    position: relative;
}

.section-vip::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="gold-pattern" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="1" fill="rgba(212,175,55,0.1)"/></pattern></defs><rect fill="url(%23gold-pattern)" width="100" height="100"/></svg>');
    opacity: 0.3;
}

.vip-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.vip-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vip-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.vip-main img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.vip-secondary {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.vip-secondary img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.vip-info h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold-primary);
    margin-bottom: 20px;
}

.vip-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.vip-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.vip-feature-item {
    display: flex;
    align-items: start;
    gap: 15px;
}

.vip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.vip-feature-item h4 {
    color: var(--color-gold-primary);
    margin-bottom: 5px;
}

.vip-feature-item p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.vip-note {
    padding: 15px 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--color-gold-primary);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--color-gold-light);
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: var(--color-gold-primary);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ==========================================
   EVENTS SECTION
   ========================================== */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-red-primary);
    color: var(--color-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.event-content {
    padding: 25px;
    position: relative;
}

.event-date {
    position: absolute;
    top: -30px;
    right: 25px;
    background: var(--color-gold-primary);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.event-day {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-black);
    line-height: 1;
}

.event-month {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-black);
    text-transform: uppercase;
}

.event-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-red-primary);
    margin-bottom: 15px;
    padding-top: 10px;
}

.event-content p {
    color: var(--color-gray);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.event-link {
    color: var(--color-red-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.event-link:hover {
    color: var(--color-gold-primary);
}

.promotion-banner {
    background: linear-gradient(135deg, var(--color-red-primary) 0%, var(--color-red-dark) 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: var(--color-white);
    box-shadow: var(--shadow-gold);
}

.promotion-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.promotion-content p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.promotion-terms {
    font-size: 0.85rem;
    opacity: 0.8;
    font-style: italic;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-light-gray);
}

.map-container iframe {
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: var(--color-light-gray);
    padding: 25px;
    border-radius: 12px;
    transition: var(--transition-normal);
}

.contact-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-red-primary) 0%, var(--color-red-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-primary);
    margin-bottom: 15px;
}

.contact-card h3 {
    color: var(--color-red-primary);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--color-gray);
}

.contact-card a {
    color: var(--color-dark-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-card a:hover {
    color: var(--color-red-primary);
}

.contact-card-full {
    grid-column: 1;
}

.hours-table {
    margin-top: 15px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-light-gray);
    color: var(--color-gray);
    font-size: 0.95rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-red-primary);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-dark-gray);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-light-gray);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold-primary);
}

.form-group textarea {
    resize: vertical;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 60px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: var(--font-heading);
    color: var(--color-gold-primary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-logo {
    width: 180px;
    height: auto;
    border-radius: 0;
    border: none;
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-primary);
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--color-gold-primary);
    color: var(--color-black);
}

.footer-links,
.footer-hours,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-hours li,
.footer-contact li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-disclaimer {
    margin-top: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-gold-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--color-gold-light);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .about-content,
    .lounge-content,
    .vip-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .lounge-gallery {
        position: static;
    }

    .lounge-main img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

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

    .map-container iframe {
        height: 300px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 100px 40px;
        gap: 20px;
        transition: var(--transition-normal);
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

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

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

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

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-arrow-prev {
        left: 15px;
    }

    .hero-arrow-next {
        right: 15px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

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

    .vip-features {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .navbar,
    .hero-dots,
    .hero-arrow,
    .back-to-top,
    .contact-form-wrapper {
        display: none;
    }

    .hero {
        height: auto;
        min-height: 400px;
    }

    .section {
        page-break-inside: avoid;
    }
}

/* ==========================================
   ACCESSIBILITY
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Keyboard Navigation */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--color-gold-primary);
    outline-offset: 2px;
}

/* ==========================================
   RSVP MODAL
   ========================================== */
.rsvp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.rsvp-modal.active {
    display: block;
}

.rsvp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.rsvp-modal-content {
    position: relative;
    background: var(--color-white);
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    margin: 5vh auto;
    border-radius: 12px;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    animation: modalSlideIn 0.3s ease;
}

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

.rsvp-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--color-light-gray);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    z-index: 10;
}

.rsvp-modal-close:hover {
    background: var(--color-red-primary);
    color: var(--color-white);
}

.rsvp-modal-header {
    background: linear-gradient(135deg, var(--color-red-primary) 0%, var(--color-red-dark) 100%);
    color: var(--color-white);
    padding: 30px 30px 25px;
    text-align: center;
}

.rsvp-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold-primary);
    margin-bottom: 8px;
}

.rsvp-modal-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.rsvp-form {
    padding: 30px;
}

.rsvp-form .form-group {
    margin-bottom: 20px;
}

.rsvp-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-dark-gray);
    font-weight: 500;
    font-size: 0.95rem;
}

.rsvp-form input,
.rsvp-form select,
.rsvp-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-light-gray);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--color-white);
}

.rsvp-form input:focus,
.rsvp-form select:focus,
.rsvp-form textarea:focus {
    outline: none;
    border-color: var(--color-gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.rsvp-form textarea {
    resize: vertical;
    min-height: 80px;
}

.rsvp-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-decoration: none;
    padding: 0;
    transition: var(--transition-fast);
}

.rsvp-trigger:hover {
    color: var(--color-gold-primary);
}

.rsvp-modal-content .btn-full {
    margin-top: 10px;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .rsvp-modal-content {
        width: 95%;
        margin: 10vh auto;
    }

    .rsvp-modal-header {
        padding: 25px 20px 20px;
    }

    .rsvp-modal-header h2 {
        font-size: 1.5rem;
    }

    .rsvp-form {
        padding: 20px;
    }
}

/* ==========================================
   PAGE HEADERS
   ========================================== */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    margin-top: 120px;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-gold-primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.page-header-content p {
    font-size: 1.3rem;
    color: var(--color-gold-light);
    font-style: italic;
}

.page-header-breadcrumb {
    margin-top: 20px;
    font-size: 0.95rem;
}

.page-header-breadcrumb a {
    color: var(--color-gold-primary);
    text-decoration: none;
}

.page-header-breadcrumb span {
    margin: 0 10px;
    opacity: 0.6;
}

.gaming-header {
    background: url('assets/Gaming/Gaming.jpg') center/cover;
}

.lounge-header {
    background: url('assets/Lounge/Lounge.jpg') center/cover;
}

.vip-page-header {
    background: url('assets/Vip/vip.jpg') center/cover;
}

.events-header {
    background: url('assets/Events/ba9210a9-1c33-40ef-b92d-db11f2f1aa35.jpg') center/cover;
}

.gallery-header {
    background: url('assets/Gallery/Gallery.jpg') center/cover;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.section-cta {
    background: linear-gradient(135deg, var(--color-red-primary) 0%, var(--color-red-dark) 100%);
    color: var(--color-white);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold-primary);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   GAMING PAGE STYLES
   ========================================== */
.gaming-overview {
    text-align: center;
}

.gaming-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    padding: 30px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--color-red-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gaming-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.gaming-showcase.reversed {
    direction: rtl;
}

.gaming-showcase.reversed > * {
    direction: ltr;
}

.gaming-showcase-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.gaming-showcase-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gaming-showcase-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-red-primary);
    margin-bottom: 20px;
}

.gaming-features-list {
    margin-top: 25px;
}

.feature-list-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.feature-list-item h4 {
    color: var(--color-red-primary);
    margin-bottom: 5px;
}

.feature-list-item p {
    color: var(--color-white);
    font-size: 0.9rem;
}

.section-light .feature-list-item p {
    color: var(--color-gray);
}

.table-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.table-game-card {
    background: var(--color-light-gray);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.table-game-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.table-game-card h4 {
    color: var(--color-red-primary);
    margin-bottom: 10px;
}

.table-game-card p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.why-us-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.why-us-card h3 {
    color: var(--color-gold-primary);
    margin-bottom: 15px;
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.8);
}

.guidelines-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.guidelines-section h3 {
    color: var(--color-red-primary);
    margin-bottom: 20px;
}

.rules-list {
    list-style: none;
}

.rules-list li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    color: var(--color-gray);
    border-bottom: 1px solid var(--color-light-gray);
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold-primary);
    font-weight: bold;
}

/* ==========================================
   LOUNGE PAGE STYLES
   ========================================== */
.lounge-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.lounge-hero-gallery {
    position: sticky;
    top: 100px;
}

.lounge-hero-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 15px;
}

.lounge-hero-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.lounge-hero-thumbs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.lounge-thumb {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.lounge-thumb:hover,
.lounge-thumb.active {
    opacity: 1;
    box-shadow: 0 0 0 3px var(--color-gold-primary);
}

.lounge-hero-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-red-primary);
    margin-bottom: 20px;
}

.lounge-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.lounge-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--color-light-gray);
    border-radius: 8px;
}

.lounge-highlight-icon {
    font-size: 2rem;
}

.lounge-highlight h4 {
    color: var(--color-red-primary);
    margin-bottom: 3px;
}

.lounge-highlight p {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin: 0;
}

.lounge-welcome-note {
    padding: 20px;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-left: 4px solid var(--color-gold-primary);
    border-radius: 4px;
    font-style: italic;
    color: var(--color-gray);
}

.drink-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.drink-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
}

.drink-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.drink-category h4 {
    color: var(--color-gold-primary);
    margin-bottom: 15px;
}

.drink-category ul {
    list-style: none;
}

.drink-category li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
}

.signature-drinks {
    margin-top: 40px;
}

.signature-drinks h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold-primary);
    margin-bottom: 20px;
}

.cocktail-list {
    display: grid;
    gap: 15px;
}

.cocktail-item {
    background: var(--color-light-gray);
    padding: 20px;
    border-radius: 8px;
}

.cocktail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cocktail-header h5 {
    font-size: 1.1rem;
    color: var(--color-red-primary);
}

.cocktail-price {
    font-weight: bold;
    color: var(--color-gold-dark);
}

.cocktail-item p {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.menu-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.menu-section {
    background: var(--color-light-gray);
    padding: 25px;
    border-radius: 12px;
}

.menu-section h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-red-primary);
    margin-bottom: 20px;
}

.menu-items {
    list-style: none;
}

.menu-items li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

.menu-items li:last-child {
    border-bottom: none;
}

.menu-item-name {
    color: var(--color-gray);
}

.menu-item-price {
    font-weight: bold;
    color: var(--color-red-primary);
}

.sports-content {
    text-align: center;
}

.sports-feature {
    display: flex;
    align-items: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.sports-icon {
    font-size: 4rem;
}

.sports-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold-primary);
    margin-bottom: 15px;
}

.sports-text p {
    color: rgba(255, 255, 255, 0.8);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.sports-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
}

.sports-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
}

.sports-item h4 {
    color: var(--color-gold-primary);
    margin-bottom: 10px;
}

.sports-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.sports-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.sports-note p {
    color: var(--color-gold-light);
    font-size: 1.1rem;
}

/* ==========================================
   VIP PAGE STYLES
   ========================================== */
.vip-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.vip-hero-gallery {
    position: sticky;
    top: 100px;
}

.vip-hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
    margin-bottom: 15px;
}

.vip-hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition-normal);
}

.vip-hero-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.vip-thumb {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-normal);
}

.vip-thumb:hover,
.vip-thumb.active {
    opacity: 1;
    box-shadow: 0 0 0 3px var(--color-gold-primary);
}

.vip-hero-content h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold-primary);
    margin-bottom: 20px;
}

.vip-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.vip-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.vip-feature {
    display: flex;
    align-items: start;
    gap: 15px;
}

.vip-feature-icon {
    font-size: 2rem;
}

.vip-feature h4 {
    color: var(--color-gold-primary);
    margin-bottom: 5px;
}

.vip-feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vip-benefit-card {
    background: var(--color-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

.vip-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vip-benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-red-primary);
    margin-bottom: 15px;
}

.vip-benefit-card p {
    color: var(--color-gray);
    line-height: 1.7;
}

.vip-gaming-content {
    text-align: center;
}

.vip-gaming-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.vip-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.vip-game {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
}

.vip-game-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.vip-game-icon {
    font-size: 2.5rem;
}

.vip-game h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-gold-primary);
}

.vip-game p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.vip-game-details {
    list-style: none;
}

.vip-game-details li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.vip-game-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold-primary);
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vip-tier {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.vip-tier.featured {
    border: 3px solid var(--color-gold-primary);
    transform: scale(1.05);
}

.tier-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-red-primary);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.tier-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
}

.vip-tier h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-red-primary);
    text-align: center;
    margin-bottom: 15px;
}

.tier-requirements {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--color-light-gray);
}

.tier-benefits {
    list-style: none;
}

.tier-benefits li {
    padding: 10px 0;
    color: var(--color-gray);
    font-size: 0.95rem;
}

/* ==========================================
   EVENTS PAGE STYLES
   ========================================== */
.featured-event {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.featured-event-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.featured-event-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-red-primary);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.event-date-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-gold-primary);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: var(--shadow-gold);
}

.date-day {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-black);
    line-height: 1;
}

.date-month {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-black);
    text-transform: uppercase;
}

.date-year {
    font-size: 0.8rem;
    color: var(--color-black);
}

.featured-event-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-red-primary);
    margin-bottom: 15px;
}

.event-time {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 20px;
}

.event-description {
    color: var(--color-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.event-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.event-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--color-light-gray);
    border-radius: 8px;
}

.highlight-icon {
    font-size: 1.8rem;
}

.event-highlight-item span {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-item {
    display: flex;
    gap: 30px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    align-items: start;
}

.event-calendar {
    background: var(--color-gold-primary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.event-cal-day {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-black);
    line-height: 1;
}

.event-cal-month {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-black);
    text-transform: uppercase;
}

.event-details {
    flex: 1;
}

.event-details .event-badge {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
}

.event-details h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-gold-primary);
    margin-bottom: 10px;
}

.event-meta {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.event-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.promotion-card {
    background: var(--color-white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.promotion-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.promotion-icon {
    font-size: 2.5rem;
}

.promotion-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-red-primary);
}

.promotion-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-gold-dark);
    margin-bottom: 15px;
}

.promotion-desc {
    color: var(--color-gray);
    margin-bottom: 20px;
}

.promotion-terms {
    list-style: none;
}

.promotion-terms li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--color-gray);
    font-size: 0.85rem;
}

.promotion-terms li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold-primary);
}

.birthday-club {
    text-align: center;
}

.birthday-content {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(139, 0, 0, 0.2) 100%);
    padding: 50px;
    border-radius: 12px;
    border: 2px solid var(--color-gold-primary);
}

.birthday-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.birthday-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-gold-primary);
    margin-bottom: 20px;
}

.birthday-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.birthday-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.birthday-benefit {
    text-align: center;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--color-gold-primary);
}

.benefit-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.birthday-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ==========================================
   GALLERY PAGE STYLES
   ========================================== */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--color-red-primary);
    color: var(--color-red-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    border-radius: 25px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-red-primary);
    color: var(--color-white);
}

.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item[data-category] {
    aspect-ratio: 4/3;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gallery-category {
    color: var(--color-gold-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-item-content h3 {
    color: var(--color-white);
    font-size: 1.1rem;
}

.gallery-item-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.video-preview {
    margin-top: 40px;
}

.video-placeholder {
    background: var(--color-dark-gray);
    padding: 80px;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed var(--color-gold-primary);
}

.video-icon {
    font-size: 4rem;
    color: var(--color-gold-primary);
    margin-bottom: 20px;
}

.video-placeholder h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold-primary);
    margin-bottom: 15px;
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.7);
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
}

.social-btn.facebook {
    background: #1877F2;
    color: var(--color-white);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: var(--color-white);
}

.social-btn.tiktok {
    background: #000000;
    color: var(--color-white);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   RESPONSIVE STYLES FOR NEW PAGES
   ========================================== */
@media (max-width: 1024px) {
    .gaming-showcase,
    .lounge-hero,
    .vip-hero,
    .featured-event {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gaming-showcase.reversed {
        direction: ltr;
    }

    .lounge-hero-gallery,
    .vip-hero-gallery {
        position: static;
    }

    .lounge-hero-main img,
    .vip-hero-image img,
    .featured-event-image img {
        height: 350px;
    }

    .lounge-main img,
    .vip-main img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .page-header-content p {
        font-size: 1rem;
    }

    .gaming-stats,
    .lounge-highlights,
    .vip-features,
    .event-highlights {
        grid-template-columns: 1fr;
    }

    .table-games-grid,
    .why-us-grid,
    .drink-categories,
    .menu-sections,
    .sports-grid,
    .vip-benefits-grid,
    .vip-games,
    .promotions-grid {
        grid-template-columns: 1fr;
    }

    .birthday-benefits {
        flex-direction: column;
        gap: 20px;
    }

    .event-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .vip-tier.featured {
        transform: scale(1);
    }

    .gallery-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .gaming-showcase-image img,
    .lounge-hero-main img,
    .vip-hero-image img,
    .featured-event-image img {
        height: 250px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .cocktail-header,
    .feature-list-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
