/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #02100a;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a2814;
    background: linear-gradient(180deg, #0d3d1f 0%, #061810 90%, #02100a 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    padding: 14px 0;
    position: relative;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 176px;
    height: 36px;
}

.nav {
    display: flex;
    gap: 50px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.nav a:hover {
    color: #fdca00;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 0;
    margin-bottom: 100px;
}

.slider-bg {
    position: relative;
    padding: 50px 0 100px;
    background: radial-gradient(ellipse at center, #0d3d1f 0%, #061810 70%, #02100a 100%);
    border-bottom: 5px solid #fdca00;
}

.slider-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    padding: 80px;
}

/* Hero Left */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 1;
}

.jjj-logo img {
    width: 392px;
    height: auto;
}

.hero-text p {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 100;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.hero-text .bold {
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(180deg, #fdca00 0%, #e6a900 100%);
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Teko', sans-serif;
    letter-spacing: 1px;
    padding: 15px 50px;
    border-radius: 8px;
    cursor: pointer;
    width: fit-content;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 202, 0, 0.4);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(253, 202, 0, 0.6);
}

/* Hero Right */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==========================================================================
   JACKPOT BADGES
   ========================================================================== */

.jackpots {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    padding: 2%;
}

.jackpot-badge {
    z-index: 1;
}

.jackpots-mobile {
    display: none;
}

/* ==========================================================================
   PROMOTIONS SECTION
   ========================================================================== */
.promotions-section {
    position: relative;
    padding: 0 0;
    margin-top: 150px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4),  0 -10px 30px rgba(0, 0, 0, 0.4);
}

.promotions-section .container-fluid {
    background-image: url('images/promo-circles.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 80px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    font-family: 'Teko', sans-serif;
    letter-spacing: 3px;
    margin-bottom: 40px;
    color: #ffffff;
    text-transform: uppercase;
}

.promo-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 40px;
}

.promo-box {
    flex: 1;
    max-width: 400px;
    background: rgba(10, 40, 20, 0.8);
    background-image: url('images/promo-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    border: 3px solid #fdca00;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    height: 100%;
}

.promo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(253, 202, 0, 0.3);
    border-color: #fff;
}

.promo-box img {
    width: 100%;
    height: auto;
    display: block;
}

.all-promos-btn {
    background: linear-gradient(180deg, #fdca00 0%, #e6a900 100%);
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Teko', sans-serif;
    letter-spacing: 4px;
    padding: 10px 30px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(253, 202, 0, 0.4);
    width: fit-content;
    margin: 0 auto;
    text-decoration: none;
    display: inline-block;
}

.all-promos-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(253, 202, 0, 0.6);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    padding: 60px 0 40px;
    margin-top: 80px;
}

.footer-content {
    text-align: center;
    margin-bottom: 50px;
}

.footer-logo {
    width: 176px;
    margin: 0 auto 30px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    max-width: 1174px;
    margin: 0 auto;
    text-align: center;
}

.footer-partners {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.footer-images-legal {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-partners img {
    max-height: 80px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-partners img:hover {
    opacity: 1;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1400px) {
    .container {
        padding: 0 40px;
    }

    .slider-content {
        gap: 40px;
    }

    .jackpots {
        gap: 40px;
    }

    .promotions-section .container-fluid {
        padding: 40px 60px;
    }
}

@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .jjj-logo img {
        width: 320px;
    }

    .hero-text p {
        font-size: 24px;
    }

    .jackpots {
        gap: 30px;
    }

    .promotions-section .container-fluid {
        padding: 40px 50px;
    }

    .promo-row {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        margin-bottom: 0px;
    }

    .nav {
        display: none;
    }

    .nav a {
        font-size: 14px;
    }

    .jjj-logo img {
        width: 280px;
    }

    .hero-text p {
        font-size: 22px;
    }

    .jackpots {
        gap: 20px;
    }

    .promotions-section .container-fluid {
        padding: 40px 40px;
        background-image: url('images/promo-circles-mobile.png');
    }

    .section-title {
        font-size: 36px;
    }

    .slider-content {
        margin-bottom: 0;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .promo-box {
        border: 1px solid #fdca00;
    }

    .jackpots {
        display: none;
    }

    .jackpots-mobile {
        display: block;
        padding: 10px;
    }

    .container {
        padding: 0;
    }
    
    .header {
        border-bottom: 3px solid #fdca00;
        background: #061810;
    }

    .slider-bg {
        background: radial-gradient(ellipse at center, #0b371c 0%, #082116 100%);
        border-bottom: 3px solid #fdca00;
    }

    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .logo {
        width: 140px;
        height: auto;
    }

    .nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .jjj-logo img {
        width: 240px;
    }

    .hero-text p {
        font-size: 20px;
    }

    .cta-button {
        font-size: 16px;
        padding: 12px 40px;
    }

    .jackpots {
        flex-wrap: wrap;
        gap: 15px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .promotions-section {
        padding: 0;
        margin-top: 20px;
    }

    .promotions-section .container-fluid {
        padding: 30px 25px;
    }

    .all-promos-btn {
        font-size: 18px;
        padding: 15px 40px;
    }

    .promo-row {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .promo-box {
        max-width: 400px;
    }

    .footer {
        padding: 30px 10px 40px;
        margin-top: 10px;
    }

    .footer-partners {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .slider-bg {
        padding: 30px 0 60px;
    }

    .jjj-logo img {
        width: 200px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .cta-button {
        font-size: 14px;
        padding: 10px 30px;
    }

    .jackpot-machine {
        width: 140%;
        max-width: none;
        margin-left: -60%;
        transform: scale(1.2);
        transform-origin: left center;
    }

    .jackpots {
        gap: 10px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 25px;
        letter-spacing: 2px;
    }

    .promotions-section .container-fluid {
        padding: 25px 20px;
    }

    .promo-row {
        gap: 20px;
    }

    .promo-box {
        padding: 15px;
    }

    .all-promos-btn {
        font-size: 16px;
        padding: 12px 35px;
    }

    .footer-text {
        font-size: 12px;
    }

    .footer-partners img {
        max-height: 29px;
    }
}
