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

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

:root {
    --bg: #070c07;
    --bg2: #0b140b;
    --bg3: #111e11;
    --glass: rgba(20, 25, 20, 0.55);
    --glass-border: rgba(85, 255, 85, 0.1);
    --glass-hover: rgba(30, 38, 30, 0.7);
    --text: #edf2ed;
    --text-dim: #778a77;
    --text-muted: #516351;
    --accent: #55FF55;
    --accent-hover: #3fec3f;
    --accent-glow: rgba(85, 255, 85, 0.25);
    --accent-subtle: rgba(85, 255, 85, 0.08);
    --cyan: #99FF55;
    --cyan-glow: rgba(153, 255, 85, 0.2);
    --green: #10b981;
    --green-glow: rgba(16, 185, 129, 0.15);
    --red: #ef4444;
    --red-glow: rgba(239, 68, 68, 0.15);
    --yellow: #f59e0b;
    --yellow-glow: rgba(245, 158, 11, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* === Background ambient glow === */
body::before {
    content: '';
    position: fixed;
    top: -40%;
    left: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(85, 255, 85, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    bottom: -40%;
    right: -20%;
    width: 70%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* === Glassmorphism Card === */
.glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.glass:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.10);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* === Layout === */
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* === Scrollbar === */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.14);
}

/* === Logo Image === */
.logo-img {
    height: 28px;
    width: auto;
    border-radius: 4px;
    filter: drop-shadow(0 0 8px rgba(85, 255, 85, 0.3));
    transition: filter var(--transition);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 14px rgba(85, 255, 85, 0.5));
}

.hero-logo {
    height: 48px;
    width: auto;
    vertical-align: middle;
    border-radius: 6px;
    filter: drop-shadow(0 0 16px rgba(85, 255, 85, 0.3));
    animation: heroLogoFloat 3s ease-in-out infinite;
}

@keyframes heroLogoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

/* === Spawner Static Image === */
.spawner-img-wrapper {
    width: 100%;
    height: 220px;
    position: relative;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(85, 255, 85, 0.06) 0%, transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.spawner-img {
    height: 160px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
    transition: transform 0.3s ease;
}

.spawner-img-wrapper:hover .spawner-img {
    transform: scale(1.05) translateY(-4px);
}

.spawner-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.03), transparent);
    pointer-events: none;
}

.spawner-card-info {
    padding: 20px 24px 24px;
}

.spawner-card-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.spawner-card-info .desc {
    color: var(--text-dim);
    font-size: 0.82rem;
    margin-bottom: 14px;
    line-height: 1.5;
}

.spawner-card-info .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 14px var(--accent-glow);
    margin-bottom: 14px;
}

.spawner-card.glass {
    padding: 0;
    overflow: hidden;
}

.spawner-card.glass:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(85, 255, 85, 0.15), 0 0 30px rgba(85, 255, 85, 0.05);
    transform: translateY(-3px);
}

/* === Header === */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 8, 15, 0.75);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom: 1px solid var(--glass-border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 16px;
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
    transition: opacity var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo span {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(85, 255, 85, 0.4));
}

/* === Navigation Tabs === */
.tabs {
    display: flex;
    gap: 2px;
    padding: 3px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
}

.tab {
    padding: 8px 18px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--text-dim);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    transition: all var(--transition);
    white-space: nowrap;
    position: relative;
}

.tab:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.tab.active {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 2px 12px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* === Hero === */
.hero {
    text-align: center;
    padding: 72px 0 48px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(85, 255, 85, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero h1 .accent {
    color: var(--accent);
    text-shadow: 0 0 14px var(--accent-glow);
}

.hero p {
    color: var(--text-dim);
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* === Product Grid === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    padding: 24px 0;
}

.product-card {
    padding: 24px;
    transition: all var(--transition);
    cursor: default;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(85, 255, 85, 0.3), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(85, 255, 85, 0.1);
}

.product-card .product-img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    background: var(--bg2);
}

.product-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.product-card .desc {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 16px;
    flex: 1;
    line-height: 1.5;
}

.product-card .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 14px var(--accent-glow);
    margin-bottom: 14px;
}

.product-card .price.formula {
    font-size: 0.95rem;
}

/* === Money Section === */
.money-calculator {
    max-width: 480px;
    margin: 0 auto;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.money-calculator::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.money-calculator h2 {
    text-align: center;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.money-calculator .subtitle {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 28px;
    font-size: 0.85rem;
}

.money-input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.money-input-group label {
    font-weight: 500;
    white-space: nowrap;
}

.money-input-group input {
    flex: 1;
}

.price-display {
    text-align: center;
    padding: 24px;
    background: var(--accent-subtle);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(85, 255, 85, 0.12);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.price-display::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(85, 255, 85, 0.05), rgba(6, 182, 212, 0.03));
    pointer-events: none;
}

.price-display .label {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    font-weight: 600;
    position: relative;
}

.price-display .amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 14px var(--accent-glow);
    position: relative;
    letter-spacing: -0.02em;
}

/* === Buttons === */
.btn {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    box-shadow: 0 2px 8px var(--accent-glow);
}

.btn-primary:hover {
    box-shadow: 0 4px 20px var(--accent-glow), 0 0 40px rgba(85, 255, 85, 0.15);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--glass);
    color: var(--text);
    border-color: var(--glass-border);
}

.btn-secondary:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.12);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.78rem;
    border-radius: var(--radius-xs);
}

.btn-full {
    width: 100%;
}

.btn-green {
    background: linear-gradient(135deg, var(--green), #059669);
    color: #fff;
    box-shadow: 0 2px 8px var(--green-glow);
}

.btn-green:hover {
    box-shadow: 0 4px 20px var(--green-glow);
}

.btn-red {
    background: linear-gradient(135deg, var(--red), #dc2626);
    color: #fff;
    box-shadow: 0 2px 8px var(--red-glow);
}

.btn-red:hover {
    box-shadow: 0 4px 20px var(--red-glow);
}

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* === Forms === */
input,
select,
textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 11px 16px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    width: 100%;
    outline: none;
    transition: all var(--transition);
}

input::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-subtle), 0 0 20px rgba(85, 255, 85, 0.06);
    background: rgba(255, 255, 255, 0.04);
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b6b80' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-bottom: 6px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-group {
    margin-bottom: 18px;
}

/* === Cart / Checkout === */
.cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(8, 8, 15, 0.92);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-top: 1px solid var(--glass-border);
    padding: 14px 24px;
    display: none;
    z-index: 100;
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cart-bar.visible {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-bar .cart-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-count {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 99px;
    box-shadow: 0 2px 8px var(--accent-glow);
}

/* === Modal === */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 200;
    align-items: center;
    justify-content: center;
}

.modal-overlay.open {
    display: flex;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal {
    background: var(--bg2);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 36px;
    max-width: 520px;
    width: 92%;
    max-height: 85vh;
    overflow-y: auto;
    animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
    position: relative;
}

@keyframes modalIn {
    from {
        transform: scale(0.95) translateY(16px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(85, 255, 85, 0.4), transparent);
}

.modal h2 {
    margin-bottom: 24px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.modal-close {
    float: right;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--text);
}

/* === Order Tracking === */
.order-lookup {
    max-width: 420px;
    margin: 48px auto;
    text-align: center;
}

.order-lookup h2 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* === Payment Methods === */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0;
}

.payment-option {
    padding: 16px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all var(--transition);
}

.payment-option.selected {
    border-color: var(--accent);
    background: var(--accent-subtle);
    box-shadow: 0 0 0 1px var(--accent), 0 0 20px rgba(85, 255, 85, 0.06);
}

.payment-option .icon {
    font-size: 1.5rem;
    width: 32px;
    text-align: center;
}

.payment-option .info h4 {
    font-size: 0.92rem;
    margin-bottom: 2px;
    font-weight: 600;
}

.payment-option .info p {
    font-size: 0.78rem;
    color: var(--text-dim);
}

/* === Status Badges === */
.badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 99px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-pending {
    background: var(--yellow-glow);
    color: var(--yellow);
}

.badge-paid {
    background: var(--green-glow);
    color: var(--green);
}

.badge-completed {
    background: var(--green-glow);
    color: var(--green);
}

.badge-cancelled {
    background: var(--red-glow);
    color: var(--red);
}

.badge-processing {
    background: rgba(85, 255, 85, 0.15);
    color: var(--accent);
}

/* === Section content === */
.section {
    display: none;
    padding-bottom: 100px;
    animation: sectionIn 0.35s ease;
}

@keyframes sectionIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section.active {
    display: block;
}

/* === Empty state === */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-dim);
}

.empty-state .icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.6;
}

/* === Footer === */
footer {
    text-align: center;
    padding: 48px 0;
    color: var(--text-muted);
    font-size: 0.78rem;
    border-top: 1px solid var(--glass-border);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

/* === Base images gallery === */
.base-images {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-bottom: 12px;
    scrollbar-width: thin;
}

.base-images img {
    height: 120px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    transition: transform var(--transition);
}

.base-images img:hover {
    transform: scale(1.04);
}

/* === Responsive === */
@media (max-width: 768px) {
    .tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tab {
        padding: 8px 14px;
        font-size: 0.78rem;
    }

    .hero {
        padding: 48px 0 32px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        flex-direction: column;
        gap: 12px;
    }

    .money-calculator {
        padding: 24px;
    }
}

/* === Admin Specific === */
.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--bg2);
    border-right: 1px solid var(--glass-border);
    padding: 24px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.admin-sidebar .logo {
    margin-bottom: 36px;
    font-size: 1.2rem;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: var(--text-dim);
    text-decoration: none;
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition);
}

.admin-nav a:hover {
    background: var(--glass);
    color: var(--text);
}

.admin-nav a.active {
    background: var(--accent-subtle);
    color: var(--accent);
    border: 1px solid rgba(85, 255, 85, 0.12);
}

.admin-content {
    padding: 36px;
    overflow-y: auto;
    position: relative;
}

.admin-content h1 {
    font-size: 1.5rem;
    margin-bottom: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 36px;
}

.stat-card {
    padding: 22px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(85, 255, 85, 0.2), transparent);
}

.stat-card .stat-label {
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.stat-card .stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 6px;
    letter-spacing: -0.03em;
}

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

.data-table th {
    text-align: left;
    padding: 10px 16px;
    font-size: 0.72rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    border-bottom: 1px solid var(--glass-border);
}

.data-table td {
    padding: 14px 16px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.025);
}

.data-table tr {
    transition: background var(--transition);
}

.data-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Admin login */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
}

.login-page::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(85, 255, 85, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.login-box {
    padding: 44px;
    max-width: 400px;
    width: 92%;
    position: relative;
}

.login-box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.login-box h1 {
    text-align: center;
    margin-bottom: 28px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
    }
}

/* === Utility animations === */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.loading {
    animation: pulse 1.5s infinite ease-in-out;
}

/* === Selection === */
::selection {
    background: rgba(85, 255, 85, 0.3);
    color: #fff;
}