/*
Theme Name: LaunchX - Multi-Theme Coming Soon Pack
Theme URI: https://launchx.baglissa.store/
Author: Your Name
Author URI: http://youtube.com/@themrdigitalceo
Description: A premium, modular, and customizable multi-theme coming soon template.
Version: 1.0.0
Tags: coming soon, under construction, multi-theme, creative, responsive, landing
*/

/*=============================================================================
  Table of Contents
  =============================================================================
  1. Base Configuration and CSS Variables
  2. Font Selection Support
  3. Layout Support
  4. Reset & Global Styles
  5. Background Shapes
  6. Main Layout & Components (Header, Hero, Countdown, Form, Footer)
  7. Animations
  8. Settings Sidebar
  9. Responsive Fallbacks
 10. Theme 1: Futuristic SaaS (Default)
 11. Theme 2: Luxury Creative Agency
 12. Theme 3: Mobile App Launch
 13. Theme 4: Corporate Clean Enterprise
=============================================================================*/

/* ==========================================================================
   Base Configuration and CSS Variables
   ========================================================================== */
:root {
    /* Base HSL values for the primary color - default Neon Cyan */
    --primary-h: 184;
    --primary-s: 100%;
    --primary-l: 50%;

    /* Derived Colors */
    --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
    --primary-hover: hsl(var(--primary-h), var(--primary-s), calc(var(--primary-l) - 10%));
    --primary-alpha-10: hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.1);
    --primary-alpha-20: hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.2);
    --primary-alpha-50: hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.5);

    /* Fonts base */
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Base Transition */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-indexes */
    --z-background: -1;
    --z-content: 10;
    --z-sidebar: 100;
    --z-overlay: 90;
}

/* Base Light/Dark Mode colors (overridden by theme configs) */
body.mode-dark {
    --bg-main: #0a0a0c;
    --bg-secondary: #131418;
    --bg-glass: rgba(19, 20, 24, 0.6);
    --bg-glass-border: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-muted: #a0a4b0;
    --border-color: rgba(255, 255, 255, 0.1);
    --input-bg: rgba(255, 255, 255, 0.03);
}

body.mode-light {
    --bg-main: #ffffff;
    --bg-secondary: #f4f5f7;
    --bg-glass: rgba(255, 255, 255, 0.6);
    --bg-glass-border: rgba(0, 0, 0, 0.05);
    --text-main: #111827;
    --text-muted: #6b7280;
    --border-color: rgba(0, 0, 0, 0.1);
    --input-bg: rgba(0, 0, 0, 0.03);
}

/* ==========================================================================
   Font Selection Support
   ========================================================================== */
body.font-space {
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

body.font-playfair {
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    /* Keep body sans for readability */
}

body.font-outfit {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

body.font-inter {
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ==========================================================================
   Layout Support
   ========================================================================== */
body.layout-wide {
    --container-max: 1400px;
}

body.layout-container {
    --container-max: 1100px;
}

/* ==========================================================================
   Reset & Global Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    transition: background-color var(--transition-slow), color var(--transition-slow);
}

body.use-gradient {
    /* Example global gradient override */
    background: radial-gradient(circle at top right, var(--primary-alpha-20), transparent 50%),
        radial-gradient(circle at bottom left, var(--primary-alpha-10), transparent 50%),
        var(--bg-main);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-hover);
}

/* ==========================================================================
   Background Shapes
   ========================================================================== */
.global-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-background);
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.5;
    border-radius: 50%;
    transition: all 1s ease;
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 40vw;
    height: 40vw;
    background-color: var(--primary-alpha-20);
}

.shape-2 {
    bottom: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background-color: var(--primary-alpha-10);
}

.shape-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30vw;
    height: 30vw;
    background-color: var(--primary-alpha-10);
}

/* ==========================================================================
   Main Layout & Components
   ========================================================================== */
.main-wrapper {
    position: relative;
    z-index: var(--z-content);
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    transition: max-width var(--transition-normal);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 2rem;
    position: relative;
    z-index: 50;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-main);
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 60;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 60;
}

.logo i {
    color: var(--primary);
}

.logo-accent {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    z-index: 60;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    color: var(--text-main);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 5px 15px var(--primary-alpha-50);
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 0;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-alpha-10);
    color: var(--primary);
    border: 1px solid var(--primary-alpha-20);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    margin-bottom: 1.5rem;
    max-width: 900px;
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Countdown */
.countdown-wrapper {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.countdown-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    min-height: 100px;
    background: var(--bg-glass);
    border: 1px solid var(--bg-glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    margin-bottom: 10px;
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 0.25rem;
    z-index: 2;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.circular-progress {
    display: none;
    /* Shown in theme 2 */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-bg {
    fill: none;
    stroke: var(--border-color);
    stroke-width: 4;
}

.progress-bar {
    fill: none;
    stroke: var(--primary);
    stroke-width: 4;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s linear;
}

/* Countdown Style Varients */
body.cd-naked .countdown-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 0.5rem 1.5rem !important;
    min-width: unset;
}

body.cd-minimal .countdown-item {
    background: transparent !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Subscription Form */
.subscription-wrapper {
    width: 100%;
    max-width: 500px;
}

.input-group {
    display: flex;
    position: relative;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.input-group:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-alpha-20);
}

.input-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1rem 1rem 3.5rem;
    color: var(--text-main);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    width: 100%;
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 100px;
    padding: 0 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: scale(1.02);
    box-shadow: 0 5px 15px var(--primary-alpha-50);
}

/* Form Message */
.form-message {
    margin-top: 1rem;
    font-size: 0.875rem;
    min-height: 20px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.form-message.show {
    opacity: 1;
}

.form-message.success {
    color: #10b981;
}

.form-message.error {
    color: #ef4444;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */
body.anim-on .fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

body.anim-on .delay-1 {
    animation-delay: 0.1s;
}

body.anim-on .delay-2 {
    animation-delay: 0.2s;
}

body.anim-on .delay-3 {
    animation-delay: 0.3s;
}

body.anim-on .delay-4 {
    animation-delay: 0.4s;
}

body.anim-on .delay-5 {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Settings Sidebar
   ========================================================================== */
.settings-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100vh;
    z-index: var(--z-sidebar);
}

.settings-toggle {
    position: absolute;
    top: 50%;
    left: -48px;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: var(--text-main);
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.settings-toggle:hover {
    color: var(--primary);
}

/* Gear Spin */
.settings-toggle i {
    transition: transform 0.5s ease;
}

.settings-toggle:hover i {
    transform: rotate(90deg);
}

.settings-panel {
    position: absolute;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--bg-main);
    border-left: 1px solid var(--border-color);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    z-index: 100;
}

.settings-sidebar.open .settings-panel {
    right: 0;
}

.settings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: var(--z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.settings-sidebar.open .settings-overlay {
    opacity: 1;
    visibility: visible;
}

.settings-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.settings-header h3 {
    margin-bottom: 0.25rem;
}

.settings-header p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.settings-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.setting-group h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

/* Buttons in Settings */
.theme-selector,
.mode-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.mode-selector {
    grid-template-columns: repeat(3, 1fr);
}

.theme-btn,
.mode-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.theme-btn:hover,
.mode-btn:hover {
    border-color: var(--primary);
}

.theme-btn.active,
.mode-btn.active {
    background: var(--primary-alpha-10);
    border-color: var(--primary);
    color: var(--primary);
}

/* Color Presets */
.color-presets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.color-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.color-btn:hover {
    transform: scale(1.1);
}

.color-btn.active {
    border-color: var(--text-main);
    transform: scale(1.1);
}

.custom-color-picker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.custom-color-picker input[type="color"] {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    background: none;
}

.custom-color-picker input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

.custom-color-picker input[type="color"]::-webkit-color-swatch {
    border: none;
    border-radius: 4px;
}

/* Toggle switch */
.toggle-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-group h4 {
    margin-bottom: 0;
}

.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: var(--text-muted);
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--primary);
    border-color: var(--primary);
}

input:checked+.slider:before {
    transform: translateX(22px);
    background-color: #fff;
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Select Inputs */
.settings-select {
    width: 100%;
    padding: 0.5rem;
    background: var(--bg-secondary);
    color: var(--text-main);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: var(--font-body);
    outline: none;
}

.reset-btn {
    margin-top: 1rem;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    padding: 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.reset-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

/* ==========================================================================
   Particles & Modals
   ========================================================================== */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Below shapes but inside bg */
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 90%;
    max-width: 600px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    z-index: 160;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.1);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.modal-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    background: var(--bg-main);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
    font-weight: 600;
}

.feature i {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.contact-form .input-group {
    margin-bottom: 1rem;
    border-radius: 12px;
}

.contact-form .input-group input,
.contact-form textarea {
    padding-left: 1rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
    .settings-panel {
        width: 100vw;
        right: -100vw;
    }

    .countdown-wrapper {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
        min-height: 80px;
        padding: 1rem;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .modal {
        padding: 1.5rem;
    }

    .modal-features {
        grid-template-columns: 1fr;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100vw;
        height: 100vh;
        background: var(--bg-main);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 55;
    }

    .main-nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .social-links {
        display: none;
    }

    body .input-group {
        flex-direction: column;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        gap: 0.5rem;
    }

    .input-icon {
        display: none;
    }

    .input-group input {
        border-radius: 100px;
        background: var(--bg-glass);
        border: 1px solid var(--border-color);
        padding: 1rem 1.5rem;
    }

    .btn-primary {
        padding: 1rem;
        justify-content: center;
        width: 100%;
    }
}

/* ==========================================================================
   Theme 1: Futuristic SaaS (Default)
   ========================================================================== */
body.theme-1 .countdown-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

body.theme-1 .input-group {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--primary-alpha-50);
}

/* ==========================================================================
   Theme 2: Luxury Creative Agency
   ========================================================================== */
body.theme-2 .bg-shape {
    filter: blur(100px);
}

body.theme-2 .countdown-item {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 2rem;
}

body.theme-2 .countdown-value {
    font-size: 3rem;
}

body.theme-2 .circular-progress {
    display: block;
}

body.theme-2 .input-group {
    border-radius: 0;
    border-bottom: 2px solid var(--primary);
    border-top: none;
    border-left: none;
    border-right: none;
    background: transparent;
}

body.theme-2 .input-group input {
    border-radius: 0;
}

body.theme-2 .btn-primary {
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ==========================================================================
   Theme 3: Mobile App Launch
   ========================================================================== */
body.theme-3 .global-bg {
    background: linear-gradient(135deg, var(--bg-main) 0%, var(--primary-alpha-20) 100%);
}

body.theme-3 .mockup-canvas {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%) rotate(-5deg);
    width: 300px;
    height: 600px;
    background: var(--bg-secondary);
    border: 10px solid var(--text-main);
    border-radius: 40px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    z-index: -1;
    overflow: hidden;
}

body.theme-3 .mockup-canvas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: var(--text-main);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

body.theme-3 .mockup-canvas::after {
    content: 'App Preview';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0.3;
}

@media (max-width: 1000px) {
    body.theme-3 .mockup-canvas {
        display: none;
    }
}

body.theme-3 .countdown-item {
    border-radius: 24px;
    background: var(--primary);
    color: #fff;
    border: none;
}

body.theme-3 .countdown-item .countdown-value,
body.theme-3 .countdown-item .countdown-label {
    color: #fff;
}

body.theme-3 .btn-primary {
    border-radius: 12px;
}

body.theme-3 .input-group {
    border-radius: 12px;
}

/* ==========================================================================
   Theme 4: Corporate Clean Enterprise
   ========================================================================== */
body.theme-4 .global-bg {
    background: var(--bg-main);
}

body.theme-4 .bg-shape {
    display: none;
}

body.theme-4 .countdown-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: none;
    border-radius: 4px;
}

body.theme-4 .btn-primary {
    border-radius: 4px;
}

body.theme-4 .input-group {
    border-radius: 4px;
    background: var(--bg-secondary);
}