/* Global Styles */
:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --accent-hover: #c23850;
    --success-color: #0ead69;
    --warning-color: #f39c12;
    --text-light: #ffffff;
    --text-dark: #2c3e50;
    --text-muted: #95a5a6;
    --bg-light: #f8f9fa;
    --bg-dark: #0f0f1e;
    --border-color: #dee2e6;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
    overflow-x: hidden;
}

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

/* Age Gate Modal */
.age-gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-gate-modal.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--accent-color);
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.age-gate-content h2 {
    color: var(--text-light);
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.age-gate-content p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.age-gate-question {
    margin: 30px 0;
}

.age-gate-question p {
    color: var(--text-light);
    font-size: 20px;
    font-weight: 600;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.age-gate-buttons button {
    flex: 1;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-yes {
    background: var(--success-color);
    color: var(--text-light);
}

.btn-yes:hover {
    background: #0c9456;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 173, 105, 0.4);
}

.btn-no {
    background: var(--accent-color);
    color: var(--text-light);
}

.btn-no:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.age-gate-warning {
    color: var(--warning-color) !important;
    font-size: 14px !important;
    font-weight: 500;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Header */
.header {
    background: var(--primary-color);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 100px 0;
    color: var(--text-light);
    text-align: center;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.feature-item i {
    color: var(--success-color);
    font-size: 20px;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

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

.product-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--warning-color));
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card.featured {
    border: 3px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--success-color);
    color: var(--text-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-logo {
    text-align: center;
    margin: 20px 0;
}

.logo-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    color: white;
}

.favbet-logo {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.arena-logo {
    background: linear-gradient(135deg, #4834d4, #686de0);
}

.rizk-logo {
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
}

.logo-placeholder i {
    font-size: 40px;
}

.product-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0 15px;
    text-align: center;
}

.product-description {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: center;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.product-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.product-features .feature i {
    color: var(--accent-color);
    font-size: 16px;
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 20px 0;
}

.product-rating i {
    color: var(--warning-color);
    font-size: 18px;
}

.product-rating span {
    margin-left: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.4);
}

.terms {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: white;
}

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

.info-card {
    text-align: center;
    padding: 40px 20px;
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-color), var(--warning-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 35px;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: var(--text-light);
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--text-light);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

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

.footer-column p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.age-badge-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 18px;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a,
.footer-column ul li {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

/* Regulators Section */
.footer-regulators {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.footer-regulators h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-light);
    text-align: center;
}

.regulators-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 14px;
}

.regulators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.regulator-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-light);
    border: 2px solid transparent;
}

.regulator-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.regulator-logo {
    width: 60px;
    height: 60px;
    background: rgba(233, 69, 96, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-color);
}

.regulator-item span {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
}

.age-restriction {
    background: var(--accent-color);
}

.age-logo {
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}

.age-text {
    position: absolute;
    font-size: 18px;
    font-weight: 800;
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.disclaimer {
    background: rgba(233, 69, 96, 0.1);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid var(--accent-color);
}

.disclaimer h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.disclaimer p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 14px;
}

.affiliate-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-style: italic;
}

.copyright {
    text-align: center;
}

.copyright p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links span {
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-features {
        gap: 20px;
    }

    .section-header h2 {
        font-size: 30px;
    }

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

    .cta-content h2 {
        font-size: 28px;
    }

    .regulators-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .products,
    .info-section,
    .cta-section {
        padding: 50px 0;
    }

    .age-gate-content {
        padding: 30px 20px;
        margin: 20px;
    }

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

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0 60px;
    color: var(--text-light);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.page-hero-content p {
    font-size: 18px;
    color: var(--text-muted);
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: white;
}

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

.about-intro h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.lead {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-muted);
}

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

.mission-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mission-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--accent-color), var(--warning-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 35px;
}

.mission-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mission-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

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

.wwd-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.wwd-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.wwd-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

.wwd-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.wwd-item p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
}

.values-section {
    background: var(--bg-light);
    padding: 60px 40px;
    border-radius: 20px;
}

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

.value-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.value-item i {
    color: var(--success-color);
    font-size: 28px;
    flex-shrink: 0;
}

.value-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.value-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.criteria-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.criteria-item {
    display: flex;
    gap: 20px;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.criteria-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.criteria-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.criteria-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.criteria-content p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

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

.disclaimer-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-color);
    box-shadow: var(--shadow);
}

.disclaimer-box h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 20px;
}

.disclaimer-box p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 15px;
    font-size: 15px;
}

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

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

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.contact-item > i {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--warning-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
}

.contact-item p,
.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* Product Detail Page Styles */
.product-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    color: var(--text-light);
}

.product-hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.product-hero-logo {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.product-hero-info {
    flex: 1;
}

.product-hero-info h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
}

.product-hero-info .tagline {
    font-size: 22px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

.product-details {
    padding: 80px 0;
    background: white;
}

.detail-section {
    margin-bottom: 60px;
}

.detail-section h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.detail-section p {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.bonus-highlight {
    background: linear-gradient(135deg, var(--accent-color), var(--warning-color));
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

.bonus-highlight h2 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
}

.bonus-amount {
    font-size: 60px;
    font-weight: 800;
    margin: 20px 0;
}

/* Privacy & Cookie Policy Pages */
.policy-content {
    padding: 80px 0;
    background: white;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
}

.policy-container h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 40px 0 20px;
}

.policy-container h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.policy-container p {
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

.policy-container ul {
    margin: 20px 0 20px 30px;
    color: var(--text-muted);
    line-height: 1.9;
}

.policy-container ul li {
    margin-bottom: 12px;
}

.policy-highlight {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin: 30px 0;
}

.policy-highlight strong {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 32px;
    }

    .product-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .product-hero-logo {
        width: 150px;
        height: 150px;
    }

    .product-hero-info h1 {
        font-size: 32px;
    }

    .about-intro h2,
    .about-section h2 {
        font-size: 28px;
    }

    .what-we-do {
        grid-template-columns: 1fr;
    }

    .criteria-list {
        grid-template-columns: 1fr;
    }
}