@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');


:root {
    --primary-green: #4CAF50; 
    --dark-green: rgb(2, 77, 53); 
    --text-light: #f0f0f0;
    --text-dark: #333;
    --card-background: #006140; 
    --red-alert: #FF5252;
    --modal-bg: #2c2c2c;
    --modal-text: #FFEB3B; 
    --basic: #06213A;
    --main-hero: rgb(24, 21, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
  }
body {
    font-family: 'Poppins', sans-serif; 
    font-weight: 400; 
    font-size: 22px; 
    line-height: 140%; 
    background-color: var(--main-hero);
    color: var(--text-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
header {
    background-color: transparent;
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 100;
}


.centered-div {
    text-align: center;
  }
  .centered-div a {
    text-decoration: none;
    color: inherit; 
}
.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
}
.hero-content-left {
    text-align: left;
    margin-right: auto; 
    max-width: 700px;
    margin-bottom: 60px;
}
.hero-content-descr {
    margin-bottom: 60px;
}
.hero-content-description {
    font-size: 16px;
}
.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.jpg');
    background-size: cover; 
    background-position: center;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 120px;
}

@media (max-width: 768px) { 
    .hero {
        background-repeat: no-repeat;
        min-height: 300px; 
        padding-top: 150px; 
    }
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: 
        linear-gradient(270deg, rgba(0, 0, 0, 0) 35.08%, rgba(0, 0, 0, 0.2) 50%),
        linear-gradient(180deg, rgba(25, 21, 1, 0) 93%, #191501 100%),
        linear-gradient(269.68deg, rgba(25, 21, 1, 0) 23.34%, #191501 86.51%),
        url('img/main-wrapper.png');
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .hero::before {
        background-image: 
            linear-gradient(270deg, rgba(0, 0, 0, 0) 35.08%, rgba(0, 0, 0, 0.2) 50%),
            linear-gradient(180deg, rgba(25, 21, 1, 0) 93%, #191501 100%),
            linear-gradient(269.68deg, rgba(25, 21, 1, 0) 23.34%, #191501 86.51%);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.age-restriction {
    background-color: #000000;
    color: #FFD700;
    padding: 8px 10px;
    border-radius: 70px;
    border: 2px solid #FFD700;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 18px;
    width: 80px;
    text-align: center;
}

.hero h1 {
    font-size: 70px;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: 100%;
}
.btn-main{
    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;
}



.features-section {
    display: flex;
    gap: 20px;
    margin-top: 40px;
  }
  .feature-item {
    display: flex;
    align-items: center;
    border-radius: 10px;
    color: var(--text-light);
    font-weight: 400;
    font-size: 20px;
    white-space: nowrap;
  }
  .feature-icon {
    margin-right: 15px;
    border-radius: 8px;
    padding: 8px;
    object-fit: contain;
  }
  @media (max-width: 1188px) {
    .features-section {
      flex-direction: column;
      align-items: flex-start;
    }
  }

.desktop-logo {
    display: block;
}

.mobile-logo {
    display: none;
}


.casino-list {
    padding: 50px 0;
    gap: 30px;
}

.casino-list .container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.casino-card {
    background: #8B7500;
    width: 1146px;
    height: 284px;
    border: 2px solid #FFD700;
    margin-bottom: 30px;
    border-radius: 30px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    flex-wrap: nowrap;
}
.casino-card:hover {
    background: #B19501;


    border: 2px solid #D4B978;

    border-radius: 30px;
    padding: 20px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}
.casino-content {
    display: flex;
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
    text-align: center; 
}
.casino-logo {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
}

.casino-logo img {
    object-fit: contain;
    border-radius: 20px;
}
.casino-descr {
    background: #000000;
    border-radius: 30px;
    border: 2px solid #FFD700;
    padding: 8px;
    width: 242px;
    margin: 0 auto;
    color: #FFD700;
    font-size: 16px;
    text-align: center;
}
.big-text {
    margin: 16px;
    font-size: 32px;
    font-weight: 600;
}
.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: #FFEE00;
    margin-bottom: 2px;
}

.small-text {
    font-size: 18px;
    color: #DDDDDD;
    font-weight: 300;
    margin-top: 16px;
}

.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;
}
@media (max-width: 768px) {
    .desktop-logo {
        display: none; 
    }

    .mobile-logo {
        display: block; 
    }
    .casino-content {
        margin-top: 30px;
    }
    .big-text {
        font-size: 20px;
    }
    .small-text {
        font-size: 16px;
    }
}


.btn-bonus {
    background: #FFD700;
    border: none;
    color: #000000;
    padding: 12px;
    border-radius: 30px;
    width: 300px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 20px;
    display: inline-block; 
}

.btn-bonus:hover {
    background-color: #B79A01;
}

@media (max-width: 1199px) {
    .casino-card {
        flex-direction: column;
        align-items: center;
        height: 584px;
        width: 90%;
        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;
    }

   

    .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;
    }

  
    .btn-bonus {
        width: 90%;
        padding: 12px 15px;
    }
    .hero  {
        padding-top: 100px;
    }
}

.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: #8B7500;
    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: #fff;
    font-weight: 700;
}

.modal-content p {
    font-size: 15px;
    margin-bottom: 35px;
    color: #fff;
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: #000000;
    padding: 10px 0 10px;
    text-align: center;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
}

.footer-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px; 
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: right;
    max-width: 330px;
    width: 100%;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    font-weight: 600;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--primary-green);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.footer-logo__mail {
    font-weight: 600;
    font-size: 29.03px;
    line-height: 100%;
     margin-top: 30px;
}
.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: 20px;
    line-height: 120%;
    font-weight: 300;
    max-width: 900px;
    margin-bottom: 20px;
    opacity: 0.9;
}


.footer-links-row {
    display: flex;
    justify-content: center; 
    gap: 20px;
    margin-bottom: 15px; 
}

.footer-links-row a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400; 
}
.footer-links-row a:hover {
    color: #FFD700; 
}


.footer-links {
    margin-top: 20px;
    background: Black;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 30px;
}


@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;
    }

    .footer-content-flex {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 10px;
    }

    .footer-links {
        align-items: center;
        text-align: center; 
    }
}


.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;
    }

    
}



.text-section {
    position: relative;
    background-image: url('img/hero-bg.png'); 
    background-size: cover; 
    background-position: center;
    padding: 80px 0; 
    color: #FFFFFF; 
    text-align: center; 
}

.text-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00614005; 
    z-index: 1; 
}

.text-section .container {
    position: relative; 
    z-index: 2; 
    margin: 0 auto;
    padding: 0 20px; 
}

.text-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
    color: #FFFFFF;
}

.text-content p {
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 50px;
    line-height: 1;
    color: #FFFFFF;
    text-align: left;
}


@media (max-width: 768px) {
    .text-section {
        padding: 60px 0; 
    }

    .text-section .container {
        padding: 0 15px; 
    }

    .text-content {
        text-align: left; 
    }

    .text-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
        text-align: left; 
    }

    .text-content h2 {
        font-size: 24px;
        margin-top: 30px;
        margin-bottom: 20px;
        text-align: left; 
    }

    .text-content p {
        font-size: 16px;
        margin-bottom: 15px;
    }
}
img {
    width: 100%;
}
.casino-logo img {
    width: 300px;
}
.casino-logo img {
    object-fit: cover;
    border-radius: 20px;
}
.casino-content {
    width: 70%;
}