:root {
    --primary-color: #ff3b3b;
    /* Red accent */
    --primary-hover: #e62e2e;
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --text-white: #ffffff;
    --text-gray: #a3a3a3;
    --border-color: #262626;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: #030303;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Floating Ambient Glows */
body::before,
body::after {
    content: '';
    position: fixed;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.08), transparent 70%);
    filter: blur(100px);
    z-index: -2;
    animation: floatGlow 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

body::before {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(255, 59, 59, 0.12), transparent 60%);
}

body::after {
    bottom: -10%;
    right: -10%;
    animation-delay: -10s;
    background: radial-gradient(circle, rgba(100, 20, 20, 0.15), transparent 60%);
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    50% {
        transform: translate(50px, 20px) scale(1.1) rotate(5deg);
    }

    100% {
        transform: translate(-20px, 50px) scale(0.9) rotate(-5deg);
    }
}

/* Particles Container */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

/* Swiper Slide Fix */
.swiper-slide {
    width: 300px !important;
    height: auto;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

/* Typed Cursor */
.typed-cursor {
    color: var(--primary-color);
    font-size: 4rem;
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 59, 59, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 59, 59, 0.6);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 59, 59, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.section-title span {
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(255, 59, 59, 0.3);
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px rgba(255, 59, 59, 0.5));
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-gray);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-white);
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-btn {
    padding: 10px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
}

.cart-btn:hover {
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 59, 59, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 59, 59, 0.2);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.stat h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.stat p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.hero-image {
    flex: 1;
    display: flex;
    pointer-events: none;
    /* Allows clicking through the container */
}

.toast {
    position: relative;
    pointer-events: auto;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    min-width: 300px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideIn 0.3s forwards;
    opacity: 0;
    /* Star hidden then animate in */
}

.toast.success {
    border-left-color: #00ff88;
}

.toast.error {
    border-left-color: #ff3b3b;
}

.toast i {
    font-size: 1.2rem;
}

.toast.success i {
    color: #00ff88;
}

.toast.error i {
    color: #ff3b3b;
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Cards Glassmorphism */
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Glow Pulse */
@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.7;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

.hero-glow {
    animation: pulseGlow 5s infinite ease-in-out;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 59, 59, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Categories */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    overflow: hidden;
}

.category-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.category-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.category-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.category-card.hot {
    border-color: rgba(255, 59, 59, 0.5);
    box-shadow: 0 0 20px rgba(255, 59, 59, 0.1);
}

.tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tag.hot {
    background: var(--primary-color);
    color: white;
}

.tag.new {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
}

/* Auth Pages */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 50px;
}

.auth-container {
    display: flex;
    max-width: 1000px;
    width: 100%;
    background: var(--bg-card);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.auth-left {
    flex: 1;
    padding: 60px;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-right {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.divider {
    text-align: center;
    color: var(--text-gray);
    margin: 20px 0;
    position: relative;
    font-size: 0.9rem;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: var(--border-color);
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-gray);
    margin-top: 20px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-col h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding: 120px 0 60px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .auth-container {
        flex-direction: column;
    }

    .auth-left {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
}

/* Toast Notifications (Restored) */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999999 !important;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.toast {
    position: relative;
    pointer-events: auto;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 16px 24px;
    border-radius: 12px;
    color: white;
    min-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    animation: slideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast.success {
    border-left-color: #00e676;
}

.toast.success i {
    color: #00e676;
}

.toast.error {
    border-left-color: #ff1744;
}

.toast.error i {
    color: #ff1744;
}

@keyframes slideIn {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* User Dropdown */
.user-dropdown {
    position: relative;
    display: inline-block;
}

.user-btn {
    background: var(--bg-card);
    padding: 8px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-white);
}

.user-btn:hover {
    border-color: var(--primary-color);
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: var(--bg-card);
    min-width: 200px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    margin-top: 10px;
    /* Visual gap */
}

/* Invisible bridge */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.dropdown-content a {
    color: var(--text-white);
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    /* Flex is good for icon + text alignment */
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 0.9rem;
    width: 100%;
    /* Ensure full width */
    box-sizing: border-box;
    /* Include padding in width */
    white-space: nowrap;
    /* Prevent wrapping */
}

.dropdown-content a:hover {
    background: rgba(255, 59, 59, 0.1);
    color: var(--primary-color);
}

.user-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Pricing Section */
.pricing-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 50px 30px;
    /* Reduced padding */
    height: 100%;
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
    padding: 16px 20px;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 30px;
    /* Pill shape */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.pricing-card .btn-outline:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 59, 59, 0.4);
    transform: translateY(-3px);
}

.pricing-card .btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 59, 59, 0.4);
}

.pricing-card .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 59, 59, 0.6);
}

.price-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* Thinner border */
    padding-bottom: 25px;
    width: 100%;
}

.price-header h3 {
    font-size: 1.5rem;
    /* Slightly smaller font */
    color: var(--text-white);
    margin-bottom: 15px;
    font-weight: 600;
    /* Semi-bold */
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.price {
    font-size: 3.5rem;
    /* Smaller price */
    font-weight: 700;
    /* Bold */
    color: var(--text-white);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-shadow: 0 0 15px rgba(255, 59, 59, 0.2);
}

.price span {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 500;
    align-self: flex-end;
    margin-bottom: 6px;
}

.features-list {
    margin-bottom: 40px;
    width: 100%;
    text-align: left;
    padding-left: 10px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-gray);
    font-size: 1.05rem;
    /* Slightly smaller text */
    font-weight: 500;
    transition: var(--transition);
}

.features-list li:hover {
    color: var(--text-white);
    transform: translateX(6px);
    font-weight: 600;
}

.features-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    /* Slightly smaller icons */
    background: rgba(255, 59, 59, 0.1);
    min-width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 59, 59, 0.2);
}

.popular-tag {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 24px;
    /* Slightly smaller tag */
    border-radius: 24px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(255, 59, 59, 0.4);
    white-space: nowrap;
    z-index: 5;
    letter-spacing: 0.8px;
}

/* Featured Card specific */
.card.featured {
    border: 1px solid var(--primary-color);
    /* Original border width */
    background: rgba(255, 59, 59, 0.05);
    box-shadow: 0 0 40px rgba(255, 59, 59, 0.15);
}

@media (min-width: 992px) {
    .card.featured {
        transform: scale(1.1);
        /* Reduced scale */
        z-index: 2;
        margin: 0 12px;
    }
}

/* Status Select Styles */
.select-wrapper {
    position: relative;
    display: inline-block;
    width: 140px;
}

.status-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 8px 32px 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    color: white;
    background-color: var(--bg-dark);
    transition: var(--transition);
    width: 100%;
    outline: none;
}

.select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Status Colors */
.status-pending {
    background-color: #ff9800 !important;
    /* Orange */
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
}

.status-processing {
    background-color: #2196f3 !important;
    /* Blue */
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.status-completed {
    background-color: #4caf50 !important;
    /* Green */
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.status-cancelled {
    background-color: #f44336 !important;
    /* Red */
    box-shadow: 0 4px 10px rgba(244, 67, 54, 0.3);
}

.status-select option {
    background-color: var(--bg-card);
    color: white;
}

/* Hero Visual */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

.hero-card {
    width: 380px;
    height: 380px;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotateY(-10deg) rotateX(5deg);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 59, 59, 0.1),
        inset 0 0 20px rgba(255, 59, 59, 0.05);
    transition: transform 0.5s ease;
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-card:hover {
    transform: rotateY(0) rotateX(0) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 59, 59, 0.3),
        inset 0 0 30px rgba(255, 59, 59, 0.1);
}

.hero-card-content {
    text-align: center;
    z-index: 2;
}

.hero-main-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 25px rgba(255, 59, 59, 0.6));
    animation: iconPulse 3s infinite alternate;
}

.hero-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

/* Floating Elements */
.floating-icon {
    position: absolute;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 59, 59, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 3;
}

.float-1 {
    width: 70px;
    height: 70px;
    top: -20px;
    right: -20px;
    font-size: 1.5rem;
    animation: floatOrb 5s ease-in-out infinite;
}

.float-2 {
    width: 60px;
    height: 60px;
    bottom: -10px;
    left: -30px;
    font-size: 1.2rem;
    animation: floatOrb 7s ease-in-out infinite reverse;
}

.float-3 {
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: -40px;
    font-size: 1rem;
    animation: floatOrb 6s ease-in-out infinite 1s;
    background: rgba(255, 59, 59, 0.1);
    border-color: var(--primary-color);
}

@keyframes heroFloat {

    0%,
    100% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(-20px);
    }
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 59, 59, 0.5));
    }

    100% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 35px rgba(255, 59, 59, 0.8));
    }
}

/* Admin Panel Sidebar Layout */
.admin-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
    /* Navbar height */
}

.sidebar {
    width: 260px;
    background: var(--bg-card);
    border-right: 1px solid var(--border-color);
    padding: 20px;
    position: fixed;
    height: calc(100vh - 80px);
    /* Height minus navbar */
    overflow-y: auto;
    left: 0;
    bottom: 0;
}

.main-content {
    flex: 1;
    margin-left: 260px;
    /* Sidebar width */
    padding: 30px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-gray);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 500;
}

.sidebar-link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(255, 59, 59, 0.1);
    color: var(--primary-color);
}

.sidebar-link.active {
    background: rgba(255, 59, 59, 0.15);
    border-right: 3px solid var(--primary-color);
}

.page-header {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-title {
    font-size: 1.8rem;
    font-weight: 700;
}

.stat-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 59, 59, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}