/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #eee; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure container takes full viewport height */
}

/* Top Image */
.top-image {
    width: 100%;
    max-width: 400px; /* Adjust as needed */
    display: block;
    margin: 20px auto;
}

/* Spacer */
.spacer {
    height: 270vh; /* Huge spacer */
    width: 100%;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #555; /* Lighter border for dark background */
}

header h1 {
    font-size: 2.5em;
    font-weight: bold;
    color: #eee;
}

/* Main content */
main {
    margin-bottom: 40px;
    flex-grow: 1; /* Allow main content to grow and push footer down */
}

/* About section */
.about {
    margin-bottom: 40px;
}

.about h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #eee;
    font-weight: bold;
}

.about p {
    font-size: 1em;
    text-align: justify;
    margin-bottom: 20px;
}

/* Casino hotels section */
.casino-hotels {
    margin-bottom: 40px;
}

.hotel {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #444; /* Lighter border for dark background */
}

.hotel:last-child {
    border-bottom: none;
}

.hotel h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #eee;
    font-weight: bold;
}

.hotel-details h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    margin-top: 20px;
    color: #eee;
    font-weight: bold;
}

.hotel-details p {
    font-size: 1em;
    text-align: justify;
    margin-bottom: 15px;
}

/* Additional info section */
.additional-info {
    margin-bottom: 40px;
}

.additional-info p {
    font-size: 1em;
    text-align: justify;
    margin-bottom: 20px;
}

/* Footer */
footer {
    border-top: 2px solid #555; /* Lighter border for dark background */
    padding-top: 20px;
    margin-top: auto; /* Push footer to the bottom */
}

.copyright {
    text-align: center;
    margin-bottom: 30px;
}

.copyright p {
    font-size: 0.9em;
    color: #bbb;
}

.disclaimer {
    margin-bottom: 20px;
}

.disclaimer h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #eee;
    font-weight: bold;
}

.disclaimer p {
    font-size: 0.9em;
    text-align: justify;
    margin-bottom: 10px;
    color: #bbb;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    header h1 {
        font-size: 2em;
    }
    
    .about h2 {
        font-size: 1.5em;
    }
    
    .hotel h3 {
        font-size: 1.3em;
    }
    
    .hotel-details h4 {
        font-size: 1.1em;
    }
}

