@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&display=swap'); 

:root {
    --primary-green: #4CAF50; 
    --dark-green: #0A1C0E; 
    --text-light: #f0f0f0;
    --text-dark: #333;
    --card-background: #1a331e; 
    --red-alert: #FF5252;
    --modal-bg: #2c2c2c;
    --modal-text: #FFEB3B; 
    --basic: #8B9C35;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif; 
    font-weight: 300; 
    font-size: 27px; 
    line-height: 120%; 
    background-color: var(--dark-green);
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background-color: #0F1B10;
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--basic);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-green);
}

.hero {
    background-image: url('img/main-bg.png');
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 300px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.age-restriction {
    background-color: #C71F09;
    color: white;
    padding: 12px 15px;
    border-radius: 70px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 26px;
    width: 118px;
}

.hero h1 {
    font-size: 68px;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.casino-list {
    padding: 50px 0;
    gap: 30px;
}

.casino-list .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.casino-card {
    background: linear-gradient(93.01deg, rgba(66, 78, 8, 0.8) 17.52%, rgba(25, 57, 34, 0.8) 65.02%);
    width: 1146px;
    height: 212px;
    border: 2px solid rgba(66, 78, 8, 0.8);
    margin-bottom: 30px;
    border-radius: 30px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    flex-wrap: nowrap;
}
.casino-card:hover {
    background: linear-gradient(93.01deg, rgba(66, 78, 8, 0.8) 17.52%, rgba(25, 57, 34, 0.8) 65.02%),
linear-gradient(91.08deg, rgba(246, 255, 0, 0.08) -0.22%, rgba(186, 186, 0, 0.4) 98.3%);

    width: 1146px;
    height: 212px;
    border: 2px solid #D4B978;

    border-radius: 30px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    flex-wrap: nowrap;
}

.casino-logo {
    flex-shrink: 0;
    width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
}

.casino-logo img {
    object-fit: contain;
}

.casino-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    white-space: nowrap; 
    min-width: 90px;
    padding: 0 10px;
}

.casino-details p:first-child {
    font-size: 26px;
    font-weight: 700;
    color: #DDDDDD;
    margin-bottom: 2px;
}

.small-text {
    font-size: 26px;
    color: #DDDDDD;
    font-weight: 300;
}

.casino-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 10px;
    min-width: 100px;
}

.casino-rating .stars img { 
    width: auto;
    object-fit: contain;
    margin-bottom: 5px;
}



.btn-bonus {
    background: linear-gradient(180deg, #0FDE00 0%, #00B615 100%);
    border: 2px solid #02BA13;
    color: #1A451E;
    padding: 27px 32px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 20px;
}

.btn-bonus:hover {
    background-color: #0FDE00;
}

@media (max-width: 1199px) {
    .casino-card {
        flex-direction: column;
        align-items: center;
        height: auto;
        width: 90%;
        max-width: 400px;
        padding: 20px;
        gap: 15px;
        margin: 0 auto;
    }

    .casino-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 10px;
    }

    .casino-details {
        text-align: center;
        padding: 0;
        min-width: unset;
    }

    .casino-details p:first-child {
        font-size: 22px;
    }

    .small-text {
        font-size: 22px;
    }

    .casino-rating {
        margin-bottom: 10px;
        min-width: unset;
        padding: 0;
    }

    .casino-rating .stars img {
        height: 20px;
    }

    .btn-bonus {
        width: 80%;
        margin-left: 0;
        margin-top: 10px;
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    .casino-card {
        width: 95%;
        padding:44px;
        gap: 10px;
        margin-bottom: 30px;
    }

    .casino-logo {
        width: 100px;
        height: 100px;
    }

    .casino-details p:first-child {
        font-size: 20px;
    }

    .small-text {
        font-size: 20px;
    }

    .btn-bonus {
        width: 90%;
        padding: 12px 15px;
    }
    .hero  {
        padding-top: 200px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #FFF8DC;
    margin: auto;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    max-width: 500px;
    width: 90%;
    color: var(--modal-text);
}

.modal-content h2 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #111111;
    font-weight: 700;
}

.modal-content p {
    font-size: 15px;
    margin-bottom: 35px;
    color: #111111;
font-weight: 500;
line-height: 100%;
letter-spacing: 0%;

}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.modal-buttons button {
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-yes {
    background-color: #53FF50;
    color: #007D2D;
}

.btn-yes:hover {
    background-color: #4CAF50;
    transform: translateY(-2px);
}

.btn-no {
    background-color: #FF4930;
    color: #4B0C0C;
}

.btn-no:hover {
    background-color:rgb(114, 14, 14);
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    

    .hero h1 {
        font-size: 2.5em;
    }


    .casino-logo {
        margin-bottom: 15px;
        margin-right: 0;
    }

    .casino-details {
        margin-right: 0;
        margin-bottom: 15px;
        text-align: center;
    }

    .casino-rating {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .btn-bonus {
        width: 100%;
    }

    .modal-content {
        padding: 30px;
    }



    .modal-buttons {
        flex-direction: column;
        gap: 15px;
    }
}



@media (max-width: 468px) {
    .logo {
        font-size: 18px;
    }
    nav ul li {
        margin-left: 10px;
        
    }
    nav ul li a {
        font-size: 14px;
    }
    
}
.about-us-section {
    background: linear-gradient(91.94deg, #6F7D26 18.24%, #5A661D 65.3%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-content {
    display: flex;
    align-items: center;
    width: 100%; 
}

.about-us-image,
.about-us-text {
    flex: 1;
    min-width: 0;
    padding: 20px;
}

.about-us-image {
    display: flex;
    justify-content: center;
    align-items: center;
}


.about-us-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.about-us-text {
    color: var(--text-light);
    text-align: left;
}

.about-us-text h2 {
    font-size: 27px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
}

.about-us-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 35px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}
.about-us-btn {
    text-decoration: none;
    height: 82px;
    background-color: #39f039;
    color: #1A451E;
    padding: 22px 25px;
    border-radius: 20px;
    font-size: 1em;
    border: 1px solid #02BA13;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    width: 200px;
    margin: 0 auto;
    
}
.about-us-btn {
    display: inline-block;
}

@media (min-width: 769px) {
    .about-us-content {
        justify-content: space-around;
        padding: 40px;
    }
}


@media (max-width: 768px) {
    .about-us-section {
        padding: 50px 0;
    }

    .about-us-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }

    .about-us-image {
        padding: 0;
    }

    .about-us-image img {
        max-width: 80%;
    }

    .about-us-text {
        padding: 0;
    }

    .about-us-text h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .about-us-text p {
        font-size: 1em;
        margin-bottom: 25px;
    }

}

@media (max-width: 768px) {
    .about-us-section {
        padding: 50px 0;
    }

    .about-us-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }

    .about-us-image img {
        max-width: 80%;
    }

    .about-us-text p {
        font-size: 1em;
        margin-bottom: 25px;
    }

}


footer {
    background-color: #0F2315;
    padding: 60px 0 0px;
    text-align: center;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: auto;
    margin-bottom: 10px;
}
.logo-footer {
    width: 400px;
}
.footer-logo .tagline {
    font-size: 0.8em;
    color: var(--text-light);
    opacity: 0.7;
    letter-spacing: 1px;
}

.footer-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-badges img {
    height: 50px;
    width: auto;
}

.footer-disclaimer {
    font-size: 27px;
    line-height: 120%;
    font-weight: 300;
    max-width: 900px;
    margin-bottom: 20px;
    opacity: 0.9;
}



.footer-links {
    margin-top: 20px;
    background: Black;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: #D4B876;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-green);
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 0px;
    }
    .logo-footer {
        width: 220px;
    }
    .footer-content {
        gap: 20px;
    }

    .footer-badges {
        gap: 15px;
        margin-bottom: 20px;
    }

    .footer-badges img {
        height: 40px;
    }

    .footer-disclaimer {
        font-size: 0.85em;
        margin-bottom: 15px;
        padding: 0 15px;
    }

    .footer-links {
        gap: 10px;
        padding-top: 15px;
    }
}


.newsletter-section {
    margin-top: 30px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.newsletter-title {
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    max-width: 500px;
    border-radius: 8px;
}

.email-input {
    flex-grow: 1;
    padding: 27px 52px;
    border: 1px solid #02BA13;
    border-radius: 20px;
    background-color: #3A5241;
    color: var(--text-light);
    font-size: 27px;
    outline: none;
    transition: border-color 0.3s ease;
    width: 200px; 
}

.email-input::placeholder {
    color: #D2F3D5;
    opacity: 1;
}

.email-input:focus {
    border-color: var(--primary-green);
}

.subscribe-btn {
    background-color: #39f039;
    color: #1A451E;
    padding: 12px 25px;
    border-radius: 20px;
    font-size: 1em;
    border: 1px solid #02BA13;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    width: 200px;
}

.subscribe-btn:hover {
    background-color: #2aa32a;
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .newsletter-title {
        font-size: 1.1em;
        margin-bottom: 15px;
    }

    .newsletter-form {
        flex-direction: column; 
        gap: 10px; 
    }

    .email-input,
    .subscribe-btn {
        height: 86px;
        width: 100%; 
        min-width: unset; 
    }
}

@media (max-width: 480px) { 
    
    .hero h1 {
        font-size: 27px;
    }
}

.content-page {
    padding: 100px 20px;
    max-width: 900px; 
    border-radius: 10px;
    line-height: 1.6;
}

.content-page h1 {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.content-page h2 {
    font-size: 18px; 
    margin-top: 18px;
    margin-bottom: 15px;
    border-left: 4px solid #a3b2c2;
    padding-left: 10px;
}

.content-page p {
    font-size: 16px;
    margin-bottom: 15px;
}

.content-page ul {
    list-style: disc inside;
    margin-bottom: 15px;
    padding-left: 20px;
}

.content-page ul li {
    font-size: 18px;
    margin-bottom: 8px;
}



.content-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .content-page {
        padding: 140px 15px;
    }

    
}