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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    color: #0a1f44;
}

a {
    text-decoration: none;
}

.navbar {
    background-color: #ffffff;
    border-bottom: 2px solid #0a3d62;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.containerr {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo */
.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0a3d62;
    text-decoration: none;
    letter-spacing: 1px;
}

/* Nav menu */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu li a {
    color: #0a1f44;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #1e90ff;
}

/* Buttons */
.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 7px 18px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 2px solid transparent;
}

.btn-register {
    background-color: #1e90ff;
    color: white;
    border-color: #1e90ff;
}

.btn-register:hover {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-login {
    background-color: transparent;
    color: #0a3d62;
    border: 2px solid #0a3d62;
}

.btn-login:hover {
    background-color: #0a3d62;
    color: white;
}

/* Hamburger menu - mobile */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 28px;
    height: 22px;
    justify-content: space-between;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: #0a3d62;
    height: 3px;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
    width: 100%;
}

.nav-toggle-label span::before {
    top: -8px;
}

.nav-toggle-label span::after {
    bottom: -8px;
}

/* Responsive */
@media (max-width: 768px) {

    .nav-menu,
    .nav-buttons {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 250px;
        height: calc(100% - 60px);
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
    }

    .nav-menu li a {
        font-size: 1.2rem;
    }

    .nav-buttons {
        margin-top: auto;
    }

    .nav-toggle {
        display: block;
    }

    .nav-toggle-label {
        display: flex;
    }

    #nav-toggle:checked~.nav-menu,
    #nav-toggle:checked~.nav-buttons {
        right: 0;
    }
}

.how-it-works {
    position: relative;
    background: url('../img/hero.png') center center/cover no-repeat;
    padding: 60px 20px 90px;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    box-sizing: border-box;
}

.how-it-works h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 24px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.45);
    line-height: 1.15;
}

.how-it-works p {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    color: #d1d9e5;
    margin-bottom: 50px;
}

.next-draw-timer {
    background: #fff;
    padding: 25px 45px;
    border-radius: 15px;
    max-width: 660px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    gap: 40px;
    user-select: none;
    color: #1a3e6a;
    box-sizing: border-box;
}

.next-draw-timer h3 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #7ba1d6;
    margin: 0;
    flex-shrink: 0;
    text-shadow: 0 1px 3px rgba(123, 161, 214, 0.6);
    text-align: left;
}

#countdown {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-grow: 1;
}

.time-segment {
    background: #f8faff;
    padding: 25px 32px;
    border-radius: 12px;
    min-width: 90px;
    box-shadow: 0 4px 12px rgba(26, 62, 106, 0.15);
    font-weight: 900;
    text-align: center;
    color: #163a6f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s ease;
}

.time-segment:hover {
    background-color: #e2eafc;
}

.time-segment span {
    font-size: 3rem;
    line-height: 1;
    letter-spacing: 0.02em;
}

.time-segment small {
    font-size: 1rem;
    margin-top: 7px;
    font-weight: 700;
    color: #3a4f7a;
    text-transform: capitalize;
}

/* Адаптивність */
@media (max-width: 680px) {
    .how-it-works h2 {
        font-size: 2.3rem;
    }

    .how-it-works p {
        font-size: 1.05rem;
        max-width: 95%;
    }

    .next-draw-timer {
        flex-direction: column;
        padding: 20px 25px;
        gap: 25px;
        max-width: 95%;
    }

    .next-draw-timer h3 {
        text-align: center;
    }

    #countdown {
        width: 100%;
        justify-content: space-around;
    }

    .time-segment {
        min-width: 70px;
        padding: 20px 25px;
    }

    .time-segment span {
        font-size: 2.4rem;
    }

    .time-segment small {
        font-size: 0.85rem;
    }
}

.ticket-purchase {
    background: #f5f9ff;
    padding: 40px 25px;
    max-width: 480px;
    margin: 40px auto;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #0a3d62;
    text-align: center;
}

.ticket-purchase h2 {
    font-weight: 700;
    font-size: 2.1rem;
    margin-bottom: 28px;
    color: #123d7a;
}

.form-group {
    margin-bottom: 22px;
    text-align: left;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 1rem;
}

.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #1e90ff;
    border-radius: 8px;
    font-size: 1rem;
    color: #123d7a;
    transition: border-color 0.3s ease;
}

.form-group input[type="number"]:focus,
.form-group select:focus {
    border-color: #0a3d62;
    outline: none;
}

.form-group small {
    display: block;
    margin-top: 4px;
    font-size: 0.85rem;
    color: #4a6aa5;
}

.price-display p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #0a3d62;
}

.price-display strong {
    font-weight: 700;
    color: #1e90ff;
}

.btn-purchase {
    background-color: #1e90ff;
    border: none;
    color: white;
    padding: 14px 36px;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.25s ease;
    width: 100%;
}

.btn-purchase:hover {
    background-color: #0a3d62;
}

.why-us {
    margin: 60px auto;
    padding: 50px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #0a3d62;
    text-align: center;
    background: linear-gradient(135deg, #e6f0ff 0%, #f9fcff 100%);
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(18, 61, 122, 0.12);
}

.why-us h2 {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 45px;
    color: #123d7a;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.reasons-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.reason {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 28px 24px 38px;
    box-shadow: 0 6px 22px rgba(18, 61, 122, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.reason:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 40px rgba(18, 61, 122, 0.18);
}

.reason .icon {
    margin-bottom: 20px;
    user-select: none;
}

.reason h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: #0a3d62;
}

.reason p {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #2c517a;
}

.top-wins {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #0a3d62;
    text-align: center;
}

.top-wins h2 {
    font-size: 2.7rem;
    font-weight: 900;
    margin-bottom: 35px;
    color: #123d7a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.top-wins table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.top-wins thead tr {
    background-color: #1e90ff;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
    border-radius: 12px 12px 0 0;
}

.top-wins thead th {
    text-align: center;
    padding: 15px 20px;
}

.top-wins tbody tr {
    background-color: #f0f6ff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(18, 61, 122, 0.1);
    transition: background-color 0.3s ease;
}

.top-wins tbody tr:hover {
    background-color: #d6e6ff;
}

.top-wins tbody td {
    padding: 16px 20px;
    font-size: 1rem;
    vertical-align: middle;
    color: #123d7a;
}

.top-wins tbody td:first-child {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0a3d62;
}

@media (max-width: 680px) {

    .top-wins table,
    .top-wins thead,
    .top-wins tbody,
    .top-wins tr,
    .top-wins th,
    .top-wins td {
        display: block;
    }

    .top-wins thead tr {
        display: none;
    }

    .top-wins tbody tr {
        margin-bottom: 20px;
        background-color: #f0f6ff;
        border-radius: 15px;
        box-shadow: 0 4px 14px rgba(18, 61, 122, 0.1);
        padding: 15px;
    }

    .top-wins tbody td {
        padding: 10px 12px;
        font-size: 0.95rem;
        position: relative;
        padding-left: 110px;
        text-align: left;
    }

    .top-wins tbody td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        font-weight: 700;
        color: #1e90ff;
        white-space: nowrap;
    }
}

.faq {
    margin: 60px auto;
    padding: 50px 0;
    background: linear-gradient(135deg, #e6f0ff 0%, #f9fcff 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #0a3d62;
}

.faq h2 {
    font-size: 2.7rem;
    font-weight: 900;
    margin-bottom: 40px;
    text-align: center;
    color: #123d7a;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-item {
    background-color: #f0f7ff;
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(18, 61, 122, 0.1);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 12px 30px rgba(18, 61, 122, 0.18);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a3d62;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #234e82;
    margin: 0;
}

.last-win {
    max-width: 600px;
    margin: 60px auto;
    padding: 35px 25px;
    background: #f0f7ff;
    border-radius: 18px;
    box-shadow: 0 6px 22px rgba(18, 61, 122, 0.12);
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #0a3d62;
}

.last-win h2 {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #123d7a;
}

.win-details {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.number-block,
.ticket-block {
    background: white;
    padding: 22px 28px;
    border-radius: 14px;
    box-shadow: 0 5px 16px rgba(18, 61, 122, 0.1);
    min-width: 240px;
}

.label {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #235a9e;
}

.value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0a3d62;
    letter-spacing: 0.06em;
}

.site-footer {
    background-color: #001321;
    color: #dbe9ff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 40px 20px 30px;
    text-align: center;
}

.site-footer a {
    color: #a3c7ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #e0f0ff;
}

.footer-content p {
    max-width: 860px;
    margin: 8px auto;
    font-size: 1rem;
    line-height: 1.6;
}

.warning {
    color: #ff5c5c;
    font-weight: 700;
    margin-top: 18px;
    margin-bottom: 20px;
}

.footer-links {
    margin: 25px 0 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    font-size: 1rem;
}

.footer-buttons {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-buttons .btn {
    background-color: #1e90ff;
    color: white;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.45);
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-buttons .btn:hover {
    background-color: #0a2c5a;
}

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

.footer-logos img {
    height: 38px;
    object-fit: contain;
    filter: brightness(1);
    user-select: none;
}

@media (max-width: 680px) {
    .footer-content p {
        font-size: 0.9rem;
    }

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

    .footer-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .footer-logos img {
        height: 32px;
    }
}

.site-footer .copyright {
    font-size: 0.9rem;
    color: #a8c8f9;
    margin-top: 10px;
    user-select: none;
}

.cart-block {
    background: #f5f9ff;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 980px;
    padding: 40px 25px;
    box-sizing: border-box;
    color: #0a3d62;
}

.container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.block-form {
    flex: 1 1 300px;
    min-width: 300px;
}

.block-form h2 {
    font-size: 2.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #123d7a;
}

.block-form .logo {
    width: 50px;
    height: auto;
    object-fit: contain;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-container input {
    padding: 12px 14px;
    font-size: 1rem;
    border: 2px solid #1e90ff;
    border-radius: 8px;
    color: #123d7a;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-container input:focus {
    border-color: #0a3d62;
    outline: none;
}

.block-text {
    flex: 1 1 620px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.top-text p {
    font-size: 1.1rem;
    margin: 6px 0;
    color: #1a3e6a;
}

.top-text strong {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1e90ff;
}

.number-bl {
    background: #fff;
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 6px 18px rgba(18, 61, 122, 0.12);
    max-height: 280px;
    overflow-y: auto;
}

.ticket-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #d0defd;
}

.ticket-item:last-child {
    border-bottom: none;
}

.ticket-item p {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0a3d62;
    margin: 0;
    flex-shrink: 0;
    width: 30px;
}

.cart-block {
    background: #f5f9ff;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 980px;
    padding: 40px 25px;
    box-sizing: border-box;
    color: #0a3d62;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.containerr {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.number-items {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-top: 10px;
}

.number {
    background-color: #1e90ff;
    color: white;
    padding: 10px 14px;
    font-weight: 700;
    border-radius: 10px;
    min-width: 36px;
    text-align: center;
    user-select: none;
    font-size: 1rem;
    flex-shrink: 0;
    cursor: default;
}

.counter {
    display: flex;
    align-items: center;
    border: 2px solid #1e90ff;
    border-radius: 8px;
    overflow: hidden;
    margin-left: 10px;
}

.counter button {
    background: #1e90ff;
    border: none;
    color: white;
    font-size: 1.4rem;
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    line-height: 1;
}

.counter button:hover {
    background-color: #0a3d62;
}

.counter .count {
    padding: 0 16px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #0a3d62;
    min-width: 28px;
    text-align: center;
    user-select: none;
}

.bottom-card {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1e90ff;
    border-radius: 16px;
    padding: 15px 25px;
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.35);
    color: white;
}

.bottom-card .top h3 {
    margin: 0;
    font-weight: 700;
    font-size: 1.7rem;
}

.bottom-card .top .price-total {
    font-weight: 900;
    font-size: 1.9rem;
}

.a-c-btn {
    background-color: #fff;
    color: #1e90ff;
    border: none;
    padding: 14px 48px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.a-c-btn:hover {
    background-color: #e0f0ff;
}

.results-section {
    background-color: #e9f1ff;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #0a3d62;
}

.results-section .container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.results-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 800;
    color: #123d7a;
    text-align: center;
}

/* Latest Winning Numbers */
.winning-numbers {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.win-number {
    background-color: #1e90ff;
    color: white;
    font-weight: 700;
    font-size: 2rem;
    padding: 15px 22px;
    border-radius: 14px;
    min-width: 56px;
    text-align: center;
    user-select: none;
}

/* Top 10 Weekly Winners */
.weekly-winners table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.15);
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.weekly-winners thead tr {
    background-color: #1e90ff;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: left;
}

.weekly-winners thead th {
    padding: 14px 18px;
}

.weekly-winners tbody tr {
    border-bottom: 1px solid #e0e9ff;
    transition: background-color 0.3s ease;
}

.weekly-winners tbody tr:hover {
    background-color: #f0f7ff;
}

.weekly-winners tbody td {
    padding: 12px 18px;
    color: #123d7a;
    font-weight: 600;
}

/* Check Your Ticket */
.check-ticket form {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.check-ticket input[type="text"] {
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid #1e90ff;
    width: 65%;
    color: #0a3d62;
    outline-offset: 2px;
    transition: border-color 0.3s ease;
}

.check-ticket input[type="text"]:focus {
    border-color: #0a3d62;
    outline: none;
}

.check-ticket button {
    background-color: #1e90ff;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.check-ticket button:hover {
    background-color: #0a3d62;
}

.check-result {
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e90ff;
    text-align: center;
}

.privacy-policy {
    background-color: #f0f7ff;
    color: #0a3d62;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.65;
    max-width: 900px;
    margin: 0 auto 80px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(18, 61, 122, 0.1);
}

.privacy-policy .container {
    padding: 0 10px;
}

.privacy-policy h1 {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 25px;
    color: #123d7a;
}

.privacy-policy .effective-date {
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    color: #235a9e;
}

.privacy-policy h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #1e5aa8;
    border-bottom: 2px solid #1e90ff;
    padding-bottom: 6px;
}

.privacy-policy h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a3d6e;
}

.privacy-policy p,
.privacy-policy ul {
    font-size: 1.05rem;
    color: #234e82;
    margin-bottom: 20px;
}

.privacy-policy ul {
    padding-left: 24px;
    list-style-type: disc;
}

.privacy-policy a {
    color: #1e90ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-policy a:hover {
    color: #0a3d62;
}

.terms-conditions {
    background-color: #f0f7ff;
    color: #0a3d62;
    padding: 60px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.65;
    max-width: 900px;
    margin: 0 auto 80px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(18, 61, 122, 0.1);
}

.terms-conditions .container {
    padding: 0 10px;
}

.terms-conditions h1 {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 25px;
    color: #123d7a;
}

.terms-conditions .effective-date {
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    color: #235a9e;
}

.terms-conditions h2 {
    font-size: 1.9rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #1e5aa8;
    border-bottom: 2px solid #1e90ff;
    padding-bottom: 6px;
}

.terms-conditions p,
.terms-conditions ul {
    font-size: 1.05rem;
    color: #234e82;
    margin-bottom: 20px;
}

.terms-conditions ul {
    padding-left: 24px;
    list-style-type: disc;
}

.terms-conditions a {
    color: #1e90ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.terms-conditions a:hover {
    color: #0a3d62;
}

.age-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 61, 98, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: #dbe9ff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    padding: 20px;
}

.age-gate-content {
    background: #123d7a;
    border-radius: 15px;
    padding: 30px 40px;
    max-width: 360px;
    box-shadow: 0 8px 24px rgba(18, 61, 122, 0.7);
}

.age-gate-content p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.age-gate-buttons button {
    background-color: #1e90ff;
    color: white;
    border: none;
    padding: 12px 28px;
    margin: 0 10px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.age-gate-buttons button:hover {
    background-color: #0a3d62;
}

.age-gate-links {
    margin-top: 22px;
    font-size: 0.95rem;
}

.age-gate-links a {
    color: #a9c9ff;
    text-decoration: underline;
    margin: 0 6px;
    font-weight: 600;
}

.age-gate-links a:hover {
    color: #e0f0ff;
}