/* ============================================
   NeonPulse Theme - Modern Creative Template
   Version: 1.0
   Author: Custom Design
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

/* CSS Variables for Easy Customization */
:root {
    /* Primary Colors - Modern Vibrant Palette (Ninja Hacks inspired) */
    --primary: #6366f1;
    --primary-light: #8b5cf6;
    --primary-dark: #4f46e5;
    --secondary: #06b6d4;
    --secondary-light: #22d3ee;
    --accent: #ec4899;
    --accent-alt: #a855f7;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    /* Background Colors - Clean White Theme */
    --bg-main: #ffffff;
    --bg-darker: #f8f9fa;
    --bg-card: #ffffff;
    --bg-elevated: #ffffff;
    --bg-glass: rgba(0, 0, 0, 0.02);
    --bg-glass-hover: rgba(0, 0, 0, 0.04);
    
    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    
    /* Gradients - Vibrant and Modern */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    --gradient-accent: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    --gradient-hero: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
    
    /* Shadows - Light Theme */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.2);
    --shadow-glow-accent: 0 0 20px rgba(236, 72, 153, 0.2);
    
    /* Border */
    --border-color: rgba(0, 0, 0, 0.08);
    --border-glow: rgba(99, 102, 241, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-main);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--secondary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-light);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* ============================================
   Layout Container
   ============================================ */
.fullsite {
    margin: 0 auto;
    padding: 0;
}

.wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    overflow: hidden;
}

.clear {
    clear: both;
}

.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* ============================================
   Header Styles
   ============================================ */
#header {
    padding: var(--spacing-xl);
    position: relative;
}

#logo {
    float: left;
    margin: var(--spacing-md) 0;
}

#logo a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

#logo a::before {
    content: '◆';
    font-size: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.top-banner {
    float: right;
    padding-top: var(--spacing-md);
}

/* Navigation Bar */
.navbar {
    background: var(--bg-darker);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xs);
    margin: var(--spacing-md) 0;
    border: 1px solid var(--border-color);
}

.navbar ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    justify-content: center;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.navbar ul li a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    border-radius: var(--radius-md);
    z-index: -1;
}

.navbar ul li a:hover,
.navbar ul li a.current {
    color: var(--text-primary);
}

.navbar ul li a:hover::before,
.navbar ul li a.current::before {
    opacity: 1;
}

.navbar ul li a.current {
    box-shadow: var(--shadow-glow);
}

/* Dropdown Menu */
.navbar ul li.submenu ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
    z-index: 100;
    box-shadow: var(--shadow-md);
    margin-top: var(--spacing-xs);
}

.navbar ul li.submenu:hover ul {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.navbar ul li ul li {
    display: block;
}

.navbar ul li ul li a {
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
}

.navbar ul li ul li a:hover {
    background: var(--bg-glass-hover);
    color: var(--text-primary);
}

/* White Icons for Nav */
.white-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}

/* ============================================
   Content Area
   ============================================ */
#content {
    padding: var(--spacing-lg) 0;
}

.site_title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    background: var(--gradient-glow);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.site_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--spacing-xl);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.site_content {
    padding: var(--spacing-lg) var(--spacing-xl);
}

/* ============================================
   Home Page Styles - Aesthetic Design
   ============================================ */

/* Hero Section with Light Gradient */
.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #dbeafe 100%);
    border-radius: var(--radius-xl);
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.hero-section h1 i {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 0.5rem;
}

.hero-section p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
    color: #ffffff;
}

.hero-buttons .btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.hero-buttons .btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
}

/* Aesthetic Stats Section */
.stats-section {
    margin-bottom: 2.5rem;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.stat-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
}

.stat-primary .stat-icon {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.stat-success .stat-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.stat-info .stat-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
}

.stat-warning .stat-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Features Section */
.features-section {
    margin-bottom: 2.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.section-header h2 i {
    color: var(--warning);
    margin-right: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ============================================
   Showcase Section - Alternating Layout
   ============================================ */
.showcase-section {
    margin-bottom: 3rem;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 3rem 0;
    position: relative;
}

.showcase-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Visual Side with Icon */
.showcase-visual {
    flex-shrink: 0;
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-icon-lg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.icon-primary-bg {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.icon-accent-bg {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.4);
}

.icon-success-bg {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

/* Floating Badges Animation */
.floating-badge {
    position: absolute;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

.badge-1 {
    top: 0;
    right: 20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20px;
    left: 0;
    animation-delay: 0.5s;
}

.badge-3 {
    bottom: 0;
    right: 0;
    animation-delay: 1s;
}

.badge-accent {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Content Side */
.showcase-content {
    flex: 1;
}

.showcase-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.showcase-label i {
    font-size: 0.5rem;
}

.label-accent {
    color: var(--accent);
}

.label-success {
    color: var(--success);
}

.showcase-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.showcase-content > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Showcase Features Grid */
.showcase-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.sf-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.5rem 0;
}

.sf-item i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.showcase-left .sf-item i {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
}

.showcase-right .sf-item i {
    background: rgba(236, 72, 153, 0.15);
    color: var(--accent);
}

/* Showcase Buttons */
.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
}

.showcase-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
}

.showcase-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.45);
    color: #ffffff;
}

.showcase-btn-accent {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.35);
}

.showcase-btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.45);
    color: #ffffff;
}

/* Center Showcase - Trust Section */
.showcase-center {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(52, 211, 153, 0.05) 100%);
    border-radius: var(--radius-xl);
}

.showcase-center-icon {
    display: flex;
    justify-content: center;
}

.showcase-center-content {
    max-width: 600px;
    margin: 0 auto;
}

.showcase-center-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.showcase-center-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--success);
}

.trust-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .showcase-item {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
    }
    
    .showcase-visual {
        width: 150px;
        height: 150px;
    }
    
    .showcase-icon-lg {
        width: 90px;
        height: 90px;
        font-size: 2.25rem;
    }
    
    .floating-badge {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .showcase-content,
    .showcase-right .showcase-content {
        text-align: center;
    }
    
    .showcase-right .showcase-label,
    .showcase-label {
        justify-content: center;
    }
    
    .showcase-features {
        grid-template-columns: 1fr;
    }
    
    .showcase-right .showcase-features {
        justify-items: center;
    }
    
    .sf-item,
    .showcase-right .sf-item {
        flex-direction: row;
        justify-content: center;
    }
    
    .showcase-right .showcase-btn {
        float: none;
    }
    
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 500px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Featured Content Section */
.featured-content-section {
    margin-bottom: 2.5rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.featured-box {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.featured-box-alt {
    border-left: 3px solid var(--accent);
}

.featured-box-header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-box-alt .featured-box-header {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.featured-box-content {
    padding: 1rem 1.25rem;
    min-height: 100px;
}

/* ============================================
   How It Works Section - Tabbed Steps
   ============================================ */
.how-it-works-section {
    padding: 4rem 0;
}

.hiw-container {
    max-width: 900px;
    margin: 0 auto;
}

.hiw-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.hiw-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.hiw-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Tab Buttons */
.hiw-tabs {
    background: var(--surface);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid var(--border);
}

.hiw-tab-buttons {
    display: flex;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.hiw-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.hiw-tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}

.hiw-tab-btn:hover {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.hiw-tab-btn.active {
    color: var(--primary);
    background: var(--surface);
}

.hiw-tab-btn.active::after {
    width: 60%;
}

.hiw-tab-btn i {
    font-size: 1.1rem;
}

/* Tab Content */
.hiw-tab-content {
    display: none;
    padding: 2.5rem;
    animation: fadeInUp 0.4s ease;
}

.hiw-tab-content.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hiw-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Steps */
.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03) 0%, rgba(236, 72, 153, 0.03) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.hiw-step:hover {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(236, 72, 153, 0.05) 100%);
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateX(8px);
}

.step-number {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.step-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.4rem 0;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Advertiser Tab Variant */
.hiw-tab-content[data-tab="advertiser"] .hiw-step:hover {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(244, 114, 182, 0.05) 100%);
    border-color: rgba(236, 72, 153, 0.2);
}

.hiw-tab-content[data-tab="advertiser"] .step-number {
    background: var(--gradient-accent);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.hiw-tab-content[data-tab="advertiser"] .step-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15) 0%, rgba(244, 114, 182, 0.1) 100%);
    color: var(--accent);
}

/* CTA Button */
.hiw-cta {
    text-align: center;
    padding-top: 1rem;
}

.hiw-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.35);
}

.hiw-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.45);
    color: #ffffff;
}

.hiw-btn-alt {
    background: var(--gradient-accent);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.35);
}

.hiw-btn-alt:hover {
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.45);
}

/* Responsive */
@media (max-width: 768px) {
    .hiw-tab-buttons {
        flex-direction: column;
    }
    
    .hiw-tab-btn {
        border-bottom: 1px solid var(--border);
    }
    
    .hiw-tab-btn:last-child {
        border-bottom: none;
    }
    
    .hiw-tab-btn::after {
        left: 0;
        transform: none;
        width: 3px;
        height: 0;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 0 3px 3px 0;
    }
    
    .hiw-tab-btn.active::after {
        width: 3px;
        height: 60%;
    }
    
    .hiw-tab-content {
        padding: 1.5rem;
    }
    
    .hiw-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .hiw-step:hover {
        transform: translateY(-4px);
    }
    
    .step-number,
    .step-icon {
        margin: 0 auto;
    }
    
    .hiw-title {
        font-size: 1.75rem;
    }
}

/* CTA Section - Aesthetic Design */
.cta-section {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4c1d95 100%);
    border-radius: var(--radius-xl);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

/* Floating Shapes */
.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    top: -100px;
    right: -50px;
    animation: floatShape 8s ease-in-out infinite;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    bottom: -80px;
    left: -60px;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
    top: 50%;
    left: 10%;
    animation: floatShape 12s ease-in-out infinite;
}

.cta-shape-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #a855f7, #d946ef);
    top: 20%;
    right: 15%;
    animation: floatShape 9s ease-in-out infinite reverse;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(10px, -15px) scale(1.05); }
    50% { transform: translate(-5px, 10px) scale(0.95); }
    75% { transform: translate(-10px, -5px) scale(1.02); }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

/* Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease;
}

.cta-badge i {
    color: #f472b6;
    font-size: 0.9rem;
}

.cta-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title */
.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-title .gradient-text {
    background: linear-gradient(135deg, #f472b6 0%, #c084fc 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cta-description strong {
    color: #ffffff;
    font-weight: 600;
}

/* Features */
.cta-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.cta-feature i {
    color: #34d399;
    font-size: 1rem;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 1.75rem;
    border-radius: var(--radius-lg);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.5);
    color: #ffffff;
}

.cta-btn-primary .cta-arrow {
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    color: #ffffff;
}

/* Disclaimer */
.cta-disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-disclaimer i {
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Statistics Bar (Legacy) */
.statistics {
    background: var(--gradient-hero);
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

.statistics strong {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Home Boxes */
.home-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.home-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.home-box .title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.home-box img {
    border-radius: var(--radius-md);
    margin-right: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3));
}

.home-box ul {
    padding-left: var(--spacing-lg);
}

.home-box ul li {
    padding: var(--spacing-xs) 0;
    position: relative;
    padding-left: var(--spacing-lg);
}

.home-box ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

/* Feature Cards Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.feature-card .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ============================================
   Balance Cards - Modern Dashboard Style
   ============================================ */
.balance-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.balance-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.balance-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.balance-card.secondary {
    background: var(--gradient-accent);
}

.balance-card.tertiary {
    background: var(--gradient-secondary);
}

.balance-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.balance-card-amount {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* Quick Stats Grid */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
}

.stat-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Notification Cards */
.notification-list {
    margin: var(--spacing-xl) 0;
}

.notification-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-md);
    padding: var(--spacing-md) var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    transition: all var(--transition-fast);
}

.notification-item:hover {
    background: var(--bg-darker);
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.notification-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Featured Ads */
.featured_ads {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.featured_ads .title,
.featured_ads .title2 {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
}

.featured_ads .title2 {
    background: var(--gradient-accent);
}

.featured_ads .fcontent {
    padding: var(--spacing-md);
    min-height: 100px;
}

.featured-ads li {
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--border-color);
}

.featured-ads li:last-child {
    border-bottom: none;
}

.featured-ads li a {
    color: var(--secondary);
    font-weight: 500;
}

.featured-ads li span {
    color: #22c55e;
    font-size: 0.85rem;
}

/* ============================================
   Widget Styles
   ============================================ */
.widget-title,
.widget-main-title {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    margin-bottom: 0;
}

.widget-content {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: var(--spacing-md);
}

/* Widget Tables */
.widget-tbl {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.widget-tbl td {
    background: var(--bg-card);
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.widget-tbl tr:last-child td {
    border-bottom: none;
}

.widget-tbl tr.titles td {
    background: var(--bg-darker);
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.widget-tbl tr:hover td {
    background: var(--bg-darker);
}

/* News Widget */
.widget-news-title {
    background: var(--gradient-accent);
    color: #ffffff;
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.widget-news-date {
    background: var(--bg-darker);
    color: var(--text-muted);
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.85rem;
}

.widget-news-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   Member Toolbar (Sticky)
   ============================================ */
.flotator {
    position: relative;
    z-index: 1000;
}

.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.member_toolbar {
    background: var(--bg-darker);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: var(--spacing-sm) 0;
}

.member_toolbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.member_toolbar ul li {
    padding: var(--spacing-xs) var(--spacing-sm);
    border-right: 1px solid var(--border-color);
}

.member_toolbar ul li:last-child {
    border-right: none;
}

.member_toolbar ul li a {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.member_toolbar ul li a:hover {
    color: var(--secondary);
}

.member_toolbar .mini_logo {
    display: none;
}

.sticky .member_toolbar .mini_logo {
    display: block;
}

/* ============================================
   Account / Member Sidebar
   ============================================ */
.member_sidebar {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.member_sidebar li {
    margin-bottom: 0;
}

.member_sidebar li div.title {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.member_sidebar li div.title:hover {
    filter: brightness(1.1);
}

.member_sidebar li ul li a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-fast);
}

.member_sidebar li ul li:last-child a {
    border-bottom: none;
}

.member_sidebar li ul li a:hover {
    background: var(--bg-darker);
    color: var(--secondary);
    padding-left: var(--spacing-lg);
}

/* Account Info Card */
.admin-info {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.admin-info .title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.calendar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
}

.calendar .top {
    background: var(--gradient-primary);
    padding: var(--spacing-lg);
    font-size: 2.5rem;
    font-weight: 700;
}

.calendar .bottom {
    background: var(--bg-darker);
    padding: var(--spacing-sm);
    font-weight: 500;
    color: var(--text-secondary);
}

/* ============================================
   Forms & Inputs
   ============================================ */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
select,
textarea {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
    transition: all var(--transition-fast);
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

/* Buttons */
input[type="button"],
input[type="submit"],
.btn,
button {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    padding: var(--spacing-sm) var(--spacing-xl);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

input[type="button"]:hover,
input[type="submit"]:hover,
.btn:hover,
button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

input[type="button"]:active,
input[type="submit"]:active,
.btn:active,
button:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--bg-darker);
    border-color: var(--primary);
    color: var(--text-primary);
}

.btn-disabled,
input[type="button"].btn-disabled,
input[type="submit"].btn-disabled {
    background: var(--bg-darker);
    color: var(--text-muted);
    cursor: not-allowed;
    box-shadow: none;
}

.btn-disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Forum Buttons */
input[type="button"].forumbtn,
input[type="submit"].forumbtn {
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
}

input[type="button"].forumbtn:hover,
input[type="submit"].forumbtn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
}

/* ============================================
   Alert Boxes
   ============================================ */
.error_box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-left: 4px solid #ef4444;
    color: #fca5a5;
    padding: var(--spacing-md);
    padding-left: var(--spacing-xl);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.success_box {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-left: 4px solid #22c55e;
    color: #86efac;
    padding: var(--spacing-md);
    padding-left: var(--spacing-xl);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.info_box {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-left: 4px solid #06b6d4;
    color: #67e8f9;
    padding: var(--spacing-md);
    padding-left: var(--spacing-xl);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.dashboardbox {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-left: 4px solid #f59e0b;
    color: #fcd34d;
    padding: var(--spacing-md);
    padding-left: var(--spacing-xl);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   Advertise / Shop Cart
   ============================================ */
.shopcart {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: var(--spacing-sm);
    transition: all var(--transition-normal);
}

.shopcart:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.shopcart .shoptitle {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
}

.shopcart .shopcontent {
    padding: var(--spacing-lg);
    text-align: center;
}

/* ============================================
   Ads Block Styles
   ============================================ */
.ad-block {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: var(--spacing-sm);
    transition: all var(--transition-normal);
}

.ad-block:hover {
    box-shadow: var(--shadow-glow);
}

.ad-title {
    background: var(--gradient-accent);
    color: var(--text-primary);
    padding: var(--spacing-sm) var(--spacing-md);
    font-weight: 600;
}

.ad-content {
    padding: var(--spacing-md);
    min-height: 80px;
}

.ad-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 0.85rem;
    color: #22c55e;
}

.adtimereset {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--secondary);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

/* ============================================
   PTSU Styles
   ============================================ */
.ptsu_content {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.ptsu_content:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.ptsu_title {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

.ptsu_descr {
    color: var(--text-secondary);
    margin: var(--spacing-sm) 0;
}

.ptsu_url {
    color: #22c55e;
    font-size: 0.85rem;
}

.ptsu_reward {
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: 700;
}

/* ============================================
   FAQ Styles
   ============================================ */
.faq {
    margin-bottom: var(--spacing-lg);
}

.faq_num {
    background: var(--gradient-primary);
    color: var(--text-primary);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    float: left;
    margin-right: var(--spacing-md);
}

.faq .faq_question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: var(--spacing-sm);
}

/* ============================================
   Forum Styles
   ============================================ */
.frm-title {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.frm-content {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: var(--spacing-md);
}

.frm-tbl {
    width: 100%;
    border-collapse: collapse;
}

.frm-tbl td {
    background: var(--bg-card);
    padding: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.frm_title a {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
}

.frm_title a:hover {
    color: var(--secondary-light);
}

.frm_description {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.forum_username {
    background: var(--gradient-accent);
    color: #ffffff;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

.forum_signature {
    border-top: 1px solid var(--border-color);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    color: var(--text-muted);
    font-style: italic;
}

.forum_top_bar ul li a {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    display: inline-block;
    transition: all var(--transition-fast);
}

.forum_top_bar ul li a:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--bg-darker);
}

/* ============================================
   Footer Styles
   ============================================ */
#footer {
    background: var(--bg-darker);
    padding: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

#footer .copyright {
    float: left;
    color: var(--text-muted);
    font-size: 0.9rem;
}

#footer .links {
    float: right;
}

#footer a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

#footer a:hover {
    color: var(--secondary);
}

/* Processor List */
.processorlist {
    text-align: center;
    padding: var(--spacing-xl) 0;
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.processorlist img {
    opacity: 0.7;
    transition: all var(--transition-normal);
    filter: grayscale(0.5);
}

.processorlist img:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.1);
}

/* ============================================
   Helpdesk Styles
   ============================================ */
.open-ticket-box,
.view-ticket-box {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    padding-left: calc(var(--spacing-lg) + 50px);
    min-height: 80px;
    position: relative;
}

.open-ticket-box::before,
.view-ticket-box::before {
    content: '📝';
    position: absolute;
    left: var(--spacing-lg);
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

.view-ticket-box::before {
    content: '📋';
}

fieldset {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

fieldset.ticket-user {
    border-color: var(--secondary);
    background: rgba(6, 182, 212, 0.1);
}

fieldset.ticket-admin {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

/* ============================================
   Virtual Keyboard
   ============================================ */
#keyboard {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    justify-content: center;
    padding: var(--spacing-md);
}

#keyboard li {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.9rem;
}

#keyboard li:hover {
    background: var(--primary);
    border-color: var(--primary);
}

#keyboard .space {
    width: 200px;
}

#keyboard .tab,
#keyboard .delete {
    width: 60px;
}

#keyboard .capslock,
#keyboard .return {
    width: 70px;
}

#keyboard .left-shift,
#keyboard .right-shift {
    width: 80px;
}

/* ============================================
   Utility Classes
   ============================================ */
.pointer { cursor: pointer; }
.floatleft { float: left; }
.floatright { float: right; }
.padding5 { padding: 5px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.disabled,
.disabledclass {
    opacity: 0.5;
    pointer-events: none;
}

.loader {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.l2loader2 {
    border: none !important;
    border-radius: 0 !important;
    animation: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.l2loader2::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Corner Radius Utilities */
.corner-all { border-radius: var(--radius-md); }
.corner-top { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.corner-bottom { border-radius: 0 0 var(--radius-md) var(--radius-md); }

/* History Status */
.item_completed { color: #22c55e; font-weight: 600; }
.item_pending { color: #f59e0b; font-weight: 600; }

/* Error Login */
.error_login {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.error_login .title {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fca5a5;
}

.error_login span {
    color: #ef4444;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    
    .home-box {
        width: 100%;
        float: none;
    }
    
    .featured_ads {
        width: 100%;
        float: none;
    }
}

@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        text-align: center;
    }
    
    .navbar ul li a {
        justify-content: center;
    }
    
    #logo {
        float: none;
        text-align: center;
    }
    
    .top-banner {
        float: none;
        text-align: center;
    }
    
    #footer .copyright,
    #footer .links {
        float: none;
        text-align: center;
        margin-bottom: var(--spacing-sm);
    }
    
    .site_title {
        font-size: 1.5rem;
        padding: var(--spacing-lg);
    }
    
    .site_content {
        padding: var(--spacing-md);
    }
    
    .statistics {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.5s ease forwards;
}

.animate-slide-down {
    animation: slideDown 0.5s ease forwards;
}

/* Stagger animation delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }

/* ============================================
   Print Styles
   ============================================ */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .wrapper {
        box-shadow: none;
        border: none;
    }
    
    .navbar,
    .member_toolbar,
    #footer {
        display: none;
    }
}
