@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   CSS VARIABLES & DESIGN SYSTEM (LIGHT THEME)
   ========================================== */
:root {
    --bg-body: #ffffff;
    --bg-light: #fbf9ff;
    --bg-card: #ffffff;
    --bg-input: #ffffff;
    --primary: #6f0991;
    --primary-light: #9016b8;
    --primary-glow: rgba(111, 9, 145, 0.08);
    --secondary: #6f0991;
    --secondary-hover: #50006c;
    --accent: #ff9d00;
    --accent-hover: #ffb732;
    --text-dark: #2d1a3a;
    --text-muted: #685973;
    --text-white: #ffffff;
    --border-color: rgba(111, 9, 145, 0.2);
    --border-light: #e8d8f5;
    --success: #2e7d32;
    --error: #c62828;

    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s ease;

    --shadow-sm: 0 2px 5px rgba(111, 9, 145, 0.05);
    --shadow-md: 0 4px 15px rgba(111, 9, 145, 0.08);
    --shadow-lg: 0 10px 25px rgba(111, 9, 145, 0.12);

    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 30px;

    --max-width: 1100px;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button,
input,
textarea {
    font-family: inherit;
    color: inherit;
    outline: none;
    border: none;
}

ul {
    list-style: none;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* Content keyword links — bold + brand purple */
.content-section p a,
.feature-vertical-desc a,
.faq-content p a,
.guide-card-bullets li a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.content-section p a:hover,
.feature-vertical-desc a:hover,
.faq-content p a:hover,
.guide-card-bullets li a:hover {
    text-decoration: underline;
}

/* ==========================================
   REUSABLE COMPONENTS
   ========================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    min-height: 44px;
    min-width: 120px;
    text-align: center;
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
    transform: translateY(-1px);
}

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

.btn-secondary:hover {
    background-color: rgba(111, 9, 145, 0.05);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

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

/* Section Header Strip (Light Lavender with Purple Top/Bottom Border) */
.section-header-strip {
    width: 100%;
    background: linear-gradient(to right, #fdfaff, #f5e6ff, #fdfaff);
    border-top: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    padding: 16px 20px;
    text-align: center;
    margin: 40px auto 25px;
    box-sizing: border-box;
}

.section-header-title {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: -15px auto 25px;
    max-width: 700px;
}

/* White Card with thin Purple Border */
.outline-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.outline-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

/* Badge 18+ */
.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #c62828;
    color: #c62828;
    font-weight: 800;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    margin-right: 8px;
}

/* ==========================================
   HEADER SECTION
   ========================================== */
.header {
    background-color: var(--primary);
    color: var(--text-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 36px;
    width: auto;
}

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

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-normal);
}

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-cta .btn {
    min-height: 36px;
    padding: 6px 16px;
    font-size: 0.85rem;
}

.header-cta .btn-primary {
    background-color: var(--accent);
    color: var(--text-dark);
    border-color: var(--accent);
}

.header-cta .btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
    width: 44px;
    height: 44px;
    padding: 10px;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    margin: 5px auto;
    transition: var(--transition-normal);
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer {
    background-color: var(--primary);
    color: var(--text-white);
    padding: 50px 0 25px;
    margin-top: 60px;
    font-size: 0.9rem;
    border-top: 2px solid var(--accent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    margin: 15px 0;
    max-width: 320px;
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    transition: var(--transition-normal);
    font-size: 1rem;
}

.social-icon:hover {
    background-color: var(--accent);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.footer-links-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.footer-links-list a:hover {
    color: var(--accent);
    padding-left: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    text-align: center;
}

.gaming-disclaimer {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    margin-bottom: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
}

/* ==========================================
   HOMEPAGE SPECIFIC LAYOUT
   ========================================== */
.hero {
    padding: 130px 0 50px;
    background: radial-gradient(circle at 50% 100%, #f7efff, #ffffff 70%);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.hero-logo-box {
    margin: 0 auto 20px;
    width: 90px;
    height: 90px;
    border-radius: var(--border-radius-lg);
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(111, 9, 145, 0.15);
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-logo-box img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 25px;
    font-weight: 500;
}

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

.hero-buttons .btn {
    padding: 12px 30px;
    font-size: 1rem;
}

.hero-buttons-row2 {
    display: flex;
    justify-content: center;
}

.hero-buttons-row2 .btn {
    min-height: 38px;
    font-size: 0.85rem;
}

/* Quick Info Stats Grid (Row of 5 boxes) */
.quick-info-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 30px auto;
    max-width: 100%;
}

.info-item {
    background-color: var(--bg-card);
    border: 1.5px solid var(--primary);
    border-radius: 16px;
    padding: 20px 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-normal);
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.info-item-icon {
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.info-icon-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.info-item-lbl {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
}

.info-item-val {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

@media (max-width: 768px) {
    .quick-info-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .quick-info-row .info-item:nth-child(5) {
        grid-column: span 2;
    }
}

/* Standard content body layout */
.content-section {
    padding: 20px 0;
}

.content-section p {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.content-section p strong {
    color: var(--primary);
}

/* Features Grid */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-box-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-box-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.feature-box-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Vertical Features List (PlayPKR Style) */
.features-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    margin: 0;
}

.feature-vertical-item {
    text-align: left;
}

/* Left-border h3 style — features and guide subtitles only */
.feature-vertical-title,
.login-guide-subtitle {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    border-left: 3px solid var(--primary);
    padding-left: 10px;
    margin-bottom: 8px;
    line-height: 1.4;
    display: block;
}

/* Guide card titles — no border, centered, uppercase purple */
.guide-card-title {
    border-left: none !important;
    padding-left: 0 !important;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.feature-vertical-desc {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Steps Blocks (Download/Register/Login) */
.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--text-white);
    font-weight: 800;
    font-size: 0.9rem;
    width: 28px;
    height: 28px;
    border-radius: var(--border-radius-sm);
    min-width: 28px;
}

.step-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.step-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Deposit & Withdrawal Section */
.payout-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
}

.payment-gateways {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gateway-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 8px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-light);
}

.gateway-card-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.gateway-card-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
}

.payout-details-list {
    margin-top: 15px;
}

.payout-details-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dotted var(--border-light);
    font-size: 0.9rem;
}

.payout-details-row:last-child {
    border-bottom: none;
}

.payout-details-lbl {
    color: var(--text-muted);
}

.payout-details-val {
    font-weight: 700;
    color: var(--primary);
}

/* Games Row Lobbies */
.games-row-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.game-lobby-card {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    background-color: var(--bg-card);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.game-lobby-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.game-lobby-image-box {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.game-lobby-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.game-lobby-card:hover .game-lobby-image-box img {
    transform: scale(1.05);
}

.game-lobby-info {
    padding: 15px;
}

.game-lobby-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.game-lobby-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Technical Specification Table */
.spec-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    margin: 20px 0;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
    font-size: 0.9rem;
}

.spec-table th,
.spec-table td {
    padding: 10px 16px;
    border: 1px solid var(--border-light);
}

.spec-table th {
    background-color: var(--primary);
    color: var(--text-white);
    font-weight: 700;
    text-align: left;
}

.spec-table tr:nth-child(even) {
    background-color: var(--bg-light);
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--primary);
    width: 40%;
}

/* Advantages / Disadvantages Columns */
.columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.column-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.column-card-title.pros {
    color: var(--success);
}

.column-card-title.cons {
    color: var(--error);
}

.list-items-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-item-bullet {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
}

.bullet-icon {
    font-weight: bold;
    min-width: 15px;
}

.bullet-icon.pro {
    color: var(--success);
}

.bullet-icon.con {
    color: var(--error);
}

.bullet-text strong {
    color: var(--text-dark);
}

.bullet-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Accordion FAQs (White Cards with Thin Purple Borders) */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin: 0;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-card);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: transparent;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    text-align: left;
    cursor: pointer;
}

.faq-icon-svg {
    width: 12px;
    height: 12px;
    fill: var(--primary);
    transition: var(--transition-fast);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-content {
    padding: 0 20px 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.faq-item.active {
    border-color: var(--primary);
}

.faq-item.active .faq-icon-svg {
    transform: rotate(180deg);
}

.faq-item.active .faq-panel {
    max-height: 400px;
}

/* Final Banner */
.final-cta-banner {
    background: linear-gradient(to right, #fcfaff, #f5e6ff, #fcfaff);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-md);
    padding: 40px 20px;
    text-align: center;
}

.final-cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.final-cta-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 25px;
}

/* ==========================================
   DOWNLOAD AND INNER PAGES GENERAL LAYOUT
   ========================================== */
.inner-hero {
    padding: 110px 0 40px;
    background-color: var(--bg-light);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.inner-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.inner-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 20px;
}

.inner-hero-cta {
    margin-bottom: 15px;
}

.inner-hero-cta .btn {
    padding: 12px 36px;
    font-size: 1.05rem;
}

.inner-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

/* Slide screenshots Carousel (nested in inner page) */
.carousel-container {
    position: relative;
    max-width: 260px;
    margin: 0 auto;
    border-radius: 20px;
    padding: 8px;
    background-color: #f5e6ff;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.carousel-viewport {
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 9/19;
}

.carousel-track {
    display: flex;
    transition: transform var(--transition-normal);
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 0.8rem;
}

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

.carousel-btn.prev {
    left: -40px;
}

.carousel-btn.next {
    right: -40px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(111, 9, 145, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background-color: var(--primary);
    width: 14px;
    border-radius: 3px;
}

/* ==========================================
   LOGIN / AUTH FORM STYLING
   ========================================== */
.auth-panel {
    max-width: 480px;
    margin: 40px auto;
}

.auth-header {
    text-align: center;
    margin-bottom: 25px;
}

.auth-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.auth-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.form-group {
    margin-bottom: 18px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary);
}

.input-wrapper {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    background-color: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 5px rgba(111, 9, 145, 0.15);
}

.form-input.input-error {
    border-color: var(--error);
}

.error-message {
    color: var(--error);
    font-size: 0.75rem;
    margin-top: 4px;
    display: none;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    cursor: pointer;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.password-toggle:hover {
    color: var(--primary);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.forgot-link {
    color: var(--primary);
    font-weight: 600;
}

.forgot-link:hover {
    text-decoration: underline;
}

.auth-submit-btn {
    width: 100%;
}

.auth-footer-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.auth-footer-link a {
    color: var(--primary);
    font-weight: 700;
}

.auth-security-notice {
    text-align: center;
    margin-top: 15px;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* ==========================================
   CONTACT US STYLING
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    margin-top: 30px;
}

.contact-info-card {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-info-icon {
    font-size: 1.8rem;
    color: var(--primary);
}

.contact-info-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-info-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-form-feedback {
    padding: 12px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 0.85rem;
    display: none;
}

.contact-form-feedback.success {
    display: block;
    background-color: #e8f5e9;
    border: 1px solid var(--success);
    color: var(--success);
}

.contact-form-feedback.error {
    display: block;
    background-color: #ffebee;
    border: 1px solid var(--error);
    color: var(--error);
}

/* ==========================================
   LEGAL GENERAL WRAPPER
   ========================================== */
.legal-wrapper {
    padding: 110px 0 40px;
    max-width: 850px;
    margin: 0 auto;
}

.legal-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 10px;
}

.legal-content h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 25px 0 10px;
    color: var(--primary);
    border-left: 3px solid var(--primary);
    padding-left: 8px;
}

.legal-content p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: square;
    padding-left: 20px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.legal-content li {
    margin-bottom: 8px;
}

/* ==========================================
   STICKY MOBILE BOTTOM CONVERSION BAR
   ========================================== */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary);
    color: var(--text-white);
    padding: 10px 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.sticky-bar-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-bar-icon {
    width: 32px;
    height: 32px;
}

.sticky-bar-text {
    font-size: 0.85rem;
    font-weight: 700;
}

.sticky-bar-sub {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-sticky-bar .btn {
    background-color: var(--accent);
    color: var(--text-dark);
    padding: 4px 14px;
    font-size: 0.8rem;
    min-height: 32px;
    min-width: 80px;
}

.mobile-sticky-bar .btn:hover {
    background-color: var(--accent-hover);
}

/* BACK TO TOP BUTTON */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-3px);
}

/* ==========================================
   RESPONSIVE MEDIA QUERIES
   ========================================== */

@media screen and (max-width: 1024px) {
    .payout-box {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    .carousel-container {
        margin-top: 10px;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-width: none;
        height: auto;
        background-color: var(--primary);
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        align-items: stretch;
        padding: 10px 20px;
        transition: none;
        z-index: 999;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        display: none;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-link {
        font-size: 1.1rem;
        color: var(--text-white) !important;
        width: 100%;
        padding: 12px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        display: block;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--accent) !important;
    }

    .nav-link::after {
        display: none !important;
    }

    .header-cta {
        display: none;
    }

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

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

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

    .mobile-sticky-bar {
        display: flex;
    }

    .back-to-top {
        bottom: 75px;
    }

    /* Hamburger open transformation */
    .hamburger.open .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

@media screen and (max-width: 480px) {
    .quick-info-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .quick-info-row .info-item:nth-child(5) {
        grid-column: span 2;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 80%;
    }

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

    .payment-gateways {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        display: none;
        /* Mobile touch swipe enabled */
    }
}

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

    .logo-text {
        font-size: 1.1rem;
    }
}

/* Unique Guide Cards (Installation Blueprint) */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px auto 10px;
    max-width: 100%;
}

.guide-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-light);
    border-top: 5px solid var(--primary);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-normal);
}

.guide-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.guide-card-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.guide-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.guide-card-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    text-align: left;
}

.guide-card-text a {
    color: var(--primary);
    font-weight: 700;
}

.guide-card-text a:hover {
    text-decoration: underline;
}

/* Bullet list inside guide cards */
.guide-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guide-card-bullets li {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    padding-left: 24px;
    position: relative;
}

.guide-card-bullets li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
}

.guide-card-bullets li a {
    color: var(--primary);
    font-weight: 700;
}

.guide-card-bullets li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}