 
        /* --- CSS Reset & Variables --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --bg-dark: #0b0f19;
            --bg-card: #131926;
            --primary-neon: #00ff66;
            --accent-red: #ff3366;
            --text-white: #ffffff;
            --text-gray: #a0aec0;
            --font-main: 'Poppins', sans-serif;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg-dark);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* --- Header / Navigation --- */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 8%;
            background-color: rgba(11, 15, 25, 0.9);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .logo img {
            max-height: 40px;
            display: block;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav ul li a:hover {
            color: var(--primary-neon);
            transition: 0.3s;
        }

        /* --- Hero Section --- */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 80px 8%;
            min-height: 85vh;
            background: radial-gradient(circle at 85% 30%, rgba(0, 255, 102, 0.12) 0%, transparent 60%);
            gap: 40px;
        }

        .hero-content {
            max-width: 600px;
        }

        .hero-content h1 {
            font-size: 48px;
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 700;
        }
        .hero-content h1 span {
            color: var(--primary-neon);
        }

        .hero-content p {
            color: var(--text-gray);
            font-size: 18px;
            margin-bottom: 40px;
        }

        .btn-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 14px 24px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: var(--primary-neon);
            color: #000;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 255, 102, 0.3);
        }

        .btn-secondary {
            border: 2px solid rgba(255, 255, 255, 0.2);
            background-color: transparent;
        }
        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.05);
            border-color: var(--text-white);
        }

        .hero-banner {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 520px;
            width: 100%;
        }

        .hub-graphic-card {
            width: 100%;
            background: linear-gradient(145deg, #131926 0%, #0c101b 100%);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
            overflow: hidden;
        }

        /* --- Section Configurations --- */
        .section-padding {
            padding: 20px 8%;
        }

        .section-title {
            font-size: 36px;
            margin-bottom: 50px;
            text-align: center;
        }
        .section-title span {
            color: var(--primary-neon);
        }

        /* --- Why CrikWord Section Style --- */
        .why-crikword {
            background-color: var(--bg-dark);
        }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 20px;
        }
        .why-item {
            display: flex;
            gap: 20px;
            background-color: var(--bg-card);
            padding: 30px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.03);
        }
        .why-icon-box {
            background: rgba(0, 255, 102, 0.1);
            color: var(--primary-neon);
            width: 55px;
            height: 55px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }
        .why-text h3 {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .why-text p {
            color: var(--text-gray);
            font-size: 15px;
        }

        /* --- Features Section --- */
        .features {
            background-color: var(--bg-card);
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background-color: var(--bg-dark);
            padding: 40px 30px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: transform 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(0, 255, 102, 0.3);
        }

        .feature-card i {
            font-size: 40px;
            color: var(--primary-neon);
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: var(--text-gray);
            font-size: 14px;
        }

        /* --- App Screen Slider Section --- */
        .slider-section {
            text-align: center;
        }

        .slider-container {
            position: relative;
            max-width: 320px;
            margin: 0 auto;
            overflow: hidden;
            border-radius: 30px;
            border: 8px solid #1e293b;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
        }

        .slider-wrapper {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 500%;
        }

        .slide {
            
            height: 550px;
            background-color: #1a202c;
            flex-shrink: 0;
            overflow: hidden;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .slider-btn {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border: none;
            padding: 15px;
            cursor: pointer;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            transition: 0.3s;
        }
        .slider-btn:hover {
            background-color: var(--primary-neon);
            color: #000;
        }
        .prev-btn { left: 30%; }
        .next-btn { right: 30%; }

        /* --- Frequently Asked Questions --- */
        .faq-section {
            background-color: var(--bg-dark);
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        details {
            background-color: var(--bg-card);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        summary {
            padding: 24px;
            font-weight: 600;
            font-size: 18px;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            outline: none;
        }
        summary::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--primary-neon);
            transition: transform 0.3s ease;
        }
        details[open] summary::after {
            transform: rotate(180deg);
        }
        .faq-content {
            padding: 0 24px 24px 24px;
            color: var(--text-gray);
            font-size: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 15px;
        }

        /* --- Small & Compact Footer Area --- */
        footer {
            background-color: #070a10;
            padding: 30px 5% 20px 5%;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-gray);
            font-size: 13px;
        }
        .footer-brand {
            margin-bottom: 15px;
        }
        .footer-brand h2 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-white);
            margin-bottom: 5px;
        }
        .footer-brand h2 span {
            color: var(--primary-neon);
        }
        .footer-brand p {
            font-size: 13px;
            max-width: 500px;
            margin: 0 auto;
            color: var(--text-gray);
        }
        .social-media-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        .social-icon {
            width: 36px;
            height: 36px;
            background-color: var(--bg-card);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            color: var(--text-white);
            border: 1px solid rgba(255, 255, 255, 0.04);
            transition: all 0.3s ease;
        }
        .social-icon:hover {
            color: #000;
            background-color: var(--primary-neon);
            transform: translateY(-2px);
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        .footer-links a {
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--primary-neon);
        }
        .copyright {
            font-size: 12px;
            opacity: 0.7;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            padding-top: 12px;
            margin-top: 10px;
        }

        /* --- Advanced Mobile Responsive System --- */
        @media (max-width: 968px) {
            header {
                flex-direction: column;
                gap: 15px;
                padding: 15px 5%;
                text-align: center;
            }
            nav ul {
                gap: 20px;
            }
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 40px 5% 60px 5%;
                gap: 40px;
            }
            .hero-content {
                max-width: 100%;
            }
            .hero-content h1 {
                font-size: 34px;
            }
            .hero-content p {
                font-size: 16px;
                margin-bottom: 30px;
            }
            .btn-group {
                justify-content: center;
            }
            .section-padding {
                padding: 20px 5%;
            }
            .section-title {
                font-size: 28px;
                margin-bottom: 35px;
            }
            .slider-btn {
                padding: 12px;
            }
            .prev-btn { left: 2%; }
            .next-btn { right: 2%; }
            summary {
                font-size: 16px;
                padding: 18px;
            }
            .faq-content {
                padding: 0 18px 18px 18px;
            }
        }

        @media (max-width: 480px) {
            .btn {
                width: 100%;
                justify-content: center;
            }
            .why-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .footer-links {
                gap: 10px;
                flex-direction: column;
            }
        }
 /* --- About Us Unique Content Styles --- */
.about-container {
    max-width: 1100px;
    margin: 0 auto;
    min-height: 70vh;
}

.about-hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.about-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.about-icon {
    background: rgba(0, 255, 102, 0.1);
    color: var(--primary-neon);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px auto;
}

.about-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive adjustment for phone viewport text scaling */
@media (max-width: 768px) {
    .about-hero-text {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

/* --- Redesigned Contact Us Styles --- */
.contact-redesign-container {
    max-width: 1000px;
    margin: 0 auto;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-header-block {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
}

.contact-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-top: -20px;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.channel-card {
    background: linear-gradient(145deg, #131926 0%, #0c101b 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 102, 0.2);
}

.channel-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(0, 255, 102, 0.08);
    color: var(--primary-neon);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
}

.channel-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.channel-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 290px;
}

.channel-action-btn {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-neon);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-bottom: auto; /* Pushes content below to baseline */
}

.channel-action-btn:hover {
    background-color: var(--primary-neon);
    color: #000;
    box-shadow: 0 8px 20px rgba(0, 255, 102, 0.2);
}

.channel-socials {
    display: flex;
    gap: 15px;
    margin-bottom: auto;
}

.channel-socials a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.channel-socials a:hover {
    background-color: var(--primary-neon);
    color: #000;
    transform: translateY(-2px);
}

.channel-meta {
    font-size: 12px;
    color: var(--text-gray);
    opacity: 0.6;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Tablet & Phone Viewport Layout Modifications */
@media (max-width: 768px) {
    .contact-redesign-container {
        padding: 40px 5%;
    }
    .contact-subtitle {
        font-size: 14px;
    }
    .channel-card {
        padding: 30px 20px;
    }
}
/* --- Legal Pages Common Layout Styles (Terms & Privacy) --- */
.legal-page-container {
    max-width: 1150px;
    margin: 0 auto;
    min-height: 70vh;
}

.legal-content-wrapper {
    background: linear-gradient(145deg, #131926 0%, #0c101b 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.effective-date {
    color: var(--primary-neon);
    font-size: 14px;
    margin-bottom: 30px;
    display: inline-block;
    background: rgba(0, 255, 102, 0.08);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 102, 0.15);
}

.legal-block {
    margin-bottom: 30px;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 12px;
}

.legal-block p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

/* Mobile responsive padding constraints */
@media (max-width: 768px) {
    .legal-content-wrapper {
        padding: 25px 20px;
    }
    .legal-block h2 {
        font-size: 18px;
    }
    .legal-block p {
        font-size: 14px;
    }
}