:root {

    --primary-color: #0e1a2b;
    --secondary-color: #c90000;
    --accent-color: #f1c40f;
    --text-color: #333333;
    --text-light: #b0b8c4;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e0e0e0;


    --header-height: 70px;
    --container-width: 1200px;


    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--light-bg);
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--secondary-color);
}


.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(201, 0, 0, 0.3);
}

.btn-primary:hover {
    background-color: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 0, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

header {
    background-color: var(--primary-color);
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo a {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.nav-menu ul {
    display: flex;
    gap: 25px;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    border-bottom-color: var(--secondary-color);
}


.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px;
    transition: var(--transition);
}

.hero {
    height: 90vh;
    min-height: 600px;
    background-image: url('../img/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: var(--header-height);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 26, 43, 0.9) 0%, rgba(14, 26, 43, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtext {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.disclaimer-hero {
    font-size: 0.75rem;
    opacity: 0.7;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 15px;
}



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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--secondary-color);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    background: rgba(201, 0, 0, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
}

.card-note {
    display: block;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    border-top: 1px solid #eee;
    padding-top: 10px;
}


.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.step-item {
    position: relative;
    text-align: left;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(14, 26, 43, 0.3);
}

.bookmaker-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bookmaker-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 0, 0, 0.3);
}

.bookmaker-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--secondary-color);
}

.bm-logo {
    flex: 0 0 150px;
    text-align: center;
}

.bm-logo img {
    max-height: 60px;
    width: auto;
    margin: 0 auto;
}

.bm-rating {
    flex: 0 0 120px;
    text-align: center;
}

.stars {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.bm-rating strong {
    display: block;
    margin-top: 5px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.bm-bonus {
    flex: 1;
    padding: 0 20px;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    margin: 0 20px;
}

.bm-bonus ul {
    list-style: none;
}

.bm-bonus li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.bm-bonus li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: green;
    font-weight: bold;
}

.bm-payment {
    flex: 0 0 150px;
    text-align: center;
}

.bm-payment .icons {
    margin-bottom: 5px;
    font-size: 1.4rem;
    color: #555;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.bm-payment small {
    font-size: 0.75rem;
    color: #777;
}

.bm-actions {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bm-subtext {
    width: 100%;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
    font-size: 0.8rem;
    color: #999;
    text-align: center;
}


.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.game-cat {
    background: var(--white);
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.game-cat:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.game-cat:hover i {
    color: var(--accent-color);
}

.game-cat:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.game-cat:hover h3 {
    color: var(--white);
}


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

.review-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.review-card::before {
    content: '\201C';
    font-family: serif;
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 0;
    left: 20px;
}


.accordion {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

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

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
    background: #fafafa;
}

.accordion-content p {
    padding: 20px 0;
    color: #555;
    font-size: 0.95rem;
}

.danger-zone {
    background: #fff5f5;
    border-top: 4px solid var(--secondary-color);
}

.tips-list {
    display: inline-block;
    text-align: left;
    margin: 20px 0;
}

.tips-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.tips-list li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.help-link {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: underline;
}


.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info .info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

#footer {
    background-color: #050a10;
    color: var(--text-light);
    padding: 70px 0 30px;
    font-size: 0.9rem;
    position: relative;
    border-top: 4px solid var(--secondary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-desc {
    margin-bottom: 20px;
    line-height: 1.6;
}


.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}


.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--secondary-color);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.highlight-link {
    color: var(--accent-color) !important;
}


.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--secondary-color);
}

.age-badge {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--secondary-color);
    padding: 5px 15px;
    border-radius: 4px;
    color: var(--white);
    margin-top: 15px;
}

.age-badge span {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-right: 10px;
}


.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

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

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-methods i {
    font-size: 2rem;
    color: #ccc;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #888;
    text-align: justify;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    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: var(--white);
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--primary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.hidden-el {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.show-el {
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 1024px) {
    .container {
        width: 95%;
    }

    .bookmaker-card {
        flex-direction: column;
        text-align: center;
    }

    .bm-bonus {
        border: none;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        padding: 15px 0;
        margin: 15px 0;
        width: 100%;
    }

    .bm-bonus li {
        display: inline-block;
        margin: 0 10px;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 768px) {

    .nav-menu {
        position: fixed;
        right: 0;
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
        background-color: var(--primary-color);
        width: 100%;
        max-width: 300px;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        padding-top: 40px;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .nav-menu.nav-active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
    }


    .hero h1 {
        font-size: 2.2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .bm-bonus li {
        display: block;
        text-align: left;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 25px 15px;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 10px;
    }

    .footer-contact li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}


.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
}


.about-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}


.about-list li {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid transparent;
}


.about-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top-color: var(--secondary-color);
}


.about-list i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    background: rgba(201, 0, 0, 0.08);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    transition: all 0.3s ease;
}


.about-list li:hover i {
    background: var(--secondary-color);
    color: var(--white);
    transform: rotateY(360deg);
}


.about-list span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}


@media screen and (max-width: 768px) {
    .about-list {
        flex-direction: column;
        gap: 20px;
    }

    .about-list li {
        width: 100%;
    }
}

.advantages-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 20px;
}


.adv-card {
    background: var(--white);
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}


.adv-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(14, 26, 43, 0.1);
}


.adv-card i {
    font-size: 3rem;
    margin-bottom: 25px;
    display: inline-block;


    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    transition: transform 0.4s ease;
}


.adv-card:hover i {
    transform: scale(1.15) rotate(5deg);
}


.adv-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}


.adv-card p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}


.adv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.adv-card:hover::after {
    width: 60%;
}


@media screen and (max-width: 576px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

#odgovorno-igranje {
    background-color: #fff9f9;
    border-top: 4px solid var(--secondary-color);
    border-bottom: 1px solid #eee;
    text-align: center;
}


#odgovorno-igranje .section-header i {
    color: #e67e22;
    margin-right: 10px;
}


.responsible-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    color: #555;
}


.tips-list {
    display: inline-block;
    text-align: left;
    margin: 30px 0;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #27ae60;
}

.tips-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    font-weight: 500;
}


.tips-list li::before {
    content: '\f00c';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #27ae60;
}


.help-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
    line-height: 1.8;
}

.help-link {
    color: var(--secondary-color);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.help-link:hover {
    border-bottom-color: var(--secondary-color);
    color: #a00000;
}


.age-limit {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: bold;
    color: #333;
    background: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
}

.age-limit span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(201, 0, 0, 0.3);
}

.policy-header {
    background-color: var(--primary-color);
    padding: 20px 0;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

}

.policy-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.policy-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.back-link {
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.back-link:hover {
    color: var(--secondary-color);
}

.policy-content {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 130px;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.last-updated {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 40px;
    display: block;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
}

.policy-section h3 {
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #444;
}

.policy-section p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
    text-align: justify;
}

.policy-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 15px;
    color: #555;
}

.policy-section li {
    margin-bottom: 8px;
}

.alert-box {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.policy-section li::before {
    content: '\f058';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: #27ae60;
}

.warning-list li::before {
    content: '\f071';
    color: #e67e22;
}

.help-box {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
    text-align: center;
}

.help-box h3 {
    margin-top: 0;
    color: var(--secondary-color);
}

.btn-help {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-help:hover {
    background: #a00000;
    transform: translateY(-2px);
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 10, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}


.age-gate.visible {
    opacity: 1;
    visibility: visible;
}

.age-modal {
    background: #0e1a2b;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.age-gate.visible .age-modal {
    transform: scale(1);
}

.age-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.age-icon span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: transparent;
    border: 3px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.age-modal h2 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.age-modal p {
    color: #b0b8c4;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.age-legal {
    font-size: 0.8rem !important;
    opacity: 0.7;
    margin-bottom: 30px !important;
}

.age-legal a {
    color: var(--white);
    text-decoration: underline;
}

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

.age-buttons button {
    width: 100%;
}

.age-exit {
    border-color: #555;
    color: #ccc;
}

.age-exit:hover {
    background: #333;
    color: #fff;
    border-color: #fff;
}


@media screen and (max-width: 480px) {
    .age-modal {
        padding: 30px 20px;
    }

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