body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #F0F0F0;
    color: #333;
}
html {
    scroll-behavior: smooth;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}
h1 {
    font-family: Inter;
    font-weight: 700;
    font-size: 62px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #FFFFFF;
}

h2 {
    font-family: Inter;
    font-weight: 700;
    font-size: 42px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #FFFFFF;
}

p {
    font-family: Inter;
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #FFFFFF;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: #4A250E;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    box-sizing: border-box;
}

.popup-header {
    margin-bottom: 20px;
}

.age-icon {
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto;
}

.popup-body h2 {
    color: #FFF;
    font-size: 32px;
    margin-bottom: 10px;
}

.popup-body p {
    color: #FFF;
    font-size: 18px;
    margin-bottom: 30px;
}

.popup-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-yes, .btn-no {
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    transition: background-color 0.3s ease;
    flex: 1;
    max-width: 180px;
}

.btn-yes {
    background: linear-gradient(to right, #6EE200, #3E9400);
    color: #FFF;
}

.btn-yes:hover {
    background: linear-gradient(to right, #5CBF00, #327A00);
}

.btn-no {
    background-color: transparent;
    border: 2px solid #DD7900;
    color: #FFF;
}

.btn-no:hover {
    background-color: #5A321B;
}
.top-section-background {
    background-image: url('img/main-hero.png');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: #DD7900;
}

.main-header {
    padding: 60px 0 20px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}
.policy-header {
    background-color: #C64F00;
    padding: 60px 0 20px 0;
    text-align: center;
    position: relative;
}

.main-header .logo {
    max-width: 500px;
    height: auto;
}

.hero-section {
    padding: 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-img {
    margin-bottom: 20px;
    width: 72px;
    height: 72px;
    margin-left: 20px;
}
.hero-title {
    max-width: 800px;
}
.hero-text h1 {
    color: #FFFFFF;
}

.hero-text p {
    color: #FFFFFF;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-top: 0;
    margin-bottom: 20px;
}

.hero-text p {
    margin-bottom: 40px;
}

.features {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #724426;
    border-top-left-radius: 51.76px;
    border-top-right-radius: 7.39px;
    border-bottom-right-radius: 7.39px;
    border-bottom-left-radius: 51.76px;

    padding-left: 13.31px;
    padding-right: 22.92px;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    max-width: 200px;
    flex-grow: 1;
    flex-basis: auto;
    color: #FFF;
    font-size: 22px;
    font-weight: 400;
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 0;
}

.feature-item span {
    margin: 0;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .features {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .feature-item {
        min-width: unset;
        justify-content: center;
        text-align: center;
    }

    .feature-item span {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-text {
        text-align: left;
        align-items: flex-start;
        width: 100%;
    }

    .feature-item span {
        font-size: 18px;
        text-align: center;
    }

    .feature-icon-wrapper {
        margin-bottom: 5px;
    }
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.promo-section {
    padding: 60px 0;
}

.promo-box {
    background-color: #6C3D20;
    border-radius: 20px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 30px 40px;
    border: 1px solid #7D4F35;
    gap: 20px;
}

.promo-left-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: #4A250E;
    border-radius: 26px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex: 1;
    box-sizing: border-box;
}

.cazinou-nou-badge {
    color: #FFCC00;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 200px;
    border: 1px solid #FFCC00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: -10px;
}

.promo-magic-jackpot-logo {
    max-width: 280px;
    height: auto;
}

.promo-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.rating-number {
    font-family: Inter;
    font-weight: 700;
    font-size: 32px;
    color: #FDD835;
}

.rating-star-icon {
    width: 28px;
    height: 28px;
}

.rating-text {
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    margin: 0;
}

.promo-details {
    color: #FFF;
    background: #8A5737;
    font-size: 28px;
    line-height: 1.4;
    font-weight: 400;
    border-radius: 26px;
    flex: 1;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.promo-details p {
    margin: 0;
    font-size: 26px;
    line-height: 1.4;
}

.highlight-orange {
    color: #FFCC00;
    font-weight: 700;
}

.promo-button-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 10px;
}

.btn-primary {
    background: linear-gradient(to right, #6EE200, #3E9400);
    color: #FFF;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-primary:hover {
    background: linear-gradient(to right, #5CBF00, #327A00);
}

@media (max-width: 968px) {
    .policy-logo {
        width: 200px;
    }
    .promo-box {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        align-items: center;
    }

    .promo-left-block,
    .promo-details,
    .promo-button-wrapper {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
        box-sizing: border-box;
    }

    .promo-left-block {
        padding: 20px 15px;
    }

    .promo-details {
        padding: 18px;
    }

    .promo-details p {
        font-size: 24px;
    }

    .promo-details .highlight-orange {
        font-size: 28px;
    }

    .promo-button-wrapper {
        padding: 0;
    }

    .btn-primary {
        font-size: 20px;
        padding: 12px 25px;
        width: 100%;
        max-width: none;
    }

    .promo-rating {
        justify-content: center;
        gap: 5px;
    }
    .rating-text {
        margin-top: 0;
    }
    .main-header .logo {
        max-width: 400px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .main-header .logo {
        max-width: 300px;
        height: auto;
    }

    .promo-magic-jackpot-logo {
        max-width: 220px;
    }
    .rating-number {
        font-size: 28px;
    }
    .rating-star-icon {
        width: 24px;
        height: 24px;
    }
    .rating-text {
        font-size: 16px;
    }
    .promo-details p {
        font-size: 20px;
    }
    .promo-details .highlight-orange {
        font-size: 24px;
    }
    .btn-primary {
        font-size: 20px;
        padding: 12px 25px;
    }
}

.info-section {
    background-color: #C64F00;
    padding: 80px 0;
}

.info-block {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-header-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.info-block .info-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.info-block h2 {
    color: #FFF;
    margin: 0;
    font-size: 38px;
    text-align: left;
    flex-grow: 1;
}

.info-block p {
    color: #FFF;
    font-size: 22px;
    line-height: 1.5;
    text-align: left;
    margin: 0;
}

@media (max-width: 768px) {
    h2 {
        font-size: 32px;
    }
    p {
        font-size: 20px;
    }

    .info-block {
        align-items: center;
        text-align: center;
    }

    .info-header-row {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .info-block h2 {
        font-size: 30px;
    }

    .info-block p {
        font-size: 20px;
    }
    .info-block .info-icon {
        margin-bottom: 15px;
    }
}

.main-footer {
    background-color: #000;
    color: #fff;
    padding: 50px 0;
    font-size: 16px;
}

.main-footer .container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-content-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.responsible-gambling,
.support-organizations {
    flex: 1;
}

.responsible-gambling p,
.support-organizations p,
.support-organizations li {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #fff;
}

.responsible-gambling p:last-child {
    margin-bottom: 0;
}

.support-organizations ul {
    padding: 0;
    margin: 0;
}

.support-organizations li {
    margin-bottom: 10px;
    margin-left: 30px;
}

.support-organizations a {
    color: #fff;
    text-decoration: none;
}

.support-organizations a:hover {
    text-decoration: underline;
}

.footer-age-disclaimer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.age-icon-footer {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.footer-age-disclaimer p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    color: #fff;
}

.footer-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px 0;
}

.footer-logos img {
    max-height: 140px;
    width: auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #DD7900;
}

@media (max-width: 768px) {
    h1 {
        font-size: 27px;
    }
    h2 {
        font-size: 32px;
    }
    p {
        font-size: 20px;
    }

    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        text-align: center;
    }

    .promo-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-content-top {
        flex-direction: column;
        gap: 20px;
    }

    .footer-age-disclaimer {
        flex-direction: column;
        text-align: center;
    }

    .age-icon-footer {
        margin-bottom: 15px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
        margin: 0 auto;
        align-items: center;
    }
    .footer-logos img {
        max-height: 40px;
        width: auto;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 28px;
    }
    p {
        font-size: 18px;
    }
    .popup-body h2 {
        font-size: 22px;
    }
    .popup-body p {
        font-size: 18px;
    }
    .btn-yes, .btn-no {
        font-size: 20px;
        padding: 10px 20px;
    }
}

.policy-content-wrapper {
    background-color: #C64F00;
    padding: 50px 0;
}
.policy-content-wrapper .info-block {
    background-color: #724426;
    padding: 40px;
    border-radius: 20px;
}
.policy-content-wrapper .info-block h2 {
    color: #FFF;
    font-size: 38px;
    text-align: left;
    margin-bottom: 25px;
}
.policy-content-wrapper .info-block h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #FFF;
    margin-top: 30px;
    margin-bottom: 10px;
}
.policy-content-wrapper .info-block p,
.policy-content-wrapper .info-block li {
    color: #FFF;
    font-size: 20px;
    line-height: 1.5;
}
.policy-content-wrapper .info-block ul {
    padding-left: 20px;
    list-style-type: disc;
}
.policy-content-wrapper .info-block a {
    color: #FFCC00;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .policy-content-wrapper .info-block h2 {
        font-size: 32px;
        text-align: center;
    }
    .policy-content-wrapper .info-block h3 {
        font-size: 22px;
        text-align: left;
    }
    .policy-content-wrapper .info-block p,
    .policy-content-wrapper .info-block li {
        font-size: 18px;
        text-align: left;
    }
}