body {
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
    background-color: #000;
    color: var(--text-color);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
}

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

body::-webkit-scrollbar-track {
    background: #000;
}

body::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--brand-color);
}

/* Top Bar */
.top-bar {
    background-color: #000;
    min-height: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: clamp(0.85rem, 1.6vh, 1.1rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

.top-bar i {
    color: #ffc107;
    margin-right: 8px;
}

/* Main Hero Section */
.hero-section {
    position: relative;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 5vw;
}

.hero-content-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(15px, 4vh, 40px);
    /* Dynamic gap for breathing room */
    max-width: 1100px;
}

.main-heading {
    font-size: clamp(1.8rem, 4vw + 1.2vh, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.sub-heading {
    font-size: clamp(0.9rem, 1.2vw + 0.6vh, 1.25rem);
    font-weight: 400;
    max-width: 900px;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* Call to Action Button */
.cta-button {
    background-color: var(--brand-color-dark);
    background-image: linear-gradient(180deg, var(--cta-gradient-start) 0%, var(--cta-gradient-end) 100%);
    color: white;
    padding: clamp(15px, 2.5vh, 25px) clamp(30px, 5vw, 55px);
    font-size: clamp(1.1rem, 2vw + 0.5vh, 1.5rem);
    font-weight: 700;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(238, 68, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(238, 68, 0, 0.6);
    color: white;
}

.availability-text {
    font-size: clamp(0.8rem, 1vw + 0.3vh, 1rem);
    color: #bbb;
    font-style: italic;
    margin: 0;
}

/* Footer Section */
.footer-section {
    background-color: transparent;
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
    padding-bottom: 3vh;
    margin-top: auto;
    /* Pushes footer to the very bottom */
}

.footer-disclaimer {
    font-size: clamp(0.6rem, 0.8vw + 0.2vh, 0.75rem);
    color: #777;
    max-width: 800px;
    margin: 0 auto 1.5vh;
    line-height: 1.5;
}

.footer-contact {
    font-size: clamp(0.7rem, 0.9vw + 0.2vh, 0.85rem);
    color: #999;
    margin-bottom: 1vh;
}

.footer-links {
    font-size: clamp(0.7rem, 0.9vw + 0.2vh, 0.85rem);
    margin-bottom: 1vh;
}

.footer-link {
    color: #999;
    text-decoration: none;
    margin: 0 10px;
}

.footer-link:hover {
    color: #fff;
}

.copyright {
    font-size: clamp(0.6rem, 0.8vw + 0.2vh, 0.8rem);
    color: #666;
    margin: 0;
}

/* Custom Modal Styling */
.modal-content {
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #444;
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.table-responsive {
    border-radius: 10px !important;
}