/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 24 2026 | 06:55:07 */
/* --- Capermint IFE Hero Styles --- */
.cm-hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 50px 0;
    overflow: hidden;
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
}

.cm-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* STRICT GRID LAYOUT to prevent overlapping */
.cm-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Background Glow Effects */
.cm-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.5;
    pointer-events: none;
}
.cm-glow-1 {
    width: 500px;
    height: 500px;
    background: #0055FF; /* Capermint Blue */
    top: -100px;
    left: -100px;
}
.cm-glow-2 {
    width: 400px;
    height: 400px;
    background: #0099FF; /* Cyan */
    bottom: -100px;
    right: -100px;
}

/* --- Left Content --- */
.cm-hero-content {
    width: 100%;
}

.cm-hero-content h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive typography */
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.cm-gradient-text {
    background: linear-gradient(90deg, #0099FF, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cm-hero-subtext {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #D1D5DB;
    margin-bottom: 40px;
}

/* CTA Button */
.cm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(90deg, #0055FF, #0099FF);
    color: #FFFFFF !important;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 85, 255, 0.4);
    border: 1px solid rgba(255,255,255,0.2);
}

.cm-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 153, 255, 0.6);
}

.cm-cta-wrapper {
    margin-bottom: 48px;
}

/* Trust Row */
.cm-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    /* Space between the grid and the bottom logos */
}

/* --- Centered Bottom "Logos" Row --- */
.cm-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.5; /* Low opacity like a watermark/logo */
    transition: opacity 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.cm-trust-row:hover {
    opacity: 0.8; /* Slightly brightens if user hovers */
}

.cm-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #FFFFFF;
    /* Removed backgrounds and borders completely */
}

.cm-trust-item svg {
    color: #FFFFFF; /* Forces the icons to be pure white */
    flex-shrink: 0;
}

/* --- SVG Fixes --- */
.cm-btn-primary svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}
.cm-btn-primary:hover svg {
    transform: translateX(4px);
}
.cm-game-icon {
    margin-bottom: 12px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* --- Right Visual (Mockups) --- */
.cm-hero-visual {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cm-mockup {
    background: rgba(10, 15, 25, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    box-shadow: 0 25px 50px -12px rgba(0, 85, 255, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cm-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: cm-shine 6s infinite;
}

.cm-seatback {
    width: 90%;
    max-width: 480px;
    height: 300px;
    border-radius: 16px;
    border: 8px solid #111;
    z-index: 2;
    top: 10%;
    right: 0;
}

.cm-byod {
    width: 180px;
    height: 380px;
    border-radius: 30px;
    border: 6px solid #222;
    z-index: 3;
    bottom: 5%;
    left: 10%;
    box-shadow: -10px 20px 40px rgba(0,0,0,0.8);
}

.cm-screen-content {
    text-align: center;
    color: #FFFFFF;
}

.cm-screen-content .cm-game-icon {
    font-size: 3rem;
    color: #0099FF;
    margin-bottom: 12px;
}

/* --- Animations --- */
.cm-animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: cm-fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.cm-animate-fade-in {
    opacity: 0;
    animation: cm-fadeIn 1.2s ease forwards;
}

.cm-delay-1 { animation-delay: 0.1s; }
.cm-delay-2 { animation-delay: 0.3s; }
.cm-delay-3 { animation-delay: 0.5s; }
.cm-delay-4 { animation-delay: 0.7s; }
.cm-delay-5 { animation-delay: 0.9s; }

@keyframes cm-fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes cm-fadeIn {
    to { opacity: 1; }
}

@keyframes cm-shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.cm-seatback { animation: cm-float 6s ease-in-out infinite; }
.cm-byod { animation: cm-float 5s ease-in-out infinite reverse; }

@keyframes cm-float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive Fixes */
@media (max-width: 992px) {
    .cm-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .cm-trust-row { justify-content: center; }
    
    .cm-hero-visual {
        height: 400px;
    }
    .cm-seatback { right: 0; left: 0; margin: 0 auto; top: 0; }
    .cm-byod { bottom: -20px; left: 50%; transform: translateX(-50%); }
    
    .cm-seatback, .cm-byod { animation: none; } 
}

/* --- SECTION 2: Benefits & Outcomes --- */
.cm-benefits-section {
    padding: 50px 0;
    background-color: #000000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Subtle separator */
}

.cm-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.cm-h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.cm-text-blue {
    color: #0099FF;
}

.cm-subtitle {
    color: #D1D5DB;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* 3-Column Grid */
.cm-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Individual Cards */
.cm-benefit-card {
    background: rgba(10, 15, 25, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease, 
                border-color 0.4s ease;
}

.cm-benefit-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 153, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 85, 255, 0.15);
}

.cm-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.15), rgba(0, 153, 255, 0.05));
    border: 1px solid rgba(0, 153, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px auto;
    color: #0099FF;
    transition: transform 0.4s ease;
}

.cm-benefit-card:hover .cm-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.25), rgba(0, 153, 255, 0.1));
}

.cm-benefit-card h3 {
    color: #FFFFFF;
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.cm-benefit-card p {
    color: #A0ABC0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Scroll Animation Initial States */
.cm-scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Class added by JS when scrolled into view */
.cm-scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .cm-benefits-grid {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        gap: 24px;
    }
}

/* =========================================
   EMERGENCY OVERRIDES FOR WORDPRESS/ELEMENTOR
   ========================================= */

/* 1. Force Section 2 to be visible (Bypass broken JS) */
.cm-scroll-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important; /* Disables the broken hide/show transition */
}

/* 2. Strip Elementor's forced backgrounds/borders from the Trust Row */
.cm-trust-item {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important; /* Removes the bulky padding */
}

/* 3. Ensure the CTA button arrow aligns nicely */
.cm-btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* --- SECTION 3: What We Build --- */
.cm-services-section {
    padding: 50px 0;
    background-color: #000000;
    position: relative;
}

/* 6-Card Grid Layout */
.cm-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

/* Individual Service Cards */
.cm-service-card {
    background-color: #0A0F19 !important; /* Very dark blue/black */
    border: 1px solid rgba(0, 153, 255, 0.15) !important;
    border-radius: 16px !important;
    padding: 40px 30px !important;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    text-align: left;
}

/* Hover effect: Glow and lift */
.cm-service-card:hover {
    transform: translateY(-8px) !important;
    border-color: #0099FF !important;
    box-shadow: 0 15px 35px rgba(0, 153, 255, 0.15) !important;
    background-color: rgba(0, 85, 255, 0.05) !important;
}

/* Icon Wrapper */
.cm-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(0, 153, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #0099FF;
    transition: all 0.3s ease;
}

.cm-service-card:hover .cm-icon-wrapper {
    background: #0055FF;
    color: #FFFFFF;
    transform: scale(1.1);
}

/* Typography inside cards */
.cm-service-card h3 {
    color: #FFFFFF !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-bottom: 16px !important;
    line-height: 1.4 !important;
}

.cm-service-card p {
    color: #A0ABC0 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Responsive tablet/mobile adjustments */
@media (max-width: 1024px) {
    .cm-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cm-services-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SECTION 4: Deployment Modes --- */
.cm-deployment-section {
    padding: 50px 0;
    background-color: #000000;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05); /* Separator line */
}

/* 3-Column Grid */
.cm-deployment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    margin-top: 20px;
}

/* Deployment Cards */
.cm-deployment-card {
    /* Gradient from dark grey to black */
    background: linear-gradient(180deg, rgba(15, 20, 30, 1) 0%, rgba(0, 0, 0, 1) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: 4px solid #0055FF !important; /* Capermint Blue top accent */
    border-radius: 12px !important;
    padding: 48px 32px !important;
    transition: all 0.3s ease !important;
    text-align: center;
}

/* Hover Effects */
.cm-deployment-card:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(0, 153, 255, 0.4) !important;
    border-top: 4px solid #0099FF !important; /* Brightens on hover */
    box-shadow: 0 20px 40px rgba(0, 85, 255, 0.15) !important;
}

/* Icon Styling */
.cm-deploy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 85, 255, 0.1);
    border-radius: 50%;
    color: #0099FF;
    transition: transform 0.4s ease;
}

.cm-deployment-card:hover .cm-deploy-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 153, 255, 0.2);
    color: #FFFFFF;
}

/* Card Typography */
.cm-deployment-card h3 {
    color: #FFFFFF !important;
    font-size: 1.4rem !important;
    margin-bottom: 16px !important;
    font-weight: 600 !important;
}

.cm-deployment-card p {
    color: #A0ABC0 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Responsive Stacking for Tablets & Mobile */
@media (max-width: 992px) {
    .cm-deployment-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* --- SECTION 5: Ecosystem & Compatibility --- */
.cm-ecosystem-section {
    padding: 80px 0;
    background-color: #000000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Vendor Logo Strip */
.cm-vendor-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin: 40px 0 60px 0;
}

.cm-vendor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #A0ABC0 !important;
    opacity: 0.6;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.cm-vendor-item:hover {
    opacity: 1;
    color: #FFFFFF !important;
    transform: translateY(-5px);
}

.cm-vendor-item svg {
    color: #0055FF;
}

/* Integration Note Box */
.cm-integration-note {
    background: linear-gradient(90deg, rgba(0, 85, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%) !important;
    border-left: 4px solid #0099FF !important;
    padding: 24px 32px !important;
    border-radius: 0 12px 12px 0 !important;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.cm-integration-note h4 {
    color: #FFFFFF !important;
    margin-bottom: 8px !important;
    font-size: 1.2rem !important;
}

.cm-integration-note p {
    color: #D1D5DB !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}


/* --- SECTION 6: Tech Stack & Formats --- */
.cm-tech-stack-section {
    padding: 50px 0;
    background-color: #050810 !important; /* Slightly distinct dark shade */
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.cm-tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.cm-column-title {
    color: #FFFFFF !important;
    font-size: 1.5rem !important;
    margin-bottom: 32px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Formats List */
.cm-format-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.cm-format-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 32px !important;
}

.cm-bullet-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 85, 255, 0.15) !important;
    border-radius: 10px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0099FF;
    flex-shrink: 0;
}

.cm-format-list strong {
    color: #FFFFFF !important;
    font-size: 1.2rem !important;
    display: block !important;
    margin-bottom: 6px !important;
}

.cm-format-list p {
    color: #A0ABC0 !important;
    margin: 0 !important;
    line-height: 1.5 !important;
}

/* Constraints Cards */
.cm-constraints-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cm-ccard {
    background: #0A0F19 !important;
    border: 1px solid rgba(0, 153, 255, 0.2) !important;
    padding: 24px !important;
    border-radius: 12px !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cm-ccard h4 {
    color: #FFFFFF !important;
    margin: 0 !important;
    font-size: 1.1rem !important;
}

.cm-ccard p {
    color: #A0ABC0 !important;
    margin: 0 !important;
    font-size: 0.9rem !important;
}

/* HTML5 Highlight Box */
.cm-html5-highlight {
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%) !important;
    border: 1px solid rgba(0, 153, 255, 0.4) !important;
    border-radius: 16px !important;
    padding: 40px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cm-h5-text h4 {
    color: #FFFFFF !important;
    font-size: 1.4rem !important;
    margin-bottom: 12px !important;
}

.cm-h5-text p {
    color: #D1D5DB !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}

.cm-h5-badge {
    background: #0055FF !important;
    color: #FFFFFF !important;
    font-weight: 800 !important;
    font-size: 2rem !important;
    padding: 20px 32px !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 85, 255, 0.3) !important;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .cm-tech-grid, .cm-html5-highlight {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: left;
    }
    
    .cm-vendor-strip {
        gap: 30px;
    }
}

/* --- SECTION 7: Analytics & Insights --- */
.cm-analytics-section {
    padding: 50px 0 !important;
    background-color: #000000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.cm-analytics-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.cm-analytics-content h2 {
    text-align: left !important;
    margin-bottom: 24px !important;
}

/* Privacy Block */
.cm-privacy-block {
    background: rgba(10, 15, 25, 0.8) !important;
    border: 1px solid rgba(0, 153, 255, 0.2) !important;
    border-radius: 12px !important;
    padding: 24px !important;
    display: flex;
    gap: 20px;
    margin-top: 40px !important;
}

.cm-privacy-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 85, 255, 0.1) !important;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cm-privacy-block h4 {
    color: #FFFFFF !important;
    margin-bottom: 8px !important;
    font-size: 1.1rem !important;
}

.cm-privacy-block p {
    color: #A0ABC0 !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

/* Dashboard Visual */
.cm-analytics-dashboard {
    background: linear-gradient(180deg, #0A0F19 0%, #000000 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-top: 4px solid #0055FF !important;
    border-radius: 16px !important;
    padding: 32px !important;
    box-shadow: 0 20px 40px rgba(0, 85, 255, 0.1) !important;
}

.cm-dash-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 16px !important;
    margin-bottom: 24px !important;
}

.cm-dash-header h3 {
    color: #FFFFFF !important;
    font-size: 1.2rem !important;
    margin: 0 !important;
}

.cm-metrics-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cm-metrics-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03) !important;
    padding: 16px !important;
    border-radius: 8px !important;
    color: #D1D5DB !important;
    font-weight: 500 !important;
    border: 1px solid transparent !important;
    transition: all 0.3s ease;
}

.cm-metrics-list li:hover {
    background: rgba(0, 85, 255, 0.1) !important;
    border-color: rgba(0, 153, 255, 0.3) !important;
    color: #FFFFFF !important;
    transform: translateX(5px);
}


/* --- SECTION 8: Monetization --- */
.cm-monetization-section {
    padding: 50px 0 !important;
    background-color: #050810 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.cm-monetization-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px !important;
}

.cm-money-card {
    background: #0A0F19 !important;
    border: 1px solid rgba(0, 153, 255, 0.2) !important;
    border-radius: 16px !important;
    padding: 40px 32px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

.cm-money-card:hover {
    transform: translateY(-8px) !important;
    border-color: #0099FF !important;
    box-shadow: 0 15px 35px rgba(0, 153, 255, 0.1) !important;
}

.cm-money-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 85, 255, 0.1) !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto !important;
    color: #0099FF;
}

.cm-money-card h3 {
    color: #FFFFFF !important;
    font-size: 1.25rem !important;
    margin-bottom: 16px !important;
}

.cm-money-card p {
    color: #A0ABC0 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Licensing Banner */
.cm-licensing-banner {
    margin-top: 60px !important;
    background: linear-gradient(90deg, #003399 0%, #001133 100%) !important;
    border: 1px solid rgba(0, 153, 255, 0.4) !important;
    border-radius: 16px !important;
    padding: 40px !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cm-licensing-content h4 {
    color: #FFFFFF !important;
    font-size: 1.5rem !important;
    margin-bottom: 12px !important;
}

.cm-licensing-content p {
    color: #D1D5DB !important;
    margin: 0 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    max-width: 800px;
}

/* Secondary Button for Banner */
.cm-btn-secondary {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px;
    background: #FFFFFF !important;
    color: #000000 !important;
    padding: 16px 32px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0;
}

.cm-btn-secondary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3) !important;
}

.cm-btn-secondary svg {
    transition: transform 0.3s ease;
}

.cm-btn-secondary:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 992px) {
    .cm-analytics-grid {
        grid-template-columns: 1fr;
    }
    
    .cm-monetization-grid {
        grid-template-columns: 1fr;
    }
    
    .cm-licensing-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* --- SECTION 9: Security & QA --- */
.cm-security-section {
    padding: 50px 0 !important;
    background-color: #000000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.cm-security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px !important;
}

.cm-sec-card {
    background: #0A0F19 !important;
    border: 1px solid rgba(0, 153, 255, 0.15) !important;
    border-radius: 16px !important;
    padding: 40px 32px !important;
    transition: all 0.3s ease !important;
}

.cm-sec-card:hover {
    transform: translateY(-5px) !important;
    border-color: #0055FF !important;
    box-shadow: 0 10px 30px rgba(0, 85, 255, 0.1) !important;
    background: rgba(0, 85, 255, 0.05) !important;
}

.cm-sec-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 85, 255, 0.1) !important;
    border-radius: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px !important;
    color: #0099FF !important;
}

.cm-sec-card h3 {
    color: #FFFFFF !important;
    font-size: 1.3rem !important;
    margin-bottom: 12px !important;
}

.cm-sec-card p {
    color: #A0ABC0 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Make the 5th card span full width on desktop to look balanced */
.cm-span-2 {
    grid-column: span 2;
    background: linear-gradient(90deg, #0A0F19 0%, #001133 100%) !important;
}


/* --- SECTION 10: Delivery Process --- */
.cm-process-section {
    padding: 50px 0 120px 0 !important;
    background-color: #050810 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.cm-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px !important;
}

.cm-step-card {
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-top: 4px solid #0055FF !important;
    border-radius: 12px !important;
    padding: 40px 32px !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease !important;
}

.cm-step-card:hover {
    border-color: rgba(0, 153, 255, 0.3) !important;
    border-top: 4px solid #0099FF !important;
    transform: translateY(-8px) !important;
}

.cm-step-number {
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem !important;
    font-weight: 800 !important;
    color: rgba(255, 255, 255, 0.03) !important;
    line-height: 1 !important;
    z-index: 0;
    transition: color 0.3s ease;
}

.cm-step-card:hover .cm-step-number {
    color: rgba(0, 153, 255, 0.08) !important;
}

.cm-step-card h4 {
    color: #FFFFFF !important;
    font-size: 1.2rem !important;
    margin-bottom: 16px !important;
    position: relative;
    z-index: 1;
}

.cm-step-card p {
    color: #A0ABC0 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    position: relative;
    z-index: 1;
}

/* Final CTA Section */
.cm-final-cta-wrap {
    text-align: center;
    margin-top: 80px !important;
    padding-top: 60px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.cm-final-cta-wrap .cm-h3 {
    color: #FFFFFF !important;
    font-size: 2rem !important;
    margin-bottom: 32px !important;
}

.cm-btn-large {
    padding: 20px 48px !important;
    font-size: 1.25rem !important;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .cm-security-grid, .cm-process-grid {
        grid-template-columns: 1fr;
    }
    .cm-span-2 {
        grid-column: span 1;
    }
}
/* --- SECTION 11: Portfolio / Demo --- */
.cm-portfolio-section {
    padding: 50px 0 !important;
    background-color: #000000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.cm-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px !important;
}

.cm-game-card {
    background: #0A0F19 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    display: flex;
    flex-direction: column;
}

.cm-game-card:hover {
    transform: translateY(-8px) !important;
    border-color: #0055FF !important;
    box-shadow: 0 15px 35px rgba(0, 85, 255, 0.15) !important;
}

/* Simulated Game Image Area */
.cm-game-thumb {
    height: 220px !important;
    background: linear-gradient(135deg, #050810 0%, #111827 100%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background grid pattern to make the thumbnail look premium */
.cm-game-thumb::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(0, 153, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 153, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.cm-game-thumb svg {
    transition: transform 0.4s ease;
}

.cm-game-card:hover .cm-game-thumb svg {
    transform: scale(1.15);
}

.cm-badge-row {
    position: absolute !important;
    top: 16px !important;
    left: 16px !important;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.cm-badge {
    background: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(4px) !important;
    border: 1px solid rgba(0, 153, 255, 0.4) !important;
    color: #FFFFFF !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    padding: 6px 12px !important;
    border-radius: 50px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cm-game-info {
    padding: 32px 24px !important;
    flex-grow: 1;
}

.cm-genre-tag {
    color: #0099FF !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    display: block !important;
    margin-bottom: 8px !important;
    text-transform: uppercase;
}

.cm-game-info h3 {
    color: #FFFFFF !important;
    font-size: 1.4rem !important;
    margin-bottom: 12px !important;
    line-height: 1.2 !important;
}

.cm-game-info p {
    color: #A0ABC0 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.cm-center-cta {
    text-align: center;
    margin-top: 60px !important;
}

/* --- SECTION 12: Pricing Models --- */
.cm-pricing-section {
    padding: 50px 0 140px 0 !important;
    background-color: #050810 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.cm-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px !important;
    align-items: center; /* Centers the cards so the middle one can pop out */
}

.cm-pricing-card {
    background: #0A0F19 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
    padding: 48px 32px !important;
    position: relative;
    transition: all 0.3s ease !important;
}

.cm-pricing-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 85, 255, 0.1) !important;
    color: #0099FF !important;
    border-radius: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px !important;
}

/* Highlighted Center Card (Fastest Deployment) */
.cm-highlight-card {
    background: linear-gradient(180deg, #0A0F19 0%, #000000 100%) !important;
    border: 2px solid #0055FF !important;
    transform: scale(1.05) !important; /* Makes it slightly larger */
    box-shadow: 0 20px 50px rgba(0, 85, 255, 0.15) !important;
    z-index: 2;
}

.cm-popular-badge {
    position: absolute !important;
    top: -14px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: #0055FF !important;
    color: #FFFFFF !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.cm-highlight-icon {
    background: #0055FF !important;
    color: #FFFFFF !important;
}

.cm-pricing-card h3 {
    color: #FFFFFF !important;
    font-size: 1.5rem !important;
    margin-bottom: 12px !important;
}

.cm-pricing-desc {
    color: #A0ABC0 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 32px !important;
    padding-bottom: 32px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.cm-feature-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cm-feature-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    color: #D1D5DB !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

.cm-feature-list svg {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .cm-portfolio-grid, .cm-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cm-highlight-card {
        transform: none !important; /* Disable scale on mobile to prevent overflow */
    }
}

@media (max-width: 768px) {
    .cm-portfolio-grid, .cm-pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SECTION 13: Detailed FAQs --- */
.cm-faq-section {
    padding: 50px 0 !important;
    background-color: #000000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.cm-faq-grid {
    max-width: 900px !important;
    margin: 40px auto 0 auto !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Native HTML5 Details/Summary styling */
.cm-faq-item {
    background: #0A0F19 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.cm-faq-item[open] {
    border-color: #0055FF !important;
    background: rgba(0, 85, 255, 0.05) !important;
}

.cm-faq-question {
    padding: 24px 32px !important;
    color: #FFFFFF !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    list-style: none !important; /* Hides default arrow */
    user-select: none;
}

/* Hide the default arrow in webkit browsers */
.cm-faq-question::-webkit-details-marker {
    display: none !important;
}

.cm-faq-icon {
    color: #0099FF !important;
    transition: transform 0.3s ease !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rotate icon when open */
.cm-faq-item[open] .cm-faq-icon {
    transform: rotate(180deg) !important;
}

.cm-faq-answer {
    padding: 0 32px 32px 32px !important;
    color: #A0ABC0 !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    margin-top: 16px !important;
    padding-top: 24px !important;
}

.cm-faq-answer p {
    margin: 0 !important;
}