:root {
    --primary: hsl(230, 100%, 60%);
    --primary-glow: hsla(230, 100%, 60%, 0.2);
    --secondary: hsl(280, 80%, 65%);
    --accent: hsl(190, 90%, 50%);
    --bg-light: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.6);
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --text-main: #1e293b;
    --text-muted: #475569;
    --ios-blur: blur(35px) saturate(210%);
    --radius-lg: 32px;
    --radius-md: 20px;
    --font-main: 'Outfit', 'Inter', -apple-system, system-ui, sans-serif;
    --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
}

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

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

/* Background Effects */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at top left, #eff6ff, #ffffff);
}

.blob {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    animation: move 25s infinite alternate;
}

.blob-1 {
    background: var(--primary);
    top: -300px;
    left: -200px;
}

.blob-2 {
    background: var(--secondary);
    bottom: -300px;
    right: -200px;
    animation-delay: -7s;
}

@keyframes move {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(150px, 150px) scale(1.15);
    }
}

/* Glass Components */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: var(--ios-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.glass-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 12px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

/* Typography */
h1 {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -3px;
    line-height: 0.95;
    margin-bottom: 2.5rem;
    text-align: center;
}

h2,
h3,
h4,
.section-header {
    text-align: center !important;
    width: 100%;
    display: block;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-main) 20%, var(--primary) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-pro {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 12px 24px -6px var(--primary-glow);
}

.btn-primary:hover {
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 20px 30px -10px var(--primary-glow);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

/* Auth Cards */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
    padding-top: 180px;
    width: 100%;
}

.hero p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    padding: 50px;
}

.input-pro {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    color: var(--text-main);
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.input-pro:focus {
    outline: none;
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 5px var(--primary-glow);
}

/* Sidebar & Dashboard */
.app-container {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 300px;
    padding: 40px 30px;
    border-right: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: var(--ios-blur);
    display: flex;
    flex-direction: column;
}

.sidebar .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 20px;
    margin-bottom: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sidebar .nav-link:hover {
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-main);
}

.sidebar .nav-link.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px -5px var(--primary-glow);
}

.main-content {
    flex: 1;
    padding: 60px 80px;
    overflow-y: auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

/* Feature Grid */
.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.scenario-img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.scenario-card {
    background: #ffffff !important;
    padding: 40px 30px;
    border-radius: 35px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.scenario-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* End of scenarios section */

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 10px 20px -5px var(--primary-glow);
}

@media (max-width: 1024px) {
    .main-content {
        padding: 40px;
    }

    .sidebar {
        width: 260px;
    }
}

@media (max-width: 768px) {
    .app-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        height: auto;
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }

    .main-content {
        padding: 25px;
    }

    h1 {
        font-size: 3.5rem;
    }
}

/* Booster Cards Enhancement */
.booster-card {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    border-width: 2px !important;
}

.booster-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
    pointer-events: none;
}

.booster-card:hover::before {
    left: 100%;
}

.booster-card:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.booster-elite {
    border-color: #4ade80 !important;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.05), rgba(74, 222, 128, 0.01)) !important;
}

.booster-platinium {
    border-color: #e5e7eb !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)) !important;
}

/* Feature Detailed Section */
.feature-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 100px;
}

.feature-detail-content {
    text-align: left;
}

.feature-detail-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

/* Payment Badges */
.payment-badge {
    padding: 12px 25px;
    border-radius: 15px;
    background: white;
    box-shadow: var(--shadow-soft);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.payment-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}