@font-face {
    font-family: 'Product Sans';
    src: url('../fonts/ProductSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Product Sans';
    src: url('../fonts/ProductSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    /* MilesWeb-inspired Theme */
    --primary-color: #146ef5; /* Vibrant Blue */
    --primary-hover: #0d5bcc;
    --secondary-color: #0f172a; /* Dark Slate */
    --background-color: #ffffff; /* Pure White */
    --surface-color: #f8faff; /* Soft tinted blue */
    --text-color: #334155;
    --text-muted: #64748b;
    --danger-color: #ff008c; /* MilesWeb Pink/Red for sales */
    --success-color: #16a34a; /* MilesWeb Green */
    --border-color: #e2e8f0;
    
    /* Soft shapes */
    --radius: 12px; /* Soft rounded corners */
    --shadow: 0 4px 14px rgba(20,110,245,0.08);
    --shadow-hover: 0 12px 30px rgba(20,110,245,0.15);
    
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Product Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

a:hover {
    color: var(--primary-hover);
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--surface-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
    padding: 25px 0;
    font-weight: bold;
    color: var(--secondary-color);
    cursor: pointer;
}

.nav-item:hover {
    color: var(--primary-color);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--surface-color);
    min-width: 200px;
    box-shadow: var(--shadow-hover);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 20px;
    color: var(--text-color);
    font-weight: normal;
    display: block;
}

.dropdown-item:hover {
    background: var(--background-color);
    color: var(--primary-color);
}

/* Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    font-size: 20px;
    color: var(--secondary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--danger-color);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

/* Hero Banner */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.domain-search {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: var(--shadow-hover);
}

.domain-search input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    outline: none;
    border-radius: var(--radius);
    font-family: inherit;
}

.domain-search .btn {
    font-size: 16px;
    padding: 0 40px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

/* Pricing Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--surface-color);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.card-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.card-price {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card-price span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: normal;
}

.card-features {
    text-align: left;
    margin-bottom: 30px;
}

.card-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.card-features li:last-child {
    border-bottom: none;
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer ul li a:hover {
    color: white;
}

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

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* In real app, add hamburger menu */
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .domain-search {
        flex-direction: column;
        gap: 10px;
        background: transparent;
        box-shadow: none;
    }
    
    .domain-search input {
        width: 100%;
    }
}

/* --------------------------------------
   APP LAYOUT (Horizontal Admin & Customer Portals)
   -------------------------------------- */
.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8fafc;
}

.admin-topnav {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-topnav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
}

.admin-logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.admin-nav {
    display: flex;
    gap: 15px;
    height: 100%;
}

.admin-nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 14px;
    height: 100%;
    transition: color 0.2s;
}

.admin-nav-link svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.admin-nav-link .caret {
    width: 14px;
    height: 14px;
    opacity: 0.5;
    margin-left: 2px;
}

.admin-nav-item:hover .admin-nav-link {
    color: var(--primary-color);
}

.admin-nav-item:hover .admin-nav-link svg {
    opacity: 1;
}

/* Horizontal Dropdown Menu */
.admin-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 101;
}

.admin-nav-item:hover .admin-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.admin-dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.admin-dropdown a:hover {
    background-color: #f8fafc;
    color: var(--primary-color);
}

.admin-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.app-main {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 24px;
}

.app-page-title {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* App Components */
.app-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
    padding: 24px;
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.app-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.app-card-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary-color);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
}

.metric-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon.blue { background: #eff6ff; color: #2563eb; }
.metric-icon.green { background: #f0fdf4; color: #16a34a; }
.metric-icon.amber { background: #fffbeb; color: #d97706; }
.metric-icon.purple { background: #faf5ff; color: #9333ea; }

.metric-info h4 {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-info .value {
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
    line-height: 1.2;
}

/* Premium Tables */
.app-table-wrapper {
    overflow-x: auto;
    margin: -24px;
    margin-top: 0;
}

.app-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.app-table th {
    padding: 16px 24px;
    background-color: #f8fafc;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.app-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
    color: var(--text-color);
}

.app-table tbody tr {
    transition: background-color 0.2s ease;
}

.app-table tbody tr:hover {
    background-color: #f8fafc;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success { background: #dcfce7; color: #166534; }
.badge-warning { background: #fef9c3; color: #854d0e; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-primary { background: #e0e7ff; color: #3730a3; }

/* Responsive App Layout */
@media (max-width: 768px) {
    .app-sidebar { transform: translateX(-100%); }
    .app-main { margin-left: 0; }
}

/* --------------------------------------
   PREMIUM CUSTOMER PORTAL
   -------------------------------------- */
.premium-portal {
    background-color: #f4f7f6;
    min-height: 100vh;
}

/* Glassmorphism Header */
.premium-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.premium-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-nav {
    display: flex;
    gap: 30px;
}

.premium-nav a {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 24px 0;
}

.premium-nav a:hover {
    color: var(--primary-color);
}

.premium-nav a.active {
    color: var(--primary-color);
}

.premium-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px 3px 0 0;
}

/* Vibrant Hero Banner */
.premium-hero {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 60px 24px 100px;
    color: white;
    text-align: center;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-bottom: -60px;
}

.premium-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.premium-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Main Layout Grid */
.premium-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px;
}

/* Animations */
@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-slide-up {
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0; /* start hidden */
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Premium Cards */
.premium-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px -10px rgba(79, 70, 229, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.15);
}

.premium-card-title {
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.premium-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.premium-stat-label {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.premium-stat-value {
    font-size: 32px;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Dashboard Grid Layout */
.premium-dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

@media (max-width: 900px) {
    .premium-dashboard-grid {
        grid-template-columns: 1fr;
    }
    .premium-nav {
        display: none;
    }
}

/* --------------------------------------
   SPLIT AUTHENTICATION PAGE
   -------------------------------------- */
.auth-split {
    display: flex;
    min-height: 100vh;
    font-family: 'Product Sans', sans-serif;
    background: white;
}

.auth-left {
    flex: 1;
    max-width: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: white;
    z-index: 10;
}

.auth-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

@media (max-width: 900px) {
    .auth-right { display: none; }
    .auth-left { max-width: 100%; }
}

.shape {
    position: absolute;
    z-index: 0;
}

.auth-graphic-text {
    position: relative;
    z-index: 10;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a202c;
    letter-spacing: -1px;
}

.auth-form-container {
    width: 100%;
    max-width: 380px;
}

.auth-logo-icon {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    display: inline-block;
    letter-spacing: -2px;
}

.auth-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 30px;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    color: #4a5568;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s;
    gap: 12px;
}

.btn-google:hover {
    background: #f8fafc;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #a0aec0;
    font-size: 13px;
    margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.auth-divider::before { margin-right: 15px; }
.auth-divider::after { margin-left: 15px; }

.auth-input-group {
    margin-bottom: 16px;
    position: relative;
}

.auth-input {
    width: 100%;
    padding: 14px 16px;
    background: #f7fafc;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    color: #2d3748;
    font-family: inherit;
    transition: all 0.2s;
}

.auth-input:focus {
    outline: none;
    background: white;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.auth-input::placeholder {
    color: #a0aec0;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.auth-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    cursor: pointer;
}

.auth-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: #8b5cf6;
    cursor: pointer;
}

.auth-forgot {
    color: #3b82f6;
    font-weight: 500;
}

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

.btn-auth-submit {
    width: 100%;
    padding: 14px;
    background: #8b5cf6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-auth-submit:hover {
    background: #7c3aed;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.auth-signup-text {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #4a5568;
}

.auth-signup-text a {
    color: #3b82f6;
    font-weight: 500;
}

.auth-signup-text a:hover {
    text-decoration: underline;
}

/* Right Side Graphics */
.auth-graphic-text {
    position: relative;
    z-index: 10;
    font-size: 48px;
    font-weight: bold;
    color: #1a202c;
    text-align: center;
    line-height: 1.2;
    max-width: 400px;
}

/* --------------------------------------
   ADMIN AUTHENTICATION PAGE
   -------------------------------------- */
.admin-auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fcfcfd;
    font-family: 'Product Sans', sans-serif;
}

.admin-auth-card {
    background: white;
    width: 100%;
    max-width: 440px;
    border-radius: 20px;
    padding: 40px 48px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

/* Grid background on top of card */
.admin-auth-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 180px;
    background-image: 
      linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: center top;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), transparent);
    z-index: 0;
}

.admin-auth-content {
    position: relative;
    z-index: 10;
}

.admin-auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.admin-auth-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.admin-auth-subtitle {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.admin-auth-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.admin-auth-social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    cursor: pointer;
    transition: 0.2s;
}

.admin-auth-social-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.admin-auth-divider {
    text-align: center;
    position: relative;
    margin: 20px 0 25px;
    color: #a0aec0;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.admin-auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-top: 1px solid #eaeaea;
    z-index: -1;
}

.admin-auth-divider span {
    background: white;
    padding: 0 10px;
}

.admin-auth-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.admin-auth-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    transition: 0.2s;
}

.admin-auth-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.admin-auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 13px;
}

.btn-admin-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(180deg, #333333 0%, #1a1a1a 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.1s, box-shadow 0.1s;
    font-family: inherit;
}

.btn-admin-submit:active {
    transform: translateY(1px);
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}

/* TASJEEL SUPERSITE CLONE CSS */
.tasjeel-body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #334155;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

.tasjeel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Top Bar */
.tasjeel-topbar {
    background: #0f172a;
    color: #cbd5e1;
    font-size: 13px;
    padding: 8px 0;
}
.tasjeel-topbar a {
    color: #cbd5e1;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.2s;
}
.tasjeel-topbar a:hover {
    color: #fff;
}
.login-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #fff !important;
}

/* Header */
.tasjeel-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.tasjeel-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.tasjeel-nav {
    display: flex;
    gap: 30px;
}
.tasjeel-nav a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}
.tasjeel-nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.tasjeel-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 100px 0 80px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}
.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -1.5px;
    margin: 0 0 20px;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 20px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Domain Search Box */
.domain-search-wrapper {
    max-width: 800px;
    margin: 0 auto 30px;
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
.domain-search-form {
    display: flex;
    gap: 10px;
}
.domain-search-form input {
    flex: 1;
    border: none;
    padding: 20px 24px;
    font-size: 18px;
    border-radius: 8px;
    background: #f8fafc;
    color: #0f172a;
    outline: none;
    font-family: inherit;
}
.domain-search-form input:focus {
    background: #fff;
    box-shadow: inset 0 0 0 2px var(--primary-color);
}
.domain-search-form button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}
.domain-search-form button:hover {
    background: var(--primary-dark);
}

/* TLD Strip */
.tld-strip {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.tld-item {
    font-size: 15px;
}
.tld-item .tld {
    font-weight: 700;
    color: #0f172a;
}
.tld-item .price {
    color: #64748b;
}

/* Sections */
.tasjeel-section {
    padding: 100px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin: 0 0 15px;
}
.section-header p {
    font-size: 18px;
    color: #64748b;
    margin: 0;
}

/* Hosting Grid */
.hosting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.hosting-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.hosting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}
.hosting-card.highlighted {
    background: var(--primary-color);
    color: #fff;
    border: none;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(var(--primary-color), 0.2);
}
.hosting-card.highlighted:hover {
    transform: scale(1.05) translateY(-5px);
}
.card-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f172a;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.card-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.hosting-card h3 {
    font-size: 24px;
    margin: 0 0 10px;
}
.card-desc {
    color: #64748b;
    font-size: 15px;
    margin: 0 0 24px;
    line-height: 1.5;
}
.hosting-card.highlighted .card-desc {
    color: rgba(255,255,255,0.8);
}
.card-price {
    margin-bottom: 30px;
}
.card-price .currency {
    font-size: 20px;
    font-weight: 600;
    vertical-align: top;
}
.card-price .amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}
.card-price .period {
    color: #64748b;
    font-weight: 500;
}
.hosting-card.highlighted .card-price .period {
    color: rgba(255,255,255,0.8);
}
.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}
.card-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
}
.card-features li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.btn-card {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 600;
    background: #f1f5f9;
    color: #0f172a;
    transition: background 0.2s;
}
.btn-card:hover {
    background: #e2e8f0;
}
.btn-card.btn-card-alt {
    background: #fff;
    color: var(--primary-color);
}
.btn-card.btn-card-alt:hover {
    background: #f8fafc;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.feature-item {
    text-align: center;
}
.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.feature-item h4 {
    font-size: 20px;
    color: #0f172a;
    margin: 0 0 10px;
}
.feature-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.tasjeel-footer {
    background: #0f172a;
    padding: 80px 0 40px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 20px;
}
.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    text-align: center;
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 992px) {
    .hosting-grid, .features-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hosting-card.highlighted {
        transform: none;
    }
    .hero-title {
        font-size: 40px;
    }
}
/* Auto-extracted inline styles */

.ext-style-0df617 { text-align:center; margin-bottom: 40px; }
.ext-style-608a21 { box-shadow: var(--shadow); border: 1px solid var(--border-color); margin-bottom: 40px; }
.ext-style-849459 { height: 80px; }
.ext-style-494c57 { color: var(--secondary-color); font-weight: 700; font-size: 24px; margin-left: 8px; letter-spacing: -0.5px; }
.ext-style-a7cac5 { background: #f8fafc; }
.ext-style-f3c349 { background: white; color: var(--primary-color); }
.ext-style-37f66b { font-weight: 700; font-size: 20px; color: #fff; margin-bottom: 20px; display: flex; align-items: center; }
.ext-style-7f4ee4 { margin-right: 8px; }
.ext-style-f1d6fc { color: #94a3b8; font-size: 14px; line-height: 1.6; }
.ext-style-2e1f60 { text-align: center; padding: 40px; background: white; border-radius: 8px; }
.ext-style-95835e { font-size: 18px; margin-bottom: 20px; }
.ext-style-d3646f { background: white; border-radius: 8px; padding: 20px; box-shadow: var(--shadow); }
.ext-style-91f0da { width: 100%; border-collapse: collapse; }
.ext-style-f6ad3b { border-bottom: 2px solid var(--border-color); text-align: left; }
.ext-style-087bdd { padding: 15px; }
.ext-style-3292e9 { border-bottom: 1px solid var(--border-color); }
.ext-style-888083 { color: var(--danger-color); }
.ext-style-800a15 { padding: 15px; text-align: right; font-size: 20px; }
.ext-style-a0a102 { padding: 15px; font-size: 20px; color: var(--primary-color); }
.ext-style-482a63 { text-align: right; margin-top: 20px; }
.ext-style-768e1f { font-size: 18px; }
.ext-style-505dcf { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.1); background: #0f172a; }
.ext-style-c5176d { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.ext-style-a72982 { display: flex; align-items: center; color: white; text-decoration: none; font-weight: 700; font-size: 24px; }
.ext-style-06e756 { display: flex; gap: 20px; }
.ext-style-53b081 { color: white; text-decoration: none; font-weight: 500; display: flex; align-items: center; }
.ext-style-341566 { background: rgba(255,255,255,0.1); color: white; padding: 8px 16px; border-radius: 6px; text-decoration: none; font-weight: 500; }
.ext-style-d919cc { background: #146ef5; color: white; padding: 8px 16px; border-radius: 6px; text-decoration: none; font-weight: 500; }
.ext-style-8a5902 { display: flex; justify-content: center; gap: 20px; }
.ext-style-583f1a { background: rgba(255,255,255,0.1); color: white; }
.ext-style-c3ecd7 { border-color: #0f172a; color: #0f172a; }
.ext-style-6bc3a4 { max-width: 1200px; margin: 0 auto; padding: 0 20px 100px; }
.ext-style-c771fe { text-align: center; font-size: 32px; color: #0f172a; margin-bottom: 60px; }
.ext-style-a1edba { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.ext-style-45efbf { width: 64px; height: 64px; background: #eff6ff; color: #146ef5; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.ext-style-91679a { font-size: 20px; color: #0f172a; margin-bottom: 10px; }
.ext-style-e745b0 { color: #64748b; line-height: 1.6; }
.ext-style-1bca0d { background: #f8fafc; padding: 40px 0; text-align: center; color: #64748b; border-top: 1px solid #e2e8f0; }
.ext-style-5a86bd { display: flex; gap: 30px; align-items: flex-start; }
.ext-style-8a34aa { flex: 2; background: white; padding: 30px; border-radius: 8px; box-shadow: var(--shadow); }
.ext-style-7002f9 { margin-bottom: 20px; }
.ext-style-f91ad4 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ext-style-3f3925 { margin: 30px 0; border: none; border-top: 1px solid var(--border-color); }
.ext-style-802b27 { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.ext-style-607269 { padding: 15px; border: 1px solid var(--border-color); border-radius: var(--radius); cursor: pointer; display: flex; align-items: center; gap: 10px; }
.ext-style-3855f7 { width: 100%; font-size: 18px; padding: 15px; }
.ext-style-dde257 { flex: 1; background: white; padding: 30px; border-radius: 8px; box-shadow: var(--shadow); }
.ext-style-ec2cb3 { display: flex; justify-content: space-between; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid var(--border-color); }
.ext-style-12593e { display: flex; justify-content: space-between; font-size: 20px; color: var(--primary-color); margin-top: 20px; }
.ext-style-cdd8ca { text-align: center; }
.ext-style-84080e { max-width: 600px; margin: 0 auto; background: white; padding: 50px; border-radius: 8px; box-shadow: var(--shadow); }
.ext-style-0f3b99 { margin-bottom: 20px; color: var(--success-color); }
.ext-style-f1f81a { font-size: 18px; margin-bottom: 30px; }
.ext-style-68472f { display: flex; justify-content: center; }
.ext-style-90e8f2 { background: white; padding: 40px; border-radius: 8px; box-shadow: var(--shadow); width: 100%; max-width: 400px; }
.ext-style-ee72c3 { margin-bottom: 20px; text-align: center; }
.ext-style-d55ab0 { background: #ffebe6; color: var(--danger-color); padding: 10px; border-radius: var(--radius); margin-bottom: 20px; }
.ext-style-199b6f { width: 100%; }
.ext-style-2d7f5b { text-align: center; margin-top: 20px; }
.ext-style-cf21b5 { background: #fee2e2; color: #991b1b; padding: 12px; border-radius: 4px; margin-bottom: 24px; font-size: 13px; text-align: center; }
.ext-style-2d939b { background: #fee2e2; color: #991b1b; padding: 12px; border-radius: 6px; margin-bottom: 24px; font-size: 14px; text-align: center; }
.ext-style-f6aa89 { background: #fee2e2; color: #991b1b; padding: 10px; border-radius: 8px; margin-bottom: 20px; font-size: 13px; text-align: center; }
.ext-style-6039a3 { margin-top:0; }
.ext-style-d85c4e { position: relative; }
.ext-style-91395a { padding-right: 40px; margin-bottom: 0; }
.ext-style-744fa1 { position: absolute; right: 14px; top: 13px; cursor: pointer; }
.ext-style-8ecca8 { margin-top: 15px; }
.ext-style-824372 { display: flex; align-items: center; gap: 8px; color: #4a5568; cursor: pointer; }
.ext-style-68b742 { accent-color: #333; width: 14px; height: 14px; cursor: pointer; }
.ext-style-77bd88 { color: #333; font-weight: 500; text-decoration: underline; }
.ext-style-d99434 { max-width: 500px; }
.ext-style-d88eb4 { font-size: 15px; margin-bottom: 10px; color: #334155; border-bottom: 1px solid #e2e8f0; padding-bottom: 5px; }
.ext-style-21e322 { font-size: 15px; margin-bottom: 10px; margin-top: 25px; color: #334155; border-bottom: 1px solid #e2e8f0; padding-bottom: 5px; }
.ext-style-f899bd { font-size: 12px; color: #64748b; margin-top: -10px; margin-bottom: 20px; }
.ext-style-ffbeea { margin-bottom: 25px; }
.ext-style-60dab1 { width: 100%; height: 50px; border: none; border-radius: 8px; cursor: pointer; }
.ext-style-b6bc64 { font-size: 13px; color: #64748b; margin-top: 5px; }
.ext-style-07c308 { margin-top: 10px; }
.ext-style-106473 { text-align: center; margin-top: 24px; font-size: 13px; color: #666; }
.ext-style-743366 { color: #111; font-weight: 600; }
.ext-style-e29e4f { font-weight: 500; color: var(--secondary-color); font-size: 14px; }
.ext-style-06cd2f { padding: 6px 12px; font-size: 13px; }
.ext-style-97cd7c { color: var(--secondary-color); }
.ext-style-9951a3 { color: var(--primary-color); }
.ext-style-04affe { display: flex; gap: 15px; align-items: center; }
.ext-style-c138b3 { padding: 8px 16px; border-radius: 20px; }
.ext-style-895ac4 { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.ext-style-bf6879 { margin-right: 15px; color: var(--secondary-color); text-decoration: none; }
.ext-style-e63fff { margin-left: 5px; }
.ext-style-ce7d9e { color: white; font-weight: bold; font-size: 16px; }
.ext-style-b80b6f { color: #94a3b8; font-size: 12px; }
.ext-style-da363f { max-width: 1000px; margin: 0 auto; }
.ext-style-7ee9bb { text-align: center; padding: 60px 20px; }
.ext-style-3762f5 { margin-bottom: 20px; opacity: 0.8; }
.ext-style-784976 { color: var(--secondary-color); margin-bottom: 10px; }
.ext-style-0c462f { color: var(--text-muted); max-width: 400px; margin: 0 auto; }
.ext-style-792d59 { color: var(--text-muted); font-size: 14px; font-weight: 500; }
.ext-style-75e1dc { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.ext-style-c42e0e { margin-bottom: 0; }
.ext-style-7851db { text-align: right; }
.ext-style-a90f65 { text-align: center; color: #666; padding: 30px; }
.ext-style-c63bd2 { font-weight: 600; font-size: 15px; color: var(--secondary-color); }
.ext-style-f04c2c { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.ext-style-4df621 { background: #e2e8f0; color: #475569; }
.ext-style-00a069 { text-align: right; display: flex; gap: 10px; justify-content: flex-end; }
.ext-style-2321d8 { margin-bottom: 20px; font-size: 20px; }
.ext-style-194b57 { margin-top: 20px; }
.ext-style-0091f6 { display: flex; align-items: center; gap: 10px; font-weight: 500; cursor: pointer; }
.ext-style-052ff0 { width: 18px; height: 18px; }
.ext-style-76ff45 { margin-top: 30px; display: flex; justify-content: flex-end; gap: 15px; }
.ext-style-d83315 { font-size: 14px; font-weight: 600; }
.ext-style-06f15d { font-weight: 600; color: var(--secondary-color); }
.ext-style-d2abfb { font-weight: 500; }
.ext-style-db1172 { font-weight: 600; }
.ext-style-9a3b49 { color: var(--primary-color); font-size: 13px; font-weight: 500; }
.ext-style-bc9cee { margin-top: 30px; }
.ext-style-9e5bd4 { text-align: center; color: #666; }
.ext-style-30dd0c { max-width: 800px; margin: 40px auto; }
.ext-style-95500a { margin-bottom: 30px; }
.ext-style-7cea88 { padding: 30px; }
.ext-style-adbf49 { color: var(--text-muted); font-size: 13px; margin-bottom: 10px; }
.ext-style-b512c9 { display: flex; align-items: center; gap: 10px; }
.ext-style-6c02ed { color: var(--text-muted); font-weight: 500; }
.ext-style-c0dc2c { max-width: 300px; }
.ext-style-4e0c52 { border: 0; border-top: 1px solid var(--border-color); margin: 30px 0; }
.ext-style-1ccc02 { display: flex; justify-content: flex-end; }
.ext-style-9be310 { padding: 10px 24px; }
.ext-style-d3d335 { background: #dbeafe; color: #1e40af; padding: 16px; border-radius: 8px; margin-bottom: 24px; font-weight: 500; display: flex; align-items: center; gap: 10px; }
.ext-style-0522ef { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.ext-style-dce458 { border-bottom: 1px solid #e2e8f0; padding-bottom: 20px; margin-bottom: 20px; }
.ext-style-c0a876 { margin: 0; font-size: 18px; color: #0f172a; }
.ext-style-fec210 { margin: 8px 0 0; color: #64748b; font-size: 14px; }
.ext-style-7d1944 { text-align: center; padding: 40px 20px; }
.ext-style-67ea1b { width: 64px; height: 64px; background: #ecfdf5; color: #10b981; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.ext-style-b877d7 { margin: 0 0 8px; color: #0f172a; }
.ext-style-9b0d07 { margin: 0; color: #64748b; }
.ext-style-f9f1df { background: #fffbeb; border: 1px solid #fcd34d; padding: 20px; border-radius: 8px; margin-bottom: 24px; }
.ext-style-97d922 { margin: 0 0 10px; color: #b45309; display: flex; align-items: center; gap: 8px; }
.ext-style-4f28e9 { margin: 0; color: #92400e; font-size: 14px; }
.ext-style-8443f2 { list-style: none; padding: 0; margin: 0 0 24px; border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; }
.ext-style-c01268 { padding: 16px; border-bottom: 1px solid #e2e8f0; display: flex; align-items: center; gap: 12px; background: #f8fafc; }
.ext-style-489236 { font-family: monospace; color: #334155; font-size: 14px; }
.ext-style-780b2a { margin-left: auto; background: #e0e7ff; color: #4338ca; padding: 4px 8px; border-radius: 4px; font-size: 12px; font-weight: 600; }
.ext-style-354211 { background: #10b981; color: white; border: none; padding: 12px 24px; border-radius: 6px; font-weight: 600; font-size: 15px; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.ext-style-7b3786 { margin: 0 0 20px; font-size: 16px; color: #0f172a; }
.ext-style-f45d3a { color: #64748b; font-size: 14px; font-style: italic; }
.ext-style-a466aa { max-height: 400px; overflow-y: auto; padding-right: 10px; }
.ext-style-23c7e5 { list-style: none; padding: 0; margin: 0; }
.ext-style-47404f { padding: 12px 0; border-bottom: 1px solid #f1f5f9; font-size: 13px; }
.ext-style-0b62f7 { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.ext-style-15b160 { width: 8px; height: 8px; border-radius: 50%; background: #10b981; }
.ext-style-29f1bc { color: #334155; }
.ext-style-08d87d { font-family: monospace; color: #64748b; padding-left: 16px; }
.ext-style-ae1f13 { width: 50px; }
.ext-style-696cea { width: 36px; height: 36px; background: #eff6ff; color: var(--primary-color); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.ext-style-8b2f04 { padding: 40px; max-width: 1400px; margin: 0 auto; }
.ext-style-2fb40b { color: #0f172a; margin-bottom: 30px; font-size: 28px; }
.ext-style-eb46d9 { max-width: 800px; margin: 0 auto; }
.ext-style-d92256 { background: #fee2e2; color: #991b1b; padding: 15px; border-radius: var(--radius); margin-bottom: 20px; }
.ext-style-d7dba3 { background: #dcfce7; color: #166534; padding: 15px; border-radius: var(--radius); margin-bottom: 20px; }
.ext-style-f18e48 { color: var(--text-muted); display: block; margin-top: 5px; }
.ext-style-4b18e7 { margin-top: 25px; }
.ext-style-fa6c8d { display: flex; align-items: center; }
.ext-style-c50f9d { height: 40px; width: 80px; padding: 0; border: none; cursor: pointer; }
.ext-style-b916e5 { margin-left: 15px; font-weight: 500; font-family: monospace; }
.ext-style-de8ea5 { margin-top: 35px; padding-top: 20px; border-top: 1px solid var(--border-color); text-align: right; }
.ext-style-83977d { padding: 12px 30px; font-size: 16px; }
.ext-style-d08532 { max-width: 1000px; margin: 40px auto; }
.ext-style-6bc63b { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.ext-style-ca23e1 { padding: 6px 12px; font-size: 13px; border-radius: 20px; }
.ext-style-e2b74b { margin: 0; }
.ext-style-8d76ab { padding-left: 0; }
.ext-style-a4a857 { padding-right: 0; text-align: right; }
.ext-style-6644e1 { font-weight: bold; color: var(--secondary-color); margin-bottom: 4px; }
.ext-style-a6f46c { font-size: 13px; color: var(--text-muted); }
.ext-style-20f0ff { padding-right: 0; text-align: right; color: var(--text-muted); font-size: 14px; }
.ext-style-12f779 { text-align: center; padding: 40px 0; color: var(--text-muted); }
.ext-style-c3e0b7 { display: flex; flex-direction: column; gap: 15px; }
.ext-style-2f73c5 { display: flex; justify-content: space-between; align-items: center; padding: 15px; border: 1px solid var(--border-color); border-radius: 12px; transition: var(--transition); }
.ext-style-348933 { margin-top: 20px; text-align: center; }
.ext-style-8c13f5 { color: var(--primary-color); font-weight: 500; font-size: 14px; }
.ext-style-69df44 { background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); }
.ext-style-5ada1e { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.ext-style-387555 { width: 100%; border-radius: 20px; background: white; }


/* Extracted <style> blocks */

.primary-hero {
            background: #0f172a;
            color: white;
            padding: 120px 0;
            text-align: center;
        }
        .primary-hero h1 {
            font-size: 52px;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 24px;
        }
        .primary-hero p {
            font-size: 20px;
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }
        .primary-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1000px;
            margin: -60px auto 100px;
            padding: 0 20px;
        }
        .primary-card {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            text-align: left;
            border: 1px solid #e2e8f0;
        }
        .primary-card h3 {
            font-size: 24px;
            color: #0f172a;
            margin-bottom: 16px;
        }
        .primary-card p {
            color: #475569;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        .btn-large {
            display: inline-block;
            padding: 16px 32px;
            background: #146ef5;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            transition: background 0.2s;
        }
        .btn-large:hover {
            background: #0d5ad6;
        }
        .btn-outline-large {
            display: inline-block;
            padding: 16px 32px;
            background: transparent;
            color: #146ef5;
            border: 2px solid #146ef5;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.2s;
        }
        .btn-outline-large:hover {
            background: #f8fafc;
        }

body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: #18181b; /* Dark fallback */
        }
        
        .login-layout {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            /* Background image matching the working woman vibe */
            background: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
        }

        /* Dark overlay for better text readability */
        .login-layout::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: rgba(0,0,0,0.4);
            z-index: 1;
        }

        /* The angled dark shape on the right */
        .login-layout::after {
            content: '';
            position: absolute;
            top: 0; bottom: 0; right: 0;
            width: 60%;
            background: #18181b;
            clip-path: polygon(45% 0, 100% 0, 100% 100%, 15% 100%);
            z-index: 2;
        }

        .content-wrapper {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 1400px;
            padding: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-sizing: border-box;
        }

        /* Left Side Quote */
        .quote-box {
            max-width: 450px;
            color: white;
            padding-bottom: 40px;
            align-self: flex-end;
            margin-top: 200px;
        }
        .quote-text {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
            text-shadow: 0 4px 12px rgba(0,0,0,0.3);
        }
        .quote-author {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 4px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .quote-author::before {
            content: '';
            width: 20px;
            height: 2px;
            background: white;
            display: block;
        }
        .quote-role {
            font-size: 13px;
            color: rgba(255,255,255,0.8);
            margin-left: 28px;
        }

        /* Right Side Form Card */
        .login-card {
            background: #ffffff;
            width: 100%;
            max-width: 480px;
            border-radius: 16px;
            padding: 50px 40px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            margin-left: auto;
            position: relative;
        }
        
        .card-title {
            font-size: 24px;
            font-weight: 800;
            color: #09090b;
            text-align: center;
            margin-bottom: 40px;
            letter-spacing: -0.5px;
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }
        .form-label {
            display: block;
            font-size: 13px;
            font-weight: 700;
            color: #09090b;
            margin-bottom: 8px;
        }
        .form-control {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #e4e4e7;
            border-radius: 4px;
            font-size: 14px;
            box-sizing: border-box;
            outline: none;
            transition: all 0.2s;
            font-family: inherit;
        }
        .form-control::placeholder {
            color: #a1a1aa;
        }
        .form-control:focus {
            border-color: #09090b;
            box-shadow: 0 0 0 1px #09090b;
        }

        .eye-icon {
            position: absolute;
            right: 14px;
            top: 36px;
            color: #a1a1aa;
            cursor: pointer;
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            margin-bottom: 30px;
        }
        .remember-me {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #09090b;
            font-weight: 500;
            cursor: pointer;
        }
        .remember-me input[type="checkbox"] {
            width: 16px;
            height: 16px;
            accent-color: #09090b;
            cursor: pointer;
            margin: 0;
        }
        .forgot-link {
            font-size: 13px;
            color: #09090b;
            text-decoration: none;
            font-weight: 600;
        }

        .btn-submit {
            width: 100%;
            background: #09090b;
            color: #ffffff;
            border: none;
            padding: 16px;
            font-size: 15px;
            font-weight: 700;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.2s;
            font-family: inherit;
        }
        .btn-submit:hover {
            background: #27272a;
        }

        .signup-text {
            text-align: center;
            margin-top: 24px;
            font-size: 13px;
            color: #71717a;
        }
        .signup-text a {
            color: #09090b;
            font-weight: 700;
            text-decoration: none;
        }

        @media (max-width: 1024px) {
            .login-layout::after {
                width: 100%;
                clip-path: none;
                opacity: 0.8;
            }
            .content-wrapper {
                flex-direction: column;
                justify-content: center;
            }
            .quote-box {
                display: none;
            }
            .login-card {
                margin: 0 auto;
            }
        }

body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            font-family: 'Inter', sans-serif;
            background: #fff;
        }
        .split-login-container {
            display: flex;
            min-height: 100vh;
        }
        .split-left {
            flex: 1;
            /* Using a high-quality free Unsplash image that matches the vibe */
            background: url('https://images.unsplash.com/photo-1573164713988-8665fc963095?ixlib=rb-4.0.3&auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 80px 60px;
        }
        .split-left::before {
            content: '';
            position: absolute;
            bottom: 0; left: 0; right: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(38, 35, 56, 0.95) 0%, rgba(38, 35, 56, 0.8) 50%, transparent 100%);
            z-index: 1;
        }
        .split-left-content {
            position: relative;
            z-index: 2;
            color: white;
            max-width: 500px;
        }
        .quote-text {
            font-size: 32px;
            font-weight: 500;
            line-height: 1.4;
            margin-bottom: 40px;
            letter-spacing: -0.5px;
        }
        .author-box {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }
        .author-name {
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 6px;
        }
        .author-title {
            font-size: 14px;
            color: #e2e8f0;
            font-weight: 400;
        }
        .carousel-arrows {
            display: flex;
            gap: 15px;
        }
        .arrow-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.3);
            background: transparent;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
        }
        .arrow-btn:hover {
            background: rgba(255,255,255,0.1);
            border-color: white;
        }
        
        .split-right {
            flex: 1;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }
        .login-form-wrapper {
            width: 100%;
            max-width: 420px;
        }
        .login-heading {
            font-size: 32px;
            font-weight: 600;
            color: #0f172a;
            margin: 0 0 10px 0;
            letter-spacing: -0.5px;
        }
        .login-subtitle {
            color: #475569;
            font-size: 15px;
            margin: 0 0 40px 0;
        }
        .form-group {
            margin-bottom: 24px;
            position: relative;
        }
        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
        }
        .form-control {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-size: 15px;
            box-sizing: border-box;
            outline: none;
            transition: border-color 0.2s;
            color: #0f172a;
            font-family: inherit;
        }
        .form-control::placeholder {
            color: #94a3b8;
        }
        .form-control:focus {
            border-color: #3b36d0;
        }
        .eye-icon {
            position: absolute;
            right: 16px;
            top: 40px;
            color: #64748b;
            cursor: pointer;
        }
        .forgot-pass {
            font-size: 14px;
            color: #64748b;
            margin-bottom: 24px;
        }
        .forgot-pass a {
            color: #ef4444;
            text-decoration: none;
            font-weight: 600;
        }
        .btn-submit {
            width: 100%;
            padding: 14px;
            background: #3b36d0; /* Match the exact blue/purple from mockup */
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 15px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
            margin-bottom: 24px;
            font-family: inherit;
        }
        .btn-submit:hover {
            background: #2a25ab;
        }
        .divider {
            display: flex;
            align-items: center;
            text-align: center;
            color: #94a3b8;
            font-size: 14px;
            margin-bottom: 24px;
        }
        .divider::before, .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #e2e8f0;
        }
        .divider::before { margin-right: 15px; }
        .divider::after { margin-left: 15px; }
        
        .btn-google {
            width: 100%;
            padding: 14px;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
            color: #64748b;
            cursor: pointer;
            transition: background 0.2s;
            margin-bottom: 40px;
            font-family: inherit;
        }
        .btn-google:hover {
            background: #f8fafc;
        }
        .signup-text {
            text-align: center;
            font-size: 14px;
            color: #94a3b8;
        }
        .signup-text a {
            color: #0f172a;
            font-weight: 600;
            text-decoration: none;
        }

        @media (max-width: 900px) {
            .split-left {
                display: none;
            }
        }

/* MILESWEB STOREFRONT CSS OVERRIDES */
        .announce-bar {
            background:#020205;
            color:#fff;
            font-size:13.5px;
            padding:9px 24px;
            display:flex;
            align-items:center;
            justify-content:center;
            gap:12px;
            flex-wrap:wrap;
        }
        .announce-bar strong { color:#20F0CB; }
        .announce-timer {
            display:inline-flex;
            align-items:center;
            gap:1px;
            font-weight:600;
            background:rgba(255,255,255,.08);
            padding:3px 10px;
            border-radius:6px;
            font-size:13px;
        }
        .announce-timer span { min-width:22px; text-align:center; }
        .announce-cta {
            color:#20F0CB;
            font-weight:700;
            font-size:13px;
            border-bottom:1px solid rgba(32,240,203,.4);
            text-decoration:none;
        }
        .announce-cta:hover { border-color:#20F0CB; }
        
        .hx-navbar {
            background-color: #ffffff;
            border-bottom: 1px solid var(--border-color);
            padding: 18px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
        }
        .hx-nav-brand {
            font-size: 26px;
            font-weight: 800;
            color: var(--secondary-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -0.5px;
        }
        .hx-nav-brand span {
            color: var(--primary-color);
        }
        .hx-nav-links {
            display: flex;
            gap: 24px;
            align-items: center;
        }
        .hx-nav-links a {
            color: var(--text-color);
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: color 0.2s;
        }
        .hx-nav-links a:hover {
            color: var(--primary-color);
        }
        .hx-nav-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .hx-btn {
            padding: 12px 24px;
            font-weight: 700;
            font-size: 14px;
            border-radius: var(--radius);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        .hx-btn-primary {
            background-color: var(--primary-color);
            color: #ffffff !important;
            border: 2px solid var(--primary-color);
            box-shadow: var(--shadow);
        }
        .hx-btn-primary:hover {
            background-color: var(--primary-hover);
            border-color: var(--primary-hover);
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .hx-btn-outline {
            background-color: transparent;
            color: var(--primary-color) !important;
            border: 2px solid rgba(20,110,245,.2);
            background: rgba(20,110,245,.05);
        }
        .hx-btn-outline:hover {
            background-color: var(--primary-color);
            color: #ffffff !important;
        }

.hx-footer {
            background-color: #0f172a;
            color: #ffffff;
            padding: 80px 0 40px;
            border-top: 5px solid var(--primary-color);
        }
        .hx-footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        .hx-footer-brand {
            font-size: 28px;
            font-weight: 800;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }
        .hx-footer-brand span {
            color: var(--primary-color);
        }
        .hx-footer-desc {
            color: #94a3b8;
            font-size: 15px;
            line-height: 1.6;
            max-width: 300px;
            margin-bottom: 25px;
        }
        .hx-footer h4 {
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .hx-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .hx-footer ul li {
            margin-bottom: 14px;
        }
        .hx-footer ul a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }
        .hx-footer ul a:hover {
            color: var(--primary-color);
        }
        .hx-footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #64748b;
            font-size: 13px;
        }
        .hx-footer-social {
            display: flex;
            gap: 15px;
        }
        .hx-footer-social a {
            color: #94a3b8;
            background: #1e293b;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        .hx-footer-social a:hover {
            color: #ffffff;
            background: var(--primary-color);
            transform: translateY(-2px);
        }
        
        /* Trust Badges */
        .hx-trust-badge {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 12px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        .hx-trust-badge-stars {
            color: #f59e0b;
            font-size: 14px;
        }