/* ==========================================
   NAXSOL ENTERPRISES LTD - STYLESHEET
   Minimalist & Professional Design
   ========================================== */

/* ==========================================
   GLOBAL RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-navy: #1a2332;
    --primary-slate: #2c3e50;
    --accent-blue: #FF4500;
    --accent-teal: #FFA726;
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --bg-gray: #f3f4f6;
    --border-gray: #e5e7eb;
    --success-green: #10b981;
    --warning-amber: #f59e0b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(1.875rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-teal);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.wrapper-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.wrapper-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.spacing-section {
    padding: 4rem 0;
}

.spacing-section-lg {
    padding: 5rem 0;
}

.text-centered {
    text-align: center;
}

/* ==========================================
   18+ AGE VERIFICATION OVERLAY
   ========================================== */
.age-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.97);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInOverlay 0.3s ease-in-out;
}

.age-overlay.hidden-overlay {
    display: none;
}

@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

.age-dialog {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: slideUpDialog 0.4s ease-out;
}

@keyframes slideUpDialog {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.age-dialog__icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-teal);
}

.age-dialog__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.age-dialog__text {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-dialog__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-age-confirm,
.btn-age-decline {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    min-width: 140px;
}

.btn-age-confirm {
    background:  orangered;
    color: white;
}

.btn-age-confirm:hover {
    background: darkorange;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-age-decline {
    background: var(--bg-gray);
    color: var(--text-dark);
}

.btn-age-decline:hover {
    background: var(--border-gray);
}

/* ==========================================
   COOKIE CONSENT BAR
   ========================================== */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 35, 50, 0.97);
    backdrop-filter: blur(10px);
    padding: 1.25rem 0;
    z-index: 9999;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-bar.visible-bar {
    transform: translateY(0);
}

.cookie-bar__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-bar__text {
    color: white;
    font-size: 0.9375rem;
    flex: 1;
    min-width: 250px;
}

.cookie-bar__text a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.cookie-bar__actions {
    display: flex;
    gap: 0.75rem;
}

.btn-cookie-accept,
.btn-cookie-decline {
    padding: 0.625rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-cookie-accept {
    background: var(--accent-teal);
    color: white;
}

.btn-cookie-accept:hover {
    background: #E64500;
    transform: translateY(-1px);
}

.btn-cookie-decline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ==========================================
   WARNING BANNER
   ========================================== */
.notice-banner {
    background: linear-gradient(135deg, var(--warning-amber), #f97316);
    color: white;
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.site-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--primary-navy);
    transition: color var(--transition-fast);
}

.site-brand:hover {
    color: orangered;
}

.site-brand__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.site-brand__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 26px;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.mobile-menu-btn.active-menu span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active-menu span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active-menu span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.main-nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav__link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
    position: relative;
}

.main-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    transition: width var(--transition-normal);
}

.main-nav__link:hover {
    color: var(--accent-teal);
}

.main-nav__link:hover::after {
    width: 100%;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-banner {
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/hero_bg.png') center/cover no-repeat;
    opacity: 0.12;
    z-index: 0;
}

.hero-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.hero-banner h1,
.hero-banner__title {
    color: white;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.hero-banner__subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================
   PLATFORM CARDS
   ========================================== */
.platforms-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.operator-card {
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    align-items: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.operator-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--accent-teal);
}

.operator-card__logo {
    max-width: 360px;
    max-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fdfa75;
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
}

.operator-card__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.operator-card__details {
    flex: 1;
}

.operator-card__info {
    margin-bottom: 1.25rem;
}

.operator-card__info p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.operator-card__features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}

.operator-card__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.operator-card__features li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--success-green);
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.operator-card__rating {
    display: inline-block;
    background: linear-gradient(135deg, var(--success-green), #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.9375rem;
}

.operator-card__cta {
    display: flex;
    gap: 1rem;
}

.operator-card__footer {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: orangered;
    color: white;
}

.btn-primary:hover {
    background: orangered;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--accent-teal);
    border: 2px solid var(--accent-teal);
}

.btn-secondary:hover {
    background: var(--accent-teal);
    color: white;
}

/* ==========================================
   INFO BLOCKS
   ========================================== */
.content-block {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.content-block__header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-gray);
}

.content-block__title {
    font-size: 1.75rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.content-block__subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

.content-block__body p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

.content-block__body ul {
    list-style: none;
    margin: 1.5rem 0;
}

.content-block__body ul li {
    padding-left: 1.75rem;
    margin-bottom: 0.875rem;
    position: relative;
    line-height: 1.6;
}

.content-block__body ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-teal);
    font-weight: 700;
}

/* ==========================================
   CATEGORIES GRID
   ========================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-item {
    background: var(--bg-light);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.category-item:hover {
    background: var(--bg-white);
    border-color: var(--accent-teal);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-item__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-teal);
}

.category-item__title {
    font-size: 1.125rem;
    color: var(--primary-navy);
    margin-bottom: 0.625rem;
}

.category-item__description {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-list {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--bg-light);
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--primary-navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-gray);
}

.faq-question__icon {
    font-size: 1.25rem;
    color: orangered;
    transition: transform var(--transition-normal);
}

.faq-item.active-faq .faq-question__icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-item.active-faq .faq-answer {
    max-height: 500px;
}

.faq-answer__content {
    padding: 1.25rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: #032359;
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 0 1.5rem;
}

.site-footer p {
    color: white;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logos a,
.footer-logos div {
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.footer-logos a:hover {
    opacity: 1;
}

.footer-logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand__title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-brand__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

.footer-links__list {
    list-style: none;
}

.footer-links__list li {
    margin-bottom: 0.75rem;
}

.footer-links__list a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
    font-size: 0.9375rem;
}

.footer-links__list a:hover {
    color: white;
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-disclaimer h3 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-disclaimer strong {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: white;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    .notice-banner {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        border-top: 1px solid var(--border-gray);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-normal);
    }

    .main-nav.active-nav {
        max-height: 400px;
    }

    .main-nav__list {
        flex-direction: column;
        gap: 0;
        padding: 4rem 0 1rem;
    }

    .main-nav__list li {
        width: 100%;
        border-bottom: 1px solid var(--border-gray);
    }

    .main-nav__list li:last-child {
        border-bottom: none;
    }

    .main-nav__link {
        display: block;
        padding: 1rem 1.5rem;
    }

    .main-nav__link::after {
        display: none;
    }

    .operator-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .operator-card__logo {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .operator-card__features {
        grid-template-columns: 1fr;
    }

    .operator-card__cta {
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .age-dialog {
        padding: 1.75rem;
    }

    .age-dialog__actions {
        flex-direction: column;
    }

    .btn-age-confirm,
    .btn-age-decline {
        width: 100%;
    }

    .cookie-bar__content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .cookie-bar__actions {
        justify-content: stretch;
    }

    .btn-cookie-accept,
    .btn-cookie-decline {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 3rem 0;
    }

    .spacing-section {
        padding: 2.5rem 0;
    }

    .content-block {
        padding: 1.5rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .notice-banner,
    .site-header,
    .mobile-menu-btn,
    .age-overlay,
    .cookie-bar,
    .btn-primary,
    .btn-secondary,
    .site-footer {
        display: none !important;
    }
}
