/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-bg: #3d1a1a;
    --secondary-bg: #2a1010;
    --accent-red: #c94d4d;
    --text-light: #f5e6d3;
    --text-white: #ffffff;
    --btn-primary: #e8c878;
    --btn-hover: #d4b564;
    --card-orange: linear-gradient(180deg, #f5e6b8 0%, #e8a86d 50%, #c94d4d 100%);
    --card-yellow: linear-gradient(180deg, #fef5d8 0%, #f5d68a 50%, #e8a86d 100%);
    --card-red: linear-gradient(180deg, #e8a86d 0%, #d47a5c 50%, #c94d4d 100%);
    --card-coral: linear-gradient(180deg, #fef5d8 0%, #f5c88a 50%, #d47a5c 100%);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}

/* Header */
.header {

    background: #B23434;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
 
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    letter-spacing: 1px;
}
.logo a {
    color: #fff;
    text-decoration: none;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: #350E0E;
}

.hero-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.hero-title {
    flex: 1;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--btn-primary);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);


    background: linear-gradient(180deg, #F7E38D 0%, #EBA44A 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.hero-description {
    flex: 1;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-description p {
    margin: 0;
}

/* Platforms Section */
.platforms {
    padding: 60px 0;
    background: #350E0E;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px;
    background: rgba(201, 77, 77, 0.15);
    border-radius: 30px;
    border: 2px solid rgba(201, 77, 77, 0.3);


    border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.30);
background: rgba(96, 33, 33, 0.60);
backdrop-filter: blur(18.350000381469727px);
}

.platform-card {
    padding: 40px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;

    border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.30);
background: linear-gradient(180deg, #F7E38D 0%, #B23434 100%);
}

/* .platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin: 8px;
    z-index: 0;
} */

.platform-card > * {
    position: relative;
    z-index: 1;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.card-orange {
    background: var(--card-orange);
}

.card-yellow {
    background: var(--card-yellow);
    border-radius: 10px;
background: linear-gradient(180deg, #B23434 0%, #F7E38D 100%);
}

.card-red {
    background: var(--card-red);
    border-radius: 10px;
background: linear-gradient(180deg, #B23434 0%, #F7E38D 100%);
}

.card-coral {
    background: var(--card-coral);
    border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.30);
background: linear-gradient(180deg, #F7E38D 0%, #B23434 100%);
}

.platform-logo {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 15px;
}

.platform-logo img {
    max-width: 180px;
 
    object-fit: contain;
}

.platform-info {
    text-align: center;
    color: var(--text-white);
}

.platform-bonus {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
}

.platform-freebets {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

.platform-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-white);
}

.rating-number {
    font-size: 36px;
    font-weight: 700;
}

.stars {
    font-size: 20px;
    color: #ffd700;
    letter-spacing: 2px;
}

.btn-platform {
    background-color: var(--btn-primary);
    color: var(--secondary-bg);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

    border-radius: 59px;
background: linear-gradient(180deg, #F7E38D 0%, #EBA44A 100%), linear-gradient(180deg, #E8E9E6 0%, #A6A29F 100%);
text-align: center;
text-decoration: none;
}

.btn-platform:hover {
    background-color: var(--btn-hover);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Important Note Section */
.important-note {
    padding: 60px 0;
    background: #350E0E;
}

.important-note h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--btn-primary);
    margin-bottom: 30px;
    background: linear-gradient(180deg, #F7E38D 0%, #EBA44A 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.important-note p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-light);
}

/* Footer */
.footer {
    padding: 50px 0 30px;
    background: #391313;
  
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;

    color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 150%; /* 24px */
letter-spacing: -0.48px;
}

.footer-nav a:hover {
    color: var(--btn-primary);
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding: 20px 0;
}

.logo-item img {
    height: 50px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
    max-width: 153px;
}

.logo-item img:hover {
    filter: brightness(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 77, 77, 0.3);
    font-size: 14px;
    color: var(--text-light);
}

.age-badge {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-light);
}

/* Modal Styles */
.modal {
    display: flex;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #3d1a1a 0%, #2a1010 100%);
    padding: 50px;
    border-radius: 20px;
    max-width: 878px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--accent-red);


    border-radius: 10px;
border: 1px solid rgba(232, 232, 237, 0.08);
background: #350E0E;
box-shadow: 0 0 32.5px 24px rgba(0, 0, 0, 0.15);
}

.modal-content h2 {
    
    font-size: 32px;
    font-weight: 800;
    color: var(--btn-primary);
    margin-bottom: 20px;
    text-align: left;

    color: #FFF;
font-family: Montserrat;
font-size: 50px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 60px */
}

.modal-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
}

.age-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.age-subtext {
    font-size: 15px;
    margin-bottom: 30px;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;

    border-radius: 40px;
background: linear-gradient(180deg, #F7E38D 0%, #EBA44A 100%);
}

.btn-primary {
    background-color: var(--btn-primary);
    color: var(--secondary-bg);
    box-shadow: 0 4px 15px rgba(232, 200, 120, 0.3);
    color: #5A0909;
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 110%; /* 19.8px */
letter-spacing: -0.54px;
}

.btn-primary:hover {
    background-color: var(--btn-hover);
    transform: scale(1.05);
}

.btn-secondary {
    background-color: transparent;
    color: var(--btn-primary);
    border: 2px solid var(--btn-primary);
    color: #5A0909;
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: Montserrat;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 110%; /* 19.8px */
letter-spacing: -0.54px;
}

.btn-secondary:hover {
    background-color: var(--btn-primary);
    color: var(--secondary-bg);
}
.d-flex{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
    }

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

    .platforms-grid {
        gap: 20px;
        padding: 30px;
    }

    .footer-logos {
        gap: 20px;
    }

    .logo-item img {
        height: 40px;
    }
}

@media screen and (max-width: 768px) {
    .logo {
        font-size: 24px;
    }
    .d-flex{
        flex-direction: column;
    }
    .hero {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    .platforms {
        padding: 40px 0;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .platform-card {
        padding: 30px 20px;
    }

    .platform-bonus {
        font-size: 36px;
    }

    .rating-number {
        font-size: 30px;
    }

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

    .important-note h2 {
        font-size: 28px;
    }

    .important-note p {
        font-size: 15px;
    }

    .footer-nav {
   
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
        
    }

    .footer-logos {
        gap: 15px;
        justify-content: flex-start;
    }

    .logo-item img {
        height: 35px;
    }

    .footer-bottom {
       
        gap: 20px;
        text-align: center;
    }

    .age-badge {
        font-size: 28px;
    }

    .modal-content {
        padding: 30px;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 26px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        min-width: auto;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 14px;
    }

    .platform-logo {
        height: 70px;
    }

    .platform-logo img {
        max-width: 150px;
        max-height: 50px;
    }

    .platform-bonus {
        font-size: 32px;
    }

    .platform-freebets {
        font-size: 14px;
    }

    .rating-number {
        font-size: 26px;
    }

    .stars {
        font-size: 16px;
    }

    .btn-platform {
        font-size: 15px;
        padding: 10px 30px;
    }

    .important-note h2 {
        font-size: 24px;
    }

    .important-note p {
        font-size: 14px;
    }

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

    .logo-item img {
        height: 37px;
    }

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

    .age-badge {
        font-size: 24px;
    }

    .modal-content {
        padding: 25px;
    }

    .modal-content h2 {
        font-size: 22px;
    }

    .modal-content p {
        font-size: 14px;
    }

    .age-text {
        font-size: 18px;
    }

    .age-subtext {
        font-size: 14px;
    }

    .btn-primary,
    .btn-secondary {
        font-size: 15px;
        padding: 12px 25px;
    }
}