:root {
    --bg: #f8fafc;
    --panel: #ffffff;
    --panel-light: #f8fafc;
    --border: rgba(0, 0, 0, 0.1);
    --text: #1e293b;
    --muted: #64748b;
    --accent: #f5b942;
    --accent-soft: rgba(245, 185, 66, 0.15);
    --gradient: linear-gradient(120deg, #f5b942, #f57c00);
    --radius-lg: 18px;
    --radius: 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%, #f8fafc 100%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
    color: #1e293b;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 167, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(79, 172, 254, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(147, 51, 234, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(148, 163, 184, 0.03) 10px, rgba(148, 163, 184, 0.03) 20px);
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

a {
    color: inherit;
}

.site-header {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem 6%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-logo {
    min-width: 60px;
    height: 60px;
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
}

.logo-icon {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--gradient);
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #0f0f0f;
    letter-spacing: 1px;
}

.brand h1 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #ffd700 50%, #ff6b35 75%, #f7931e 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    position: relative;
}

.brand h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd700, #f7931e, #ff6b35);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    opacity: 0.6;
}

.brand p {
    margin: 0.3rem 0 0 0;
    color: #4facfe;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    color: var(--text);
    font-size: 0.95rem;
}

.main-nav a {
    text-decoration: none;
    position: relative;
    padding: 0.65rem 1.4rem;
    border-radius: 30px;
    border: none;
    color: white;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #fa709a 100%);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
    display: inline-block;
}

.main-nav a::after {
    display: none;
}

.main-nav a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 147, 251, 0.4);
    background: linear-gradient(135deg, #fa709a 0%, #f5576c 50%, #f093fb 100%);
}

.header-actions a {
    text-decoration: none;
    padding: 0.65rem 1.4rem;
    border-radius: 30px;
    border: none;
    color: white;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #667eea 100%);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.header-actions a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
    background: linear-gradient(135deg, #667eea 0%, #4facfe 50%, #00f2fe 100%);
}

.header-actions a.primary {
    border: none;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 50%, #ff6b35 100%);
    color: #0f0f0f;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.header-actions a.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 50%, #ffd700 100%);
}
.header-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.content {
    padding: 2.5rem 6%;
}

.site-footer {
    text-align: center;
    color: var(--muted);
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    margin-top: 3rem;
}

.hero {
    background: radial-gradient(circle at top, rgba(245, 185, 66, 0.2), transparent 45%), var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: grid;
    gap: 1.5rem;
}

.hero h2 {
    margin: 0;
    font-size: 2.2rem;
}

/* E-commerce Hero Section */
.ecommerce-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    border-radius: 24px;
    padding: 4rem 3rem;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.ecommerce-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ffa500, #ff6347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #0f0f0f;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-visual {
    position: relative;
    z-index: 2;
    height: 400px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 10%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.card-text {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    margin: 3rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.product-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.3);
}

.product-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.3);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.product-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.product-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1rem 0;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.product-price .currency {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.product-price .amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.product-features {
    margin: 1.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 1.3rem;
}

.product-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1rem 0;
}

.btn-product {
    display: block;
    text-align: center;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-product:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    margin: 3rem 0;
    background: linear-gradient(180deg, transparent, rgba(102, 126, 234, 0.05), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--panel);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.feature-1::before { background: linear-gradient(90deg, #f093fb, #f5576c); }
.feature-2::before { background: linear-gradient(90deg, #4facfe, #00f2fe); }
.feature-3::before { background: linear-gradient(90deg, #43e97b, #38f9d7); }
.feature-4::before { background: linear-gradient(90deg, #fa709a, #fee140); }

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--text);
}

.feature-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    border: 1px solid rgba(102, 126, 234, 0.3);
}

/* Income Plan Section */
.income-plan-section {
    padding: 4rem 0;
    margin: 3rem 0;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.level-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.level-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }

/* Daily Updates Scrolling Banner */
.daily-updates-banner {
    position: relative;
    z-index: 5;
}

.updates-scroll-container {
    display: flex;
    gap: 3rem;
    animation: scrollUpdates 30s linear infinite;
}

.updates-scroll-container:hover {
    animation-play-state: paused;
}

.update-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.update-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes scrollUpdates {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .updates-scroll-container {
        gap: 2rem;
        animation-duration: 25s;
    }
    
    .update-item {
        font-size: 0.85rem;
        gap: 0.5rem;
        padding: 0.4rem 0.8rem;
    }
}
    100% { transform: rotate(360deg); }
}

.level-card:nth-child(1) { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.level-card:nth-child(2) { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.level-card:nth-child(3) { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.level-card:nth-child(4) { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.level-card:nth-child(5) { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }
.level-card:nth-child(6) { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.level-card:nth-child(7) { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%); }

.level-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.level-number {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.level-percent {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.level-desc {
    font-size: 0.85rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #0f0f0f;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 968px) {
    .ecommerce-hero {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .levels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive - Small screens */
@media (max-width: 768px) {
    .ecommerce-hero {
        padding: 2rem 1.5rem;
        margin: 1rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .products-section,
    .features-section,
    .income-plan-section {
        padding: 2rem 0;
        margin: 2rem 0;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-price .amount {
        font-size: 2rem;
    }
    
    .levels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .level-card {
        padding: 1.5rem 1rem;
    }
    
    .level-percent {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 2rem;
        margin: 2rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .ecommerce-hero {
        padding: 1.5rem 1rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .stat-item {
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .products-section,
    .features-section,
    .income-plan-section {
        padding: 1.5rem 0;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-icon {
        font-size: 2.5rem;
    }
    
    .product-name {
        font-size: 1.3rem;
    }
    
    .product-price .amount {
        font-size: 1.75rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon-large {
        font-size: 3rem;
    }
    
    .levels-grid {
        grid-template-columns: 1fr;
    }
    
    .level-card {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    background: #2d3748;
    color: #fff;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    cursor: pointer;
    font-weight: 500;
}

.btn.primary {
    background: var(--gradient);
    color: #0f0f0f;
    border: none;
}

.btn:hover {
    background: #3d4758;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.btn.primary:hover {
    background: linear-gradient(135deg, #ffa726 0%, #ff9800 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 167, 38, 0.3);
}

.info-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.info-card {
    background: var(--panel);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--border);
}

.auth-card,
.panel-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 720px;
    margin: 0 auto;
}

/* Modern Auth Pages */
.auth-page-wrapper {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.auth-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-welcome {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 15%, #ffd700 30%, #4facfe 45%, #00f2fe 60%, #43e97b 75%, #fa709a 90%, #ff6b35 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    border-radius: 24px;
    padding: 3rem;
    color: white;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.auth-welcome::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.auth-welcome::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(79, 172, 254, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(240, 147, 251, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.auth-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.auth-welcome h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem 0;
    position: relative;
    z-index: 1;
}

.auth-welcome > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.auth-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.auth-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.auth-feature-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-check {
    background: rgba(255, 255, 255, 0.3);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.auth-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.auth-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.auth-benefit-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 2rem;
    min-width: 50px;
    text-align: center;
}

.auth-benefit-item div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.auth-benefit-item strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.auth-benefit-item span {
    font-size: 0.9rem;
    opacity: 0.9;
}

.auth-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card-modern {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.auth-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ffd700, #4facfe, #00f2fe, #43e97b, #fa709a, #ff6b35);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 20%, #ffd700 40%, #4facfe 60%, #00f2fe 80%, #43e97b 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.auth-header p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
}

.label-icon {
    font-size: 1.2rem;
}

.required-star {
    color: #ef4444;
    font-weight: 700;
}

.form-group input {
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    padding: 1rem 1.2rem;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6b35;
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15), 0 4px 12px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: #94a3b8;
}

.btn-auth-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 25%, #ffd700 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-auth-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-auth-primary:hover::before {
    left: 100%;
}

.btn-auth-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    animation: none;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 25%, #ffd700 50%, #f7931e 75%, #ff6b35 100%);
}

.btn-auth-secondary {
    background: white;
    color: var(--text);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-auth-secondary:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.auth-footer p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

.auth-link {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.credential-card-modern {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(34, 197, 94, 0.15) 50%, rgba(79, 172, 254, 0.15) 100%);
    border: 3px solid;
    border-image: linear-gradient(135deg, #10b981, #22c55e, #4facfe, #00f2fe) 1;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.credential-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #22c55e, #4facfe, #00f2fe, #10b981);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.credential-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.credential-icon {
    font-size: 3rem;
}

.credential-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #22c55e 50%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.credential-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.credential-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.credential-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.credential-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.1em;
    border: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    display: inline-block;
    width: 100%;
    text-shadow: 0 1px 2px rgba(16, 185, 129, 0.1);
}

.credential-note {
    background: rgba(255, 167, 38, 0.1);
    border: 1px solid rgba(255, 167, 38, 0.3);
    border-radius: 12px;
    padding: 1rem;
    color: #92400e;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.credential-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.credential-actions .btn-auth-primary,
.credential-actions .btn-auth-secondary {
    flex: 1;
    min-width: 150px;
}

/* Responsive */
@media (max-width: 968px) {
    .auth-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .auth-left {
        order: 2;
    }
    
    .auth-right {
        order: 1;
    }
    
    .auth-welcome {
        padding: 2rem;
    }
    
    .auth-welcome h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .auth-page-wrapper {
        padding: 1rem 0;
        min-height: calc(100vh - 150px);
    }
    
    .auth-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .auth-welcome {
        padding: 1.5rem;
    }
    
    .auth-welcome h1 {
        font-size: 1.75rem;
    }
    
    .auth-welcome > p {
        font-size: 1rem;
    }
    
    .auth-icon {
        font-size: 3rem;
    }
    
    .auth-feature-item,
    .auth-benefit-item {
        padding: 0.8rem 1rem;
    }
    
    .auth-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .auth-header h2 {
        font-size: 1.75rem;
    }
    
    .form-group input {
        padding: 0.9rem 1rem;
    }
    
    .btn-auth-primary,
    .btn-auth-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .credential-card-modern {
        padding: 1.5rem;
    }
    
    .credential-value {
        font-size: 1.1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .credential-actions {
        flex-direction: column;
    }
    
    .credential-actions .btn-auth-primary,
    .credential-actions .btn-auth-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .auth-page-wrapper {
        padding: 0.5rem 0;
    }
    
    .auth-container {
        padding: 0 0.75rem;
        gap: 1rem;
    }
    
    .auth-welcome {
        padding: 1.25rem;
    }
    
    .auth-welcome h1 {
        font-size: 1.5rem;
    }
    
    .auth-welcome > p {
        font-size: 0.9rem;
    }
    
    .auth-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .auth-feature-item,
    .auth-benefit-item {
        padding: 0.7rem 0.9rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .benefit-icon {
        font-size: 1.5rem;
    }
    
    .auth-card-modern {
        padding: 1.5rem 1rem;
    }
    
    .auth-header h2 {
        font-size: 1.5rem;
    }
    
    .auth-header p {
        font-size: 0.85rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .label-icon {
        font-size: 1rem;
    }
    
    .form-group input {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .btn-auth-primary,
    .btn-auth-secondary {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .credential-header h3 {
        font-size: 1.25rem;
    }
    
    .credential-icon {
        font-size: 2.5rem;
    }
    
    .credential-value {
        font-size: 1rem;
        word-break: break-all;
    }
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

label {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    color: var(--muted);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

input,
select,
textarea {
    border-radius: 12px;
    background: var(--panel-light);
    border: 1px solid var(--border);
    padding: 0.9rem 1rem;
    color: var(--text);
    font-size: 1rem;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
}

input[type="file"] {
    padding: 0.5rem;
    background: var(--card-bg);
    border: 1px dashed var(--border);
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

input[type="file"]:hover {
    border-color: var(--accent);
    background: rgba(255, 167, 38, 0.05);
}

.alert {
    border-radius: 12px;
    padding: 0.85rem 1.2rem;
    font-weight: 600;
}

.alert.error {
    background: rgba(239, 68, 68, 0.15);
    color: #ff8c8c;
}

.alert.success {
    background: rgba(16, 185, 129, 0.18);
    color: #6fe4b3;
}

.dashboard {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.sidebar {
    width: 260px;
    background: var(--panel);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: sticky;
    top: 120px;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--muted);
}

.side-nav {
    display: flex;
    flex-direction: column;
}

.side-link {
    padding: 0.95rem 1.5rem;
    text-decoration: none;
    color: var(--text);
    border-left: 3px solid transparent;
    transition: all 0.15s ease;
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.side-link span {
    color: var(--muted);
    font-size: 0.82rem;
}

.side-link:hover,
.side-link.active {
    background: var(--panel-light);
    border-left-color: var(--accent);
}

.panel-content {
    flex: 1;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat-grid {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
    background: var(--panel-light);
    border-radius: var(--radius);
    padding: 1rem;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(245, 185, 66, 0.15), transparent 45%);
    pointer-events: none;
}

.stat-card strong {
    color: var(--muted);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.stat-card p {
    font-size: 1.6rem;
    margin: 0.3rem 0 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    font-size: 0.95rem;
}

table th,
table td {
    padding: 0.85rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
    color: var(--muted);
}

table th {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    color: var(--text);
}

table tbody tr:hover {
    background: rgba(255, 255, 255, 0.04);
}

.table-wrapper {
    overflow-x: auto;
}

.credential-card {
    margin-top: 1.5rem;
    background: var(--panel-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 1.5rem;
    line-height: 1.8;
}

.credential-card code {
    background: rgba(255, 255, 255, 0.08);
    padding: 0.15rem 0.45rem;
    border-radius: 6px;
    font-size: 1rem;
}

.credential-note {
    color: var(--muted);
    font-size: 0.9rem;
}

.helper-text {
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.helper-text.success {
    color: #6fe4b3;
}

.helper-text.error {
    color: #ff8c8c;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-active {
    background: rgba(16, 185, 129, 0.2);
    color: #6fe4b3;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.status-inactive {
    background: rgba(239, 68, 68, 0.2);
    color: #ff8c8c;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@media (max-width: 1100px) {
    .site-header {
        grid-template-columns: 1fr;
        padding: 1rem 4%;
    }

    .brand {
        justify-content: center;
    }

    .main-nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-actions {
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem 2%;
        gap: 1rem;
    }
    
    .brand {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .brand-logo {
        max-width: 150px;
        height: 50px;
    }
    
    .brand h1 {
        font-size: 1.3rem;
    }
    
    .brand p {
        font-size: 0.8rem;
    }
    
    .main-nav {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .header-actions a {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 960px) {
    .dashboard {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        position: static;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 1.5rem;
    }

    .content {
        padding: 1rem;
    }

    .panel-content {
        padding: 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .products-grid,
    .features-grid {
        gap: 1.5rem;
    }
    
    .product-card,
    .feature-card {
        padding: 1.5rem;
    }
}

@media (max-width: 360px) {
    .content {
        padding: 0.75rem;
    }
    
    .panel-content {
        padding: 0.75rem;
    }
    
    .ecommerce-hero {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .product-card,
    .feature-card,
    .level-card {
        padding: 1rem;
    }
    
    .auth-card-modern {
        padding: 1rem;
    }
}

