* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFE500;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d0d0d;
    --card-bg: #2a2a2a;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --border-radius: 20px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Noto Sans Hebrew', sans-serif;
    background-color: var(--darker-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    background: #000;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background-color: var(--dark-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.modal-content p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.age-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
}

.age-subtext {
    font-size: 0.95rem;
}

.age-buttons,
.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Noto Sans Hebrew', sans-serif;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--darker-bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 229, 0, 0.3);
}

.btn-secondary {
    background-color: var(--text-white);
    color: var(--darker-bg);
}

.btn-secondary:hover {
    background-color: var(--text-gray);
}

/* Header */
header {
    text-align: center;
    padding: 30px 20px;
    padding-bottom: 0;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;

}
.site-title a{
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    color: #fff;
}

/* Main Content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    background-color: var(--dark-bg);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    text-align: center;
    padding-top: 0px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    max-width: 758px;
    margin: 0 auto;
    margin-bottom: 32px;
    margin-top: 64px;
}

.highlight {
    color: var(--primary-yellow);
    border: 3px solid var(--primary-yellow);
    padding: 5px 15px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 12px;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    max-width: 758px;
}

/* Platform Cards */
.platforms {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
    max-width: 982px;
    margin: 0 auto;
}

.platform-card {
    background-color: var(--dark-bg);
    border: 3px solid var(--primary-yellow);
    border-radius: var(--border-radius);
    padding: 30px;
    display: grid;
    grid-template-columns: 200px 1fr auto auto;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 229, 0, 0.2);
}

.platform-logo {
    background-color: var(--primary-yellow);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-logo img {
    max-width: 100%;
    height: auto;
}

.platform-info {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.offer {
    display: flex;
    flex-direction: column;
}

.offer-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.offer-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
}

.offer-bonus {
    font-size: 0.9rem;
    color: var(--text-white);
    font-weight: 600;
}

.rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  
}

.rating-score {
    font-size: 2rem;
    font-weight: 800;
}

.stars {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.payment-methods img {
    height: 40px;
    opacity: 0.8;
}

.btn-cta {
    background-color: var(--primary-yellow);
    color: var(--darker-bg);
    padding: 15px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 229, 0, 0.4);
}

/* Why Choose Section */
.why-choose {
    background-color: var(--dark-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    text-align: center;
    margin-top: 100px;
}

.why-choose h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.why-choose ul {
    list-style: none;
    text-align: center;
}

.why-choose li {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    position: relative;
    padding-left: 0;
}

.why-choose li::before {
    content: "•";
    color: #fff;
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    padding: 40px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 0 auto;
    max-width: 1160px;
}

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

.footer-badges img {
    height: 40px;
    opacity: 0.8;
    max-width: 150px;
}

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

.footer-nav a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.copyright {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .platform-card {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: left;
        gap: 20px;
    }

    .platform-logo {
        justify-self: center;
        grid-row: 1;
    }

    .platform-info {
        grid-row: 2;
        flex-direction: row;
        justify-content: space-between;
        gap: 20px;
    }

    .payment-methods {
        grid-row: 3;
        justify-self: start;
    }

    .btn-cta {
        grid-row: 3;
        justify-self: end;
        width: auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 40px 25px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .highlight {
        display: block;
        margin-top: 10px;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .platform-card {
        padding: 25px;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 25px;
    }

    .platform-logo {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 25px;
        grid-row: 1;
        grid-column: 1;
    }

    .platform-info {
        grid-row: 2;
        grid-column: 1;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        gap: 20px;
    }

    .offer {
        text-align: left;
    }

    .rating {
        align-items: flex-end;
    }

    /* Payment methods and button in same row */
    .payment-methods {
        grid-row: 3;
        grid-column: 1;
        justify-self: start;
        align-self: center;
    }

    .payment-methods img {
        height: 35px;
    }

    .btn-cta {
        grid-row: 3;
        grid-column: 1;
        justify-self: end;
        align-self: center;
        width: auto;
        min-width: 180px;
        padding: 15px 35px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .age-buttons,
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .site-title {
        font-size: 1.2rem;
    }

    .platform-card {
        padding: 20px;
    }

    .platform-logo {
        padding: 20px;
    }

    .offer-amount {
        font-size: 1.8rem;
    }

    .offer-label {
        font-size: 0.8rem;
    }

    .offer-bonus {
        font-size: 0.85rem;
    }

    .rating-score {
        font-size: 1.8rem;
    }

    .stars {
        font-size: 1rem;
    }

    .platform-info {
        gap: 15px;
    }

    .btn-cta {
        padding: 14px 25px;
        font-size: 1.05rem;
    }

    .why-choose h3 {
        font-size: 1.5rem;
    }

    .footer-badges {
        gap: 15px;
    }

    .footer-badges img {
        height: 30px;
    }
}