/* ==============================
   GREEN LAYOUT – CLEAN EDGE VERSION
   ============================== */

.page-header,
.page-footer {
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 1;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.page-header {
    top: 0;
    height: 100px;
}

.page-footer {
    bottom: 0;
}

.page-content {
    padding: 100px 0 220px;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* === MAIN INNER CONTAINER === */
.inner {
    width: 990px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: #0d5c3d; /* rich casino green */
    height: 100%;
    padding: 16px;
    border: 2px solid #d4af37; /* gold edge */
    border-radius: 0;
    box-shadow: none; /* remove local shadows to eliminate seams */
}

/* === HEADER / BODY / FOOTER MERGED === */
.page-header .inner {
    border-radius: 20px 20px 0 0;
    border: 2px solid #d4af37;
    border-bottom: none !important;
    background-color: #0d5c3d;
    box-shadow: none !important;
}

.page-content .inner {
    border-top: none !important;
    border-bottom: none !important;
    border-radius: 0;
    box-shadow: none !important;
}

.page-footer .inner {
    border-radius: 0 0 20px 20px;
    border: 2px solid #d4af37;
    border-top: none !important;
    background-color: #0d5c3d;
    box-shadow: none !important;
}

/* === APPLY ONE OUTER SHADOW TO ENTIRE TABLE === */
.page {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    border-radius: 20px;
}

/* === HEADER AREA === */
.green-header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.background.background-stars {
    background-image: url('../images/las-vegas-spotlight-background.png');
    background-position: bottom;
}

#page1 > * {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

/* === FOOTER STYLES === */
.footer-content {
    background-color: #0d5c3d !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 0 20px 20px;
}

.copyright {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #fff !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    margin: 10px 0;
    letter-spacing: 2px;
}

.copyright a {
    color: #f8e08e; /* gold text */
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #ffffff;
}

/* === RESPONSIVE === */
@media screen and (max-width: 992px) {
    .inner {
        width: calc(100% - 32px);
    }
}

@media screen and (max-width: 700px) {
    .page-content {
        padding: 100px 0 130px;
    }

    .page-content .inner {
        min-height: calc(100vh - 272px);
    }
}

@media screen and (max-width: 450px) {
    .page-content {
        padding: 100px 0 100px;
    }

    .page-content .inner {
        min-height: calc(100vh - 242px);
    }
}

