* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #bf8d5f;
    --primary-dark: #000;
    --text-light: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background-color: #000;
    color: var(--text-light);
}

/* Main Banner Section */
.banner-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.banner-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0.6) 80%, #000 100%);
    pointer-events: none;
    z-index: 1;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    animation: zoomIn 1.2s ease-out;
    /* Smooth fade at edges to blend with background */
    -webkit-mask-image: radial-gradient(ellipse 95% 90% at 50% 45%, black 40%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.4) 80%, transparent 100%);
    mask-image: radial-gradient(ellipse 95% 90% at 50% 45%, black 40%, rgba(0, 0, 0, 0.8) 60%, rgba(0, 0, 0, 0.4) 80%, transparent 100%);
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    z-index: 2;
}

.banner-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.banner-content p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Terms & Conditions Button */
.tc-button-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem;
    z-index: 100;
    pointer-events: none;
}

.tc-button {
    pointer-events: all;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.tc-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
    border-color: var(--primary-gold);
}

.tc-button:active {
    transform: translateY(-1px);
}

/* Modal Popup */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.4s ease;
    word-wrap: break-word;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Custom Scrollbar */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #c59d2a;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 1rem;
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    letter-spacing: 1px;
}

.close-button {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.close-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
    color: var(--primary-gold);
}

.modal-body {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.modal-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.17rem;
    color: var(--primary-gold);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.modal-body p {
    margin-bottom: 1rem;
    font-size: 0.855rem;
}

.modal-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner-image.desktop {
        display: none;
    }

    .banner-image.mobile {
        object-fit: cover;
    }

    .banner-content h1 {
        font-size: 2.5rem;
    }

    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }

    .modal-header h2 {
        font-size: 1.35rem;
    }

    .tc-button-container {
        padding: 1rem;
    }

    .tc-button {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

@media (min-width: 769px) {
    .banner-image.mobile {
        display: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}