:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --text-muted: #888888;
    --accent-gradient: linear-gradient(135deg, #ffffff, #b9f2ff, #9de3ff, #ffffff);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.1);
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color); /* Prevent white flash */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #050505; 
}
::-webkit-scrollbar-thumb {
    background: #333; 
    border-radius: 5px;
    border: 2px solid #050505;
}
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

body {
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Grain Overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: 0.3s;
}

header.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--card-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

nav a:hover, nav a.active {
    color: #fff;
}

.btn-small {
    padding: 8px 16px;
    border: 1px solid var(--card-border);
    border-radius: 20px;
    font-size: 0.85rem;
    transition: 0.3s;
}

.btn-small:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent-gradient);
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(185, 242, 255, 0.3);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--nav-height);
    overflow: hidden;
    /* Background removed to allow global ambient background */
}

/* Global Ambient Background */
.ambient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color); /* Moved from body */
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Diamond Crystalline Light Effect */
.ambient-background::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        #000000 0deg,
        rgba(185, 242, 255, 0.05) 60deg, /* Diamond Blue Light */
        #000000 120deg,
        rgba(255, 255, 255, 0.1) 180deg, /* White */
        #000000 240deg,
        rgba(157, 227, 255, 0.05) 300deg, /* Diamond Blue Dark */
        #000000 360deg
    );
    filter: blur(80px);
    animation: crystalRotate 40s linear infinite;
    animation-delay: var(--delay-1, 0s);
    z-index: 0;
}

/* Diamond Highlights */
.ambient-background::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%),
        radial-gradient(circle at 20% 20%, rgba(185, 242, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(157, 227, 255, 0.1) 0%, transparent 40%);
    filter: blur(60px);
    z-index: 0;
    animation: shimmerPulse 10s ease-in-out infinite alternate;
    animation-delay: var(--delay-2, 0s);
}

@keyframes crystalRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes shimmerPulse {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.2;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(185, 242, 255, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Dashboard New Styles */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
    padding-top: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Sidebar */
.sidebar {
    width: 250px;
    flex-shrink: 0;
    padding-right: 30px;
    border-right: 1px solid var(--card-border);
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    height: calc(100vh - 100px);
    position: sticky;
    top: 100px;
}

.sidebar-group {
    margin-bottom: 40px;
}

.sidebar-title {
    font-size: 0.7rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sidebar-link {
    display: block;
    color: #888;
    padding: 10px 0;
    font-size: 0.9rem;
    transition: 0.2s;
}

.sidebar-link:hover, .sidebar-link.active {
    color: #fff;
    padding-left: 5px;
}

.sidebar-link.active {
    color: #b9f2ff;
    font-weight: 600;
}

.sidebar-footer {
    margin-top: auto;
}

.user-mini-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--card-border);
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
    border: 1px solid #333;
}

.user-info .user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}

.user-info .user-status {
    font-size: 0.8rem;
    color: #b9f2ff;
}

/* Main Dashboard */
.dashboard-main {
    flex-grow: 1;
    padding-bottom: 50px;
}

.dashboard-header {
    margin-bottom: 40px;
}

.dashboard-header h1 {
    font-size: 2.5rem;
    font-family: serif; /* Matching screenshot style */
    margin-bottom: 10px;
}

.dashboard-header p {
    color: #888;
    margin-bottom: 15px;
}

.tags-row {
    display: flex;
    gap: 10px;
}

.tag {
    font-size: 0.8rem;
    color: #b9f2ff;
    background: rgba(185, 242, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
}

.dashboard-card {
    background: #080808;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

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

.card-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #eee;
}

.info-icon {
    color: #444;
    cursor: pointer;
}

/* Heatmap */
.heatmap-container {
    display: grid;
    grid-template-columns: repeat(53, 1fr); /* Weeks */
    grid-template-rows: repeat(7, 1fr); /* Days */
    gap: 3px;
    height: 120px;
}

.heatmap-cell {
    background: #161616;
    border-radius: 1px;
}

.heatmap-cell.l1 { background: rgba(185, 242, 255, 0.2); }
.heatmap-cell.l2 { background: rgba(185, 242, 255, 0.4); }
.heatmap-cell.l3 { background: rgba(185, 242, 255, 0.7); }
.heatmap-cell.l4 { background: #b9f2ff; box-shadow: 0 0 5px #b9f2ff; }

.heatmap-legend {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 0.75rem;
    color: #666;
}

.legend-squares {
    display: flex;
    gap: 3px;
}

.sq { width: 10px; height: 10px; border-radius: 1px; }
.sq.l0 { background: #161616; }
.sq.l1 { background: rgba(185, 242, 255, 0.2); }
.sq.l2 { background: rgba(185, 242, 255, 0.4); }
.sq.l3 { background: rgba(185, 242, 255, 0.7); }
.sq.l4 { background: #b9f2ff; }

/* Stats Bar */
.stat-big-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-big-number .unit {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.progress-multi-bar {
    height: 25px;
    background: #161616;
    border-radius: 4px;
    display: flex;
    overflow: hidden;
    margin-bottom: 15px;
}

.bar-segment { height: 100%; }
.bar-segment.seg-1 { background: #333; }
.bar-segment.seg-2 { background: #555; }
.bar-segment.seg-3 { background: #777; }

.bar-legend {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: #888;
}

.legend-item { display: flex; align-items: center; gap: 5px; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.d1 { background: #333; }
.dot.d2 { background: #555; }
.dot.d3 { background: #777; }

/* Grid 2 Columns */
.dashboard-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Fav Location */
.fav-location-content {
    text-align: center;
    padding: 20px 0;
}

.loc-icon { font-size: 3rem; margin-bottom: 10px; }
.loc-name { font-size: 1.2rem; font-weight: 700; color: #b9f2ff; }
.loc-sub { color: #666; font-size: 0.9rem; margin-bottom: 10px; }
.loc-stat { color: #888; font-size: 0.9rem; }
.loc-stat strong { color: #fff; font-size: 1.2rem; }

/* Protocols */
.protocol-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.proto-item {
    font-size: 0.9rem;
}

.proto-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    color: #ccc;
}

.proto-count { color: #b9f2ff; }

.proto-bar {
    height: 6px;
    background: #161616;
    border-radius: 3px;
    overflow: hidden;
}

.proto-bar .fill {
    height: 100%;
    background: linear-gradient(90deg, #161616, #b9f2ff);
}

/* Wave Graph */
.wave-graph-container {
    height: 150px;
    position: relative;
    border-bottom: 1px solid #222;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 10px;
}

.wave-point {
    width: 6px;
    height: 6px;
    background: #333;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
}

.wave-point.active {
    background: #b9f2ff;
    box-shadow: 0 0 10px #b9f2ff;
    z-index: 2;
}

.time-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    bottom: -25px;
    font-size: 0.75rem;
    color: #555;
}

.dashboard-footer-note {
    margin-top: 30px;
    font-size: 0.75rem;
    color: #444;
    text-align: center;
}

/* Responsive Dashboard */
@media (max-width: 900px) {
    .dashboard-layout {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        height: auto;
        position: static;
        border-right: none;
        border-bottom: 1px solid #222;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    .dashboard-grid-2 {
        grid-template-columns: 1fr;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
    transform: translate(var(--mouse-x, 0px), var(--mouse-y, 0px));
}

.card:hover {
    transform: translate(var(--mouse-x, 0px), var(--mouse-y, 0px)) translateY(-10px);
    border-color: #b9f2ff;
    box-shadow: 0 10px 40px rgba(157, 227, 255, 0.2);
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.5s;
}

.card:hover::before {
    left: 100%;
}

.card h3 {
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features-list {
    margin: 20px 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 10px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.features-list li::before {
    content: "✓";
    color: #b9f2ff;
    margin-right: 10px;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    color: #fff;
}

/* Testimonials Marquee */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #050505, transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #050505, transparent);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.marquee-track.reverse {
    animation-direction: reverse;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    width: 350px;
    flex-shrink: 0;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

.review-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(30, 30, 30, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.review-text {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.author-name {
    font-weight: 600;
    color: #fff;
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.8rem;
    color: #888;
}

/* Futuristic Wave Footer */
#futuristic-footer {
    position: relative;
    height: 60vh;
    background: linear-gradient(to bottom, #050505 0%, #02101a 100%); /* Black to Dark Blue */
    overflow: hidden;
    margin-top: 100px;
}

.footer-gradient-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), transparent);
    z-index: 2;
    pointer-events: none;
}

.footer-content-overlay {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none; /* Let clicks pass to canvas where empty */
}

.huge-text-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.huge-text {
    font-size: 15vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    line-height: 1;
    cursor: default;
    text-transform: uppercase;
    letter-spacing: -10px;
    user-select: none;
    text-align: center;
    pointer-events: auto;
}

.letter {
    display: inline-block;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.footer-bottom-row {
    padding: 40px 5%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    pointer-events: auto;
    background: linear-gradient(to top, #000 0%, transparent 100%);
}

.footer-logo-small {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #b9f2ff;
    text-shadow: 0 0 10px rgba(185, 242, 255, 0.5);
}

.copyright {
    color: #444;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .huge-text {
        font-size: 20vw;
        letter-spacing: -2px;
    }
    .footer-bottom-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Accordion */
.accordion-item {
    border-bottom: 1px solid var(--card-border);
    margin-bottom: 10px;
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: #fff;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-muted);
}

/* Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

input, textarea, select {
    width: 100%;
    padding: 15px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--card-border);
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    color: var(--text-muted);
    transition: 0.3s;
}

.auth-tab.active {
    color: #fff;
    border-bottom: 2px solid #fff;
}

/* Admin Table */
.admin-table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    min-width: 600px;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
}

th {
    color: var(--text-muted);
    font-weight: 500;
}

tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status.active {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.status.inactive {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.admin-header-title h2 {
    font-size: 1.9rem;
    margin-bottom: 6px;
}

.admin-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.status-bar {
    background: radial-gradient(circle at top left, rgba(185, 242, 255, 0.08), transparent 55%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 22px 24px;
    margin-bottom: 24px;
}

.status-item {
    min-width: 120px;
}

.status-item div:first-child {
    font-size: 1.6rem;
}

.store-status {
    background: rgba(8, 8, 8, 0.92);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 18px 18px 16px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.store-status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.store-status-row .badge {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.btn-xs {
    font-size: 0.8rem;
    border-radius: 999px;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
}

.admin-card {
    background: #080808;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 18px 18px 16px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.admin-card h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.admin-card:hover {
    transform: translateY(-3px);
    border-color: rgba(185, 242, 255, 0.8);
    box-shadow: 0 18px 40px rgba(185, 242, 255, 0.16);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
        z-index: 1001;
        margin-left: 20px;
    }
    
    nav {
        position: relative;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 60%;
        max-width: 260px;
        background: rgba(5, 5, 5, 0.96);
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 80px;
        transition: 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
        margin: 0;
        list-style: none;
    }
    
    nav.active ul {
        right: 0;
    }
    
    nav ul li {
        margin: 12px 0;
        width: 100%;
    }
    
    nav ul a {
        font-size: 1.05rem;
        display: block;
        padding: 8px 18px;
        text-align: left;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    header {
        padding: 15px 0;
    }
    
    header.scrolled {
        padding: 10px 0;
    }
    
    nav:not(.active) ul {
        display: none;
    }
}

@media (max-width: 480px) {
    nav ul {
        width: 85%;
    }
    
    .menu-toggle {
        font-size: 1.5rem;
    }
    
    nav ul a {
        font-size: 1.1rem;
    }
}
