html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* full height */
}

/* Whatever your main content wrapper is */
.main-content {
    flex: 1; /* pushes footer down */
}
/* ===== Banner Section ===== */
.banner {
    width: 100%;
    overflow: hidden;
}

.banner img {
    display: block;
    width: 100%;
    height: auto;
}

/* Mobile/tablet (≤768px): taller + zoomed-in */
@media (max-width: 768px) {
    .banner img {
        height: 100px !important;
        /* adjust height to how tall you want it */
        object-fit: cover;
        /* zoom-in and crop edges */
        object-position: center;
        /* keep center visible */
    }
}

/* ===== Game Cards Section ===== */
.slots-section {
    padding: 40px 0 80px;
}

.slots-grid {
    max-width: 1200px;
    margin: 0 auto;               /* centers grid container */
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    justify-items: center;        /* centers the items */
    gap: 24px;
}

.slot-card {
    width: 100%;
    max-width: 210px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: center;
    border: none;
}

.slot-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Optional: simple responsiveness */
@media (max-width: 768px) {
    .slots-section {
        padding: 20px 20px 00px;
    }

    .slots-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
        /* or 3 columns if you prefer */
        gap: 5px;
    }
}

/* ===== Promotion Section ===== */
.promo-section {
    padding: 20px 0;
    width: 1200px;
    margin: 0 auto;
    /* centers horizontally */
}


.promo-card {
    display: flex;
    background: #1a0d05;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
}

/* LEFT IMAGE */
.promo-image {
    width: 60%;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* RIGHT CONTENT */
.promo-content {
    width: 40%;
    padding: 25px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* TAGS */
.promo-tags {
    margin-bottom: 10px;
}

.tag {
    background: #4a3e34;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    margin-right: 6px;
    color: #fff;
}

/* TITLE */
.promo-title {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #ffd83c;
}

/* DESCRIPTION */
.promo-desc {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* BUTTONS */
.promo-buttons {
    display: flex;
    gap: 15px;
}

.promo-btn {
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

/* Yellow button */
.promo-btn.info {
    background: #ffce44;
    color: #000;
}

/* Pink Apply button */
.promo-btn.action {
    background: #e00056;
    color: #fff;
}

@media (max-width: 768px) {

    /* Section becomes full width */
    .promo-section {
        width: 100%;
        padding: 10px 15px;
        margin: 0 auto;
    }

    /* Cards stack vertically */
    .promo-card {
        flex-direction: column;
        border-radius: 4px;
    }

    /* Image takes top full width */
    .promo-image {
        width: 100%;
    }

    /* Taller, more visible image for mobile */
    .promo-image img {
        width: 100%;
        height: 260px;
        /* taller for nicer mobile look */
        object-fit: cover;
        object-position: center;
    }

    /* Content takes full width under the image */
    .promo-content {
        width: 100%;
        padding: 20px 15px;
    }

    /* Tags wrap nicely */
    .promo-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 12px;
    }

    /* Smaller title for mobile readability */
    .promo-title {
        font-size: 18px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    /* Smaller text */
    .promo-desc {
        font-size: 14px;
        margin-bottom: 16px;
    }

    /* Buttons stacked or full width */
    .promo-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .promo-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 15px;
    }
}


/* ===== VIP Section (White Theme) ===== */
.vip-section {
    background: #ffffff;
    color: #222;
    font-family: Arial, sans-serif;
}

/* Top bar */
.vip-header-bar {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 25px 0;
}

.vip-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.vip-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

/* VIP card icons */
.vip-card-list {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.vip-card {
    text-align: center;
    font-size: 13px;
}

.vip-card img {
    display: block;
    width: 70px;
    height: auto;
    margin: 0 auto 6px;
    border-radius: 4px;
}

.vip-card span {
    display: block;
    color: #333;
}

/* Table */
.vip-table-wrapper {
    max-width: 1200px;
    margin: 30px auto 60px;
    overflow-x: auto;
}

.vip-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: #333;
    background: #fff;
}

.vip-table th,
.vip-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e7e7e7;
    text-align: center;
    white-space: nowrap;
}

/* left column (feature names) */
.vip-table th:first-child,
.vip-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: #b8860b;
    /* gold */
    white-space: normal;
}

/* header row */
.vip-table thead th {
    font-weight: 700;
    background: #fafafa;
    color: #444;
    border-bottom: 2px solid #d8d8d8;
}

/* group heading rows */
.vip-group-row td {
    padding-top: 22px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dcdcdc;
    font-weight: 700;
    color: #b8860b;
    /* gold */
    text-align: left;
    font-size: 15px;
    background: #ffffff;
}

/* zebra effect */
.vip-table tbody tr:nth-child(even):not(.vip-group-row) {
    background: #fafafa;
}

/* Clean subtle shadow under table */
.vip-table {
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.08);
}

/* ===== Responsive (≤ 768px) ===== */
@media (max-width: 768px) {

    .vip-header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .vip-title {
        font-size: 28px;
        margin-bottom: 10px;
        color: #111;
    }

    .vip-card-list {
        justify-content: flex-start;
    }

    .vip-table-wrapper {
        margin: 20px auto 40px;
    }

    .vip-table {
        font-size: 13px;
    }
}


/* ===== Blog Section ===== */
.blog-section {
    width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* Blog Card */
.blog-card {
    display: flex;
    flex-direction: column;
    color: #fff;
    background: transparent;
}

/* Blog Image */
.blog-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 4px;
}

/* Content Below Image */
.blog-content {
    padding-top: 12px;
}

/* Category */
.blog-category {
    color: #1a73ff;
    font-size: 14px;
    margin-bottom: 6px;
    display: block;
}

/* Title */
.blog-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 5px 0 8px;
    color: #000;
}

/* Author & Date */
.blog-meta {
    color: #1a8cff;
    font-size: 14px;
    margin: 5px 0 10px;
}

/* Excerpt */
.blog-excerpt {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.45;
    color: #000;
}

/* Hover Effect */
.blog-card:hover .blog-title {
    color: #1a73ff;
    cursor: pointer;
}

/* Responsive (Tablet + Mobile) */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-section {
        width: 95%;
    }
}

/* ===== Footer Section ===== */
.footer {
    width: 100%;
    background: #ffffff;
    /* clean white like screenshot */
    padding: 40px 0 0;
    font-family: Arial, sans-serif;
    color: #333;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: flex-start;
    text-align: left;
}

.footer h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1b1b1b;
}

.icon-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.icon-row img {
    height: 32px !important;
    /* adjust according to your icons */
    width: auto;
}

.footer-bottom-wrap {
    padding-top: 40px;
    width: 100%;
}

.footer-bottom-blue {
    background: #2c6bc4;
    /* blue bar */
    height: 35px;
    /* adjust height if needed */
    width: 100%;
}

.footer-bottom-pink {
    background: #f9174c;
    /* pink bar */
    padding: 10px 0;
    text-align: center;
}

.footer-bottom-pink p {
    margin: 0;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        padding: 0px 20px 0;
        gap: 30px;
    }
}