:root {
    --bg-color: #1a1a2e;
    --card-bg: #16213e;
    --accent-color: #e94560;
    --text-color: #e0e0e0;
    --text-muted: #aeb8c9;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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


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

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

.bg-lighter {
    background-color: var(--card-bg);
}

.bg-darker {
    background-color: #0f3460;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.divider {
    height: 3px;
    width: 80px;
    background-color: var(--accent-color);
    margin: 15px auto;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
}

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

.btn-primary:hover {
    background-color: #d1364e;
    transform: translateY(-2px);
}

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

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

.btn-outline {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 20px;
    margin-top: 15px;
}

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


.main-header {
    background-color: rgba(26, 26, 46, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.spin-icon {
    color: var(--accent-color);
}

.main-nav ul {
    display: flex;
    gap: 20px;
}

.main-nav a {
    color: var(--text-color);
    font-size: 0.95rem;
}

.main-nav a:hover {
    color: var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}


.hero-section {
    height: 100vh;
    min-height: 600px;
    background: url('../img/hero.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.legal-note-small {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--white);
    font-weight: 500;
}

.hero-features i {
    color: var(--accent-color);
    margin-right: 5px;
}


.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.about-text {
    flex: 2;
}

.about-text p {
    margin-bottom: 15px;
}

.about-icon {
    flex: 1;
    text-align: center;
    font-size: 8rem;
    color: var(--accent-color);
    opacity: 0.2;
}

.sub-text-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 3px solid var(--accent-color);
}


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

.service-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--white);
}


.timeline {
    max-width: 800px;
    margin: 0 auto;
}

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

.timeline-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.timeline-content h3 {
    color: var(--white);
    margin-bottom: 10px;
}


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

.brand-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.brand-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.brand-header {
    background-color: #0f3460;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.brand-logo-placeholder {
    height: 60px;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo-placeholder img {
    height: 100%;
    padding: 5px;
}

.rating {
    color: #ffd700;
    font-weight: bold;
}

.brand-body {
    padding: 20px;
    text-align: center;
}

.bonus-list {
    text-align: left;
    margin: 15px 0;
    font-size: 0.9rem;
}

.bonus-list li {
    margin-bottom: 5px;
}

.bonus-list i {
    color: #4caf50;
    margin-right: 5px;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.payment-icons-small {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.payment-icons-small i {
    margin: 0 5px;
}

.affiliate-notice {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}


.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}

.payment-item {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
}

.payment-item i {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}


.security-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.badge-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--white);
}

.badge-item i {
    color: var(--accent-color);
    margin-right: 5px;
}


.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.faq-item h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}


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

.blog-card {
    background-color: var(--bg-color);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.read-more {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-color);
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background-color: var(--bg-color);
    border: 1px solid #333;
    border-radius: 5px;
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.address-box {
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 2px solid var(--accent-color);
}

.contact-email {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}


.modern-footer {
    background-color: #0b0b14;
    border-top: 4px solid var(--accent-color);
    color: #aeb8c9;
    font-size: 0.95rem;
    margin-top: 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 70px 0 50px;
}


.footer-logo {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo i {
    color: var(--accent-color);
}

.footer-desc {
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

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

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


.footer-col h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}


.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: #aeb8c9;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-nav a i {
    font-size: 0.7rem;
    color: var(--accent-color);
    opacity: 0.7;
}

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

.footer-nav a:hover i {
    opacity: 1;
}


.rg-text {
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.rg-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.age-badge {
    background-color: #d1364e;
    color: white;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.safe-badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.payment-methods-footer {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
    color: #555;
}


.footer-bottom {
    background-color: #050508;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-box {
    margin-bottom: 20px;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

.copyright-row {
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}


@media (max-width: 992px) {
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-logo,
    .social-links,
    .rg-badges,
    .payment-methods-footer {
        justify-content: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-nav a {
        justify-content: center;
    }

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

.warning-badge {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 2px 8px;
    border-radius: 3px;
    margin-top: 10px;
    font-weight: bold;
}


@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(26, 26, 46, 0.98);
        padding: 20px 0;
        display: none;
        border-bottom: 1px solid #333;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column-reverse;
    }

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

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

.legal-header {
    background-color: #0f3460;
    padding: 120px 0 60px;
    text-align: center;
}

.legal-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-muted);
    font-style: italic;
}

.legal-content {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.legal-text-wrapper {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.legal-text-wrapper h2 {
    color: var(--white);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

.legal-text-wrapper h3 {
    color: #e0e0e0;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.legal-text-wrapper p {
    color: #aeb8c9;
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
}

.legal-text-wrapper ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
    color: #aeb8c9;
}

.legal-text-wrapper li {
    margin-bottom: 10px;
}

.legal-text-wrapper li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 0;
}

@media (max-width: 768px) {
    .legal-text-wrapper {
        padding: 20px;
    }

    .legal-header h1 {
        font-size: 2rem;
    }
}

.cookie-type-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.cookie-title {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.warning-box {
    background-color: rgba(209, 54, 78, 0.1);
    border: 1px solid #d1364e;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: center;
}

.warning-box h4 {
    color: #d1364e;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.warning-box p {
    color: #ffcccb;
    margin-bottom: 0;
}


.help-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.contact-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card strong {
    display: block;
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-card a {
    color: var(--accent-color);
    font-weight: bold;
}

@media (max-width: 768px) {

    .help-contacts {
        grid-template-columns: 1fr;
    }
}

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

.age-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-modal {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s ease;
}

.age-overlay.active .age-modal {
    transform: scale(1);
}

.age-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

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

.age-modal p {
    color: #aeb8c9;
    margin-bottom: 15px;
}

.age-warning {
    color: #d1364e !important;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 30px !important;
}

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


.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: #0f3460;
    border-top: 1px solid var(--accent-color);
    padding: 20px 0;
    z-index: 9000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cookie-text p {
    color: #aeb8c9;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}


.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background-color: var(--bg-color);
    width: 500px;
    max-width: 90%;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.cookie-modal-header {
    background-color: var(--card-bg);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-modal-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.2rem;
}

.close-modal {
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.2rem;
    cursor: pointer;
}

.cookie-modal-body {
    padding: 20px;
}

.cookie-modal-body p {
    color: #ccc;
    margin-bottom: 20px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cookie-option:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-info strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
}

.cookie-info span {
    font-size: 0.85rem;
    color: #888;
}


.cookie-toggle input {
    display: none;
}

.cookie-toggle label {
    display: block;
    width: 50px;
    height: 26px;
    background-color: #333;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-toggle label::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
}

.cookie-toggle input:checked+label {
    background-color: var(--accent-color);
}

.cookie-toggle input:checked+label::after {
    transform: translateX(24px);
}

.cookie-toggle input:disabled+label {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 15px 20px;
    background-color: var(--card-bg);
    text-align: right;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}