/* ApexHub Modern CSS Reset & Theme Variable System */
:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Theme Colors (Neon Dark Theme) */
    --color-bg: #0b0d16;
    --color-panel: rgba(17, 20, 34, 0.55);
    --color-panel-hover: rgba(26, 31, 52, 0.7);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-glow: rgba(0, 242, 254, 0.25);
    --color-text: #f1f5f9;
    --color-text-muted: #94a3b8;
    
    /* Primary Neon Gradients */
    --color-cyan: #00f2fe;
    --color-blue: #4facfe;
    --color-purple: #bf55ec;
    --color-pink: #f5576c;
    
    --grad-primary: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-blue) 100%);
    --grad-accent: linear-gradient(135deg, var(--color-purple) 0%, var(--color-pink) 100%);
    --grad-dark: linear-gradient(180deg, #131725 0%, #090b11 100%);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Glow Background Effects */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.glow-purple {
    background: var(--color-purple);
    top: -100px;
    left: -100px;
}

.glow-cyan {
    background: var(--color-cyan);
    bottom: -100px;
    right: -100px;
}

/* Glassmorphism Common Styles */
.glass-card {
    background: var(--color-panel);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 242, 254, 0.05);
}

/* Header & Navigation */
.app-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 13, 22, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text span {
    background: var(--grad-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    padding: 6px;
    border-radius: 40px;
}

.nav-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.nav-btn:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
}

.nav-btn.active {
    color: #fff;
    background: var(--grad-primary);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
}

.nav-icon {
    transition: transform 0.3s ease;
}

.nav-btn:hover .nav-icon {
    transform: translateY(-1.5px);
}

.badge {
    background: var(--color-pink);
    color: white;
    font-size: 0.75rem;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
}

/* Search Bar */
.search-bar {
    position: relative;
    width: 250px;
}

.search-bar input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    padding: 10px 16px 10px 40px;
    border-radius: 30px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.search-bar input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-cyan);
    box-shadow: 0 0 12px var(--color-border-glow);
    width: 280px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    pointer-events: none;
    transition: var(--transition);
}

.search-bar input:focus + .search-icon {
    color: var(--color-cyan);
}

/* Main Content Layout */
.app-main {
    padding: 40px 24px;
    min-height: calc(100vh - 250px);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease-out forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Spotlight Card */
.hero-spotlight {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    background: linear-gradient(135deg, rgba(17, 20, 34, 0.8) 0%, rgba(10, 11, 18, 0.95) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-primary);
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.tag-featured {
    align-self: flex-start;
    background: rgba(0, 242, 254, 0.1);
    color: var(--color-cyan);
    border: 1px solid rgba(0, 242, 254, 0.2);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-content p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-md);
}

.hero-image-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(11,13,22,0.8), transparent);
    z-index: 1;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-spotlight:hover .hero-image-wrapper img {
    transform: scale(1.05);
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.15);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Title */
.section-title-wrapper {
    margin-bottom: 30px;
}

.section-title-wrapper h1, .section-title-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.title-line {
    width: 60px;
    height: 4px;
    background: var(--grad-primary);
    border-radius: 2px;
}

.subtitle {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* Buttons */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.15);
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

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

/* Filters & Chips Header */
.section-header-filters {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.chip:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.chip.active {
    background: rgba(0, 242, 254, 0.12);
    border-color: var(--color-cyan);
    color: var(--color-cyan);
}

/* Content Grid & Cards */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

.card-img-wrapper {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-img-wrapper img {
    transform: scale(1.06);
}

.card-type-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(11, 13, 22, 0.85);
    border: 1px solid var(--color-border);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-fav-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(11, 13, 22, 0.85);
    border: 1px solid var(--color-border);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: var(--transition);
}

.card-fav-btn:hover {
    color: var(--color-pink);
    background: white;
    transform: scale(1.1);
}

.card-fav-btn.active {
    color: var(--color-pink);
    fill: var(--color-pink);
    border-color: rgba(245, 87, 108, 0.2);
}

.card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.card-category {
    color: var(--color-cyan);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffb800;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.card-size {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.btn-card-action {
    background: transparent;
    border: none;
    color: var(--color-cyan);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.btn-card-action:hover {
    color: white;
}

.btn-card-action svg {
    transition: transform 0.3s ease;
}

.btn-card-action:hover svg {
    transform: translateX(4px);
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-muted);
}

.empty-state svg {
    color: var(--color-border);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 0.95rem;
    max-width: 400px;
    margin-bottom: 24px;
}

/* Admin layout */
.admin-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: start;
}

.admin-form-card, .admin-list-card {
    padding: 30px;
}

.admin-form-card h2, .admin-list-card h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.form-desc {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

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

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

label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-text);
}

input[type="text"], input[type="url"], input[type="email"], select, textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--color-cyan);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px var(--color-border-glow);
}

/* Table Style */
.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.admin-table th, .admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-border);
}

.admin-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

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

.btn-danger {
    background: rgba(245, 87, 108, 0.1);
    color: var(--color-pink);
    border: 1px solid rgba(245, 87, 108, 0.2);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: var(--transition);
}

.btn-danger:hover {
    background: var(--color-pink);
    color: white;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11, 13, 22, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 0;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 32px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: white;
    color: var(--color-bg);
}

.animate-zoom {
    animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Modal Content Inner Styles */
.modal-hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modal-content-container {
    padding: 35px;
}

.modal-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.modal-section-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 6px;
}

.modal-desc {
    color: var(--color-text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.requirements-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 18px;
    margin-bottom: 20px;
}

.req-item {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.req-item strong {
    color: var(--color-text);
}

.req-item p {
    color: var(--color-text-muted);
}

.download-widget {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.05) 0%, rgba(79, 172, 254, 0.05) 100%);
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Comments System */
.comments-section {
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
    margin-top: 30px;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.comment-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    padding: 16px;
    border-radius: var(--radius-sm);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.comment-author {
    font-weight: 700;
    color: white;
}

.comment-text {
    font-size: 0.92rem;
}

.comment-rating {
    color: #ffb800;
}

.comment-form {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.comment-form h4 {
    margin-bottom: 12px;
}

.rating-select-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.star-rating-input {
    display: flex;
    gap: 5px;
}

.star-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.star-btn:hover, .star-btn.active {
    color: #ffb800;
}

/* Download Simulation Modal */
.download-modal {
    max-width: 450px;
    padding: 40px;
    text-align: center;
}

.download-icon {
    color: var(--color-cyan);
    margin-bottom: 20px;
}

.download-progress-container {
    background: rgba(255, 255, 255, 0.05);
    height: 10px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    margin: 24px 0 10px 0;
}

.download-progress-bar {
    background: var(--grad-primary);
    width: 0%;
    height: 100%;
    border-radius: 5px;
    transition: width 0.1s linear;
}

.download-percentage {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
}

.download-info {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Footer Section */
.app-footer {
    background: #06070a;
    border-top: 1px solid var(--color-border);
    padding: 60px 0 0 0;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    max-width: 400px;
    margin-top: 15px;
}

.footer-newsletter h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.footer-newsletter p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    border-radius: 30px;
}

.newsletter-form button {
    padding: 10px 24px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 30px 0;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

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

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-cyan);
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .hero-spotlight {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }
    
    .hero-image-wrapper {
        height: 250px;
        grid-row: 1;
    }
    
    .admin-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        padding: 10px 16px;
    }
    
    .nav-links {
        width: 100%;
        justify-content: space-around;
        overflow-x: auto;
    }
    
    .nav-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .search-bar {
        width: 100%;
    }
    
    .search-bar input:focus {
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-chips {
        width: 100%;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

/* Admin Lock Card Styles */
.admin-lock-card {
    max-width: 460px;
    margin: 60px auto;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lock-icon-wrapper {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(191, 85, 236, 0.1) 100%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    border: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.1);
}

.lock-icon {
    color: var(--color-cyan);
}

.btn-toggle-pw {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: var(--transition);
}

.btn-toggle-pw:hover {
    color: white;
}

.lock-hint {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-top: 15px;
}

.lock-hint code {
    background: rgba(255, 255, 255, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--color-cyan);
    font-family: monospace;
}
