/* ========================================
   Backlinks Pro - Premium SEO Backlink Services
   Color Palette: Pink + Violet Theme
   Design: Modern Pink & Violet Theme
   ======================================== */

/* CSS Variables */
:root {
    /* Brand Colors */
    --color-primary: #2D1B4E;
    --color-primary-light: #4A2C6D;
    --color-dark: #1A0F2E;

    /* Accent Colors */
    --color-green: #FF69B4;
    --color-green-dark: #E75A9F;
    --color-orange: #DA70D6;
    --color-orange-dark: #C05BC0;
    --color-purple: #9D4EDD;
    --color-purple-light: #C77DFF;

    /* Background Colors */
    --bg-dark: #2D1B4E;
    --bg-darker: #1A0F2E;
    --bg-card: #4A2C6D;
    --bg-card-hover: #5D3A85;

    /* Text Colors */
    --text-primary: #F0E6F6;
    --text-secondary: #D4BFE0;
    --text-muted: #A68CB8;

    /* Border & Effects */
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);

    /* Spacing */
    --section-padding: 120px 0;
    --container-width: 1240px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.highlight {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary-light);
    color: var(--text-primary);
    border: 2px solid var(--color-primary-light);
}

.btn-primary:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: var(--color-green);
    color: var(--bg-dark);
    border: 2px solid var(--color-green);
}

.btn-accent:hover {
    background: var(--color-green-dark);
    border-color: var(--color-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(216, 255, 127, 0.3);
}

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

.btn-outline:hover {
    background: var(--bg-card);
    border-color: var(--color-green);
    color: var(--color-green);
}

.btn-large {
    padding: 18px 42px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #4A2C6D 0%, #5D3A85 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 105, 180, 0.3);
    padding: 20px 0;
    z-index: 1000;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--color-green);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Dropdown Menu */
.nav-links > li {
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-toggle svg {
    width: 14px;
    height: 14px;
    transition: var(--transition);
}

.dropdown.active .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: -20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 0;
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    pointer-events: none;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--bg-card-hover);
    color: var(--color-green);
    padding-left: 28px;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 8px 0 8px 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-toggle svg {
        transform: rotate(0deg);
    }

    .dropdown.active .dropdown-toggle svg {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 10px 20px;
        font-size: 14px;
    }

    .dropdown-menu a:hover {
        padding-left: 24px;
    }
}

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(216, 255, 127, 0.1);
    color: var(--color-green);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(216, 255, 127, 0.2);
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-green);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card-icon.green {
    background: rgba(216, 255, 127, 0.15);
    color: var(--color-green);
}

.card-icon.purple {
    background: rgba(149, 4, 255, 0.15);
    color: var(--color-purple);
}

.card-icon.orange {
    background: rgba(252, 168, 49, 0.15);
    color: var(--color-orange);
}

.floating-card span {
    font-weight: 600;
    font-size: 16px;
}

.card-1 {
    top: 60px;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 180px;
    right: 40px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 80px;
    left: 60px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(149, 4, 255, 0.15);
    color: var(--color-purple);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Services Section */
.services {
    background: var(--bg-darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-green);
}

.service-card.featured {
    border: 2px solid var(--color-green);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-green);
    color: var(--bg-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-icon.green {
    background: rgba(216, 255, 127, 0.15);
    color: var(--color-green);
}

.service-icon.purple {
    background: rgba(149, 4, 255, 0.15);
    color: var(--color-purple);
}

.service-icon.orange {
    background: rgba(252, 168, 49, 0.15);
    color: var(--color-orange);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 15px;
}

.service-features .check {
    color: var(--color-green);
    font-weight: 700;
    font-size: 18px;
}

/* Packages Section */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.package-card {
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    transition: var(--transition);
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border-color: var(--color-green);
    background: var(--bg-card-hover);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-orange) 100%);
    color: var(--bg-dark);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.package-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.package-header h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.package-description {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 24px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 24px;
    color: var(--text-secondary);
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--color-green);
}

.period {
    font-size: 18px;
    color: var(--text-muted);
}

.package-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 15px;
}

.package-features svg {
    width: 20px;
    height: 20px;
    color: var(--color-green);
    flex-shrink: 0;
}

/* Process Section */
.process {
    background: var(--bg-darker);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    align-items: start;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-orange) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--bg-dark);
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 16px;
}

/* Results Section */
.results {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    text-align: center;
}

.result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-number {
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.result-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    margin: 20px 0 24px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-green);
}

.contact-item span {
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    background: var(--bg-darker);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-green);
    background: var(--bg-card);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 24px 0;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-green);
    color: var(--bg-dark);
    transform: translateY(-4px);
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-green);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-legal a:hover {
    color: var(--color-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 400px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links > li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links > li:last-child {
        border-bottom: none;
    }

    .nav-links > li > a {
        display: block;
        padding: 16px 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding: 140px 0 80px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services-grid,
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }

    .result-number {
        font-size: 48px;
    }
}

/* ========================================
   Dashboard Styles
   ======================================== */

/* Dashboard Layout */
.dashboard-body {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    min-height: 100vh;
}

.dashboard-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 32px 48px;
}

/* Dashboard Navigation */
.dashboard-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.dashboard-nav a {
    padding: 12px 24px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
    color: var(--color-green);
    background: rgba(255, 105, 180, 0.1);
}

/* Balance Chip */
.balance-chip {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-orange) 100%);
    color: var(--bg-dark);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-md);
    margin-left: auto;
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-primary-light) 100%);
    color: var(--text-primary);
    padding: 48px;
    border-radius: var(--radius-lg);
    margin-bottom: 48px;
    box-shadow: var(--shadow-lg);
}

.welcome-banner h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.welcome-banner p {
    font-size: 18px;
    opacity: 0.95;
}

/* Onboarding Checklist */
.onboarding-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 48px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(255, 105, 180, 0.2);
}

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

.onboarding-header h2 {
    font-size: 24px;
    font-weight: 700;
}

.progress-text {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-darker);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.checklist-item:hover {
    background: var(--bg-card-hover);
    transform: translateX(4px);
    border-color: rgba(255, 105, 180, 0.3);
}

.checklist-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.checklist-item.completed .checklist-icon {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-orange) 100%);
    color: var(--bg-dark);
}

.checklist-content {
    flex: 1;
}

.checklist-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.checklist-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: rgba(255, 105, 180, 0.3);
}

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

.stat-value {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-change {
    font-size: 14px;
    color: var(--text-muted);
}

/* Action Cards */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.action-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.action-card:hover {
    border-color: var(--color-green);
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.action-card.primary {
    border-color: var(--color-green);
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-primary-light) 100%);
}

.action-card.primary:hover {
    box-shadow: 0 20px 40px rgba(157, 78, 221, 0.4);
}

.action-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.action-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.action-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.action-card.primary .action-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Section Header */
.section-header {
    margin-bottom: 32px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Data Table */
.data-table {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    overflow-x: auto;
}

.data-table table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead tr {
    border-bottom: 2px solid var(--border-color);
}

.data-table th {
    text-align: left;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.data-table tbody tr:hover {
    background: rgba(255, 105, 180, 0.05);
}

.data-table td {
    padding: 16px 12px;
    color: var(--text-primary);
}

/* Status Badges */
.status-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.status-pending {
    background: rgba(218, 112, 214, 0.2);
    color: var(--color-orange);
}

.status-processing {
    background: rgba(157, 78, 221, 0.2);
    color: var(--color-purple);
}

.status-completed {
    background: rgba(255, 105, 180, 0.2);
    color: var(--color-green);
}

.status-cancelled {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.status-active {
    background: rgba(255, 105, 180, 0.2);
    color: var(--color-green);
}

.status-suspended {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 32px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border-color);
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 24px;
    opacity: 0.5;
}

.empty-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.empty-desc {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 16px;
}

/* Form Elements for Dashboard */
.form-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    margin-bottom: 48px;
}

.form-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.form-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-darker);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-green);
    background: var(--bg-card);
}

.form-inline {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.form-inline .form-group {
    flex: 1;
}

/* Balance Overview */
.balance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.add-funds-card {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 48px;
    color: var(--text-primary);
    box-shadow: var(--shadow-lg);
}

.add-funds-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.add-funds-card p {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 32px;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.amount-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.amount-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
}

/* Transaction Types */
.type-deposit {
    background: rgba(255, 105, 180, 0.2);
    color: var(--color-green);
}

.type-withdrawal {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.type-bonus {
    background: rgba(157, 78, 221, 0.2);
    color: var(--color-purple);
}

.type-order {
    background: rgba(218, 112, 214, 0.2);
    color: var(--color-orange);
}

/* Success/Error Messages */
.message-success {
    background: rgba(255, 105, 180, 0.15);
    border: 1px solid var(--color-green);
    color: var(--color-green);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}

.message-error {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .dashboard-main {
        padding: 100px 16px 24px;
    }

    .dashboard-nav {
        flex-wrap: wrap;
    }

    .stats-grid,
    .actions-grid {
        grid-template-columns: 1fr;
    }

    .welcome-banner {
        padding: 32px 24px;
    }

    .welcome-banner h1 {
        font-size: 28px;
    }

    .stat-value {
        font-size: 28px;
    }
}
