:root {
    /* Colors */
    --primary: #ff4da6;
    --primary-light: #ff6eb7;
    --primary-dark: #e6007a;
    --secondary: #2141f3;
    --secondary-light: #4562ff;
    --secondary-dark: #1531c9;
    --background: #0a0a0a;
    --surface: #1E1E1E;
    --surface-light: #2a2a2a;
    --background-light: #313131;
    --text: #FFFFFF;
    --text-secondary: #B3B3B3;
    --accent: #ff4da6;
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;

    /* Spacing */
    --header-height: 80px;
    --footer-spacing-top: 75px;
    --footer-spacing-bottom: 75px;
    --content-padding-top: 75px;
    --content-padding-bottom: 75px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    background: url('../images/apppreviews/website_background.jpg') no-repeat center center fixed;
    background-size: cover;
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* iOS Safari fix for background-attachment: fixed */
@supports (-webkit-touch-callout: none) {
    body {
        background: var(--background);
        background-attachment: scroll;
        position: relative;
    }

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        width: 100dvw;
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        background-color: var(--background);
        background-image: url('../images/apppreviews/website_background.jpg');
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        z-index: -1;
    }
}

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

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    height: var(--header-height);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-top: 5px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 900;
    font-style: italic;
    color: var(--accent);
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
    margin: 0;
    letter-spacing: -0.5px;
}

.logo span {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text);
    margin-left: 4px;
    margin-top: 8px;
    font-style: italic;
}

.logo img {
    height: 40px;
}

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

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

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

.nav-links a.active {
    color: var(--accent);
    font-weight: 600;
}

.search-toggle {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
}

.search-toggle:hover {
    color: var(--accent);
}

.search-toggle .search-text {
    transition: color 0.3s ease;
}

.search-toggle svg {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
}

.search-container {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.search-container.active {
    width: 500px;
    opacity: 1;
    pointer-events: all;
}

.search-input {
    width: 100%;
    height: 45px;
    padding: 10px 5px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 77, 166, 0.3);
    color: var(--text);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-bottom-color: var(--primary);
}

.search-input::placeholder {
    color: var(--text-secondary);
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 30px;
    background-color: rgba(10, 10, 10, 0.5);
    border-radius: 7px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 100;
}

.search-results.active {
    max-height: 600px;
    opacity: 1;
    overflow-y: auto;
}

.search-results::-webkit-scrollbar {
    display: none;
}

/* Search Result Items */
.search-results-list {
    padding: 15px;
}

.search-result-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    background-color: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.search-result-item:last-child {
    margin-bottom: 0;
}

.search-result-item:hover {
    background-color: rgba(30, 30, 30, 0.8);
    border-color: rgba(255, 77, 166, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 166, 0.2);
}

.search-result-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--background);
    flex-shrink: 0;
}

.search-result-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.search-result-title {
    background-color: var(--background);
    padding: 0 15px;
    height: 35px;
    border-radius: 7px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: fit-content;
    max-width: 100%;
}

.search-result-subtitle {
    background-color: var(--background);
    padding: 0 12px;
    height: 25px;
    border-radius: 7px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: fit-content;
    max-width: 100%;
}

/* Search Loading State */
.search-loading {
    padding: 15px;
}

.search-result-item.skeleton {
    pointer-events: none;
    animation: pulse 1.5s ease-in-out infinite;
}

.skeleton-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(
        90deg,
        var(--background) 0%,
        var(--surface-light) 50%,
        var(--background) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: 8px;
    flex-shrink: 0;
}

.skeleton-text {
    background: linear-gradient(
        90deg,
        var(--background) 0%,
        var(--surface-light) 50%,
        var(--background) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: 7px;
}

.skeleton-title {
    height: 35px;
    width: 70%;
    margin-bottom: 8px;
}

.skeleton-subtitle {
    height: 25px;
    width: 50%;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Search Error State */
.search-error {
    padding: 30px 20px;
    text-align: center;
    color: var(--text-secondary);
}

.search-error svg {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.search-error p {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}

.nav-links {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    gap: 20px;
}

.nav-links.hidden {
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
}

.cta-button {
    color: var(--text);
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    background-color: rgba(255, 77, 166, 0.3);
    height: 35px;
    border-radius: 7px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    z-index: 10;
    white-space: nowrap;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 14px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    width: 20px;
    height: 2px;
    background-color: var(--text);
    border-radius: 1px;
    transition: all 0.3s ease;
    display: block;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.burger-menu.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Main Content Layout */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: calc(var(--header-height) + var(--content-padding-top));
    padding-bottom: var(--content-padding-bottom);
    min-height: calc(100vh - var(--header-height));
}

/* Page Container - Dynamic Height */
.page-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    min-height: 0;
}

/* Layout Container - Takes available height */
.layout-container {
    display: grid;
    gap: 0;
    background-color: rgba(10, 10, 10, 0.5);
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    flex: 1;
    min-height: 0;
    height: calc(100vh - var(--header-height) - var(--content-padding-top) - var(--content-padding-bottom));
    max-height: calc(100vh - var(--header-height) - var(--content-padding-top) - var(--content-padding-bottom));
}

/* Card Styles */
.card {
    background-color: var(--surface);
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

/* Info Chip System - Unified across all pages */
.info-chip {
    background-color: var(--background);
    padding: 0 20px;
    border-radius: 7px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: fit-content;
    max-width: 100%;
}

/* Info Chip Size Variants */
.info-chip.size-xs {
    font-size: 12px;
    height: 25px;
    padding: 0 12px;
    font-weight: 500;
}

.info-chip.size-sm {
    font-size: 14px;
    height: 30px;
    padding: 0 15px;
    font-weight: 500;
}

.info-chip.size-md {
    font-size: 16px;
    height: 35px;
    padding: 0 15px;
    font-weight: 500;
}

.info-chip.size-lg {
    font-size: 20px;
    height: 40px;
    padding: 0 20px;
    font-weight: 500;
}

.info-chip.size-xl {
    font-size: 50px;
    height: 70px;
    padding: 0 20px;
    font-weight: 600;
}

/* Info Chip Color Variants */
.info-chip.color-primary {
    color: var(--text);
}

.info-chip.color-secondary {
    color: var(--text-secondary);
}

.info-chip.color-light {
    color: var(--text);
    background-color: var(--surface);
}

/* Colored Chip (for badges) */
.colored-chip {
    background-color: rgba(10, 10, 10, 0.7);
    border-radius: 7px;
    padding: 0;
    display: inline-block;
}

.colored-chip-inner {
    height: 35px;
    padding: 0 20px;
    border-radius: 7px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.colored-chip.success .colored-chip-inner {
    background-color: rgba(76, 175, 80, 0.225);
    color: var(--success);
}

.colored-chip.error .colored-chip-inner {
    background-color: rgba(244, 67, 54, 0.225);
    color: var(--error);
}

.colored-chip.primary .colored-chip-inner {
    background-color: rgba(33, 65, 243, 0.225);
    color: var(--secondary);
}

/* Description Text */
.description-text {
    background-color: var(--background);
    padding: 20px;
    border-radius: 7px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.6;
}

.description-text.surface {
    background-color: var(--surface);
}

/* Loading State */
.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    min-height: 400px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 60px 20px;
    color: var(--error);
}

.error-message i {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Scrollbar Styles */
.scrollable::-webkit-scrollbar {
    display: none;
}

.scrollable {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Error Notification Styles */
.error-notification-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.error-notification-container.show {
    transform: translateY(0);
    pointer-events: all;
}

.error-notification {
    padding: 8px;
    margin: calc(var(--header-height) + 15px) 15px 0 15px;
}

.error-notification-outer {
    background-color: var(--surface);
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.error-notification-inner {
    background-color: rgba(244, 67, 54, 0.225);
    border-radius: 7px;
    padding: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 3px 10px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
}

.error-notification-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(244, 67, 54, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.error-notification-icon i {
    color: var(--error);
    font-size: 18px;
}

.error-notification-message {
    flex: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--error);
    line-height: 1.3;
}

.error-notification-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(244, 67, 54, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.error-notification-close:hover {
    background-color: rgba(244, 67, 54, 0.5);
    transform: scale(1.05);
}

.error-notification-close i {
    color: var(--error);
    font-size: 14px;
}

/* Footer */
footer {
    background-color: var(--surface);
    padding: 60px 0 30px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    font-weight: 900;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 12px;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
}

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

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

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--surface-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.footer-links h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: var(--accent);
    border-radius: 1.5px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

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

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

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.85rem;
}

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

@media (max-width: 768px) {

    .burger-menu {
        display: flex;
    }

    .navbar {
        padding: 15px 10px;
    }

    .nav-buttons {
        position: fixed;
        top: var(--header-height);
        width: calc(100% - 40px);
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        left: 20px;
        right: 20px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.5);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        z-index: 999;
        border-radius: 10px;
    }

    .nav-buttons.active {
        max-height: calc(100vh - var(--header-height) - 40px);
        opacity: 1;
        overflow-y: auto;
        padding: 15px;
    }

    /* When searching, increase max-height to show more results */
    .nav-buttons.searching {
        max-height: calc(100vh - var(--header-height) - 40px) !important;
    }

    /* Hide nav links and CTA button when searching */
    .nav-buttons.searching .nav-links,
    .nav-buttons.searching .cta-button,
    .nav-buttons.searching .cta-outer {
        display: none;
    }

    .nav-links {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        opacity: 1;
        transform: none;
        pointer-events: all;
        transition: opacity 0.3s ease;
    }

    .nav-links a,
    .search-toggle {
        width: 100%;
        padding: 16px 18px;
        background-color: rgba(30, 30, 30);
        border-radius: 8px;
        margin-bottom: 0;
        text-align: left;
        font-size: 0.95rem;
        font-weight: 500;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links a:hover {
        background-color: rgba(30, 30, 30);
        transform: translateY(-1px);
    }

    .search-toggle {
        justify-content: flex-start;
        display: none;
    }

    .cta-outer {
        width: 100%;
        background-color: var(--background);
        height: 50px;
        margin-top: 8px;
        border-radius: 7px; 
    }

    .cta-outer:hover {
        transform: translateY(-2px);
        background-color: var(--background);
    }

    .cta-button {
        width: 100%;
        height: 50px;
        font-size: 16px;
        padding: 0 20px;
        background-color: rgba(255, 77, 166, 0.4);
        transition: all 0.3s ease;
    }

    .cta-button:hover {
        background-color: rgba(255, 77, 166, 0.5);
        box-shadow: 0 5px 15px rgba(255, 77, 166, 0.3);
    }

    /* Mobile search */
    .search-container {
        position: relative;
        width: 100%;
        transform: none;
        top: auto;
        right: auto;
        opacity: 1;
        pointer-events: all;
        margin-bottom: 15px;
        order: -1;
    }

    .search-container.active {
        width: 100%;
    }

    .search-input {
        width: 100%;
        height: 50px;
        padding: 0 18px;
        background-color: rgba(30, 30, 30, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .search-input:focus {
        background-color: rgba(30, 30, 30, 0.8);
        border-color: rgba(255, 77, 166, 0.4);
        box-shadow: 0 2px 8px rgba(255, 77, 166, 0.2);
    }

    .search-results {
        margin-top: 0;
        padding-top: 0;
        border-radius: 8px;
        background-color: transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        transition: padding-top 0.3s ease;
    }

    .search-results.active {
        max-height: calc(100vh - var(--header-height) - 150px);
        overflow-y: auto;
        padding-top: 0;
    }

    .search-results-list {
        padding: 0;
    }

    .search-loading {
        padding: 0;
    }

    .search-result-item {
        padding: 12px;
        gap: 12px;
        background-color: rgba(30, 30, 30, 0.6);
        border: 1px solid rgba(255, 255, 255, 0.05);
        margin-bottom: 8px;
        border-radius: 8px;
    }

    .search-result-item:hover {
        background-color: rgba(30, 30, 30, 0.8);
        border-color: rgba(255, 77, 166, 0.3);
    }

    .search-result-image {
        width: 80px;
        height: 80px;
        border-radius: 8px;
    }

    .skeleton-image {
        width: 80px;
        height: 80px;
        border-radius: 8px;
    }

    .search-result-title {
        font-size: 14px;
        height: 30px;
        padding: 0 12px;
    }

    .search-result-subtitle {
        font-size: 11px;
        height: 22px;
        padding: 0 10px;
    }

    .skeleton-title {
        height: 30px;
        width: 70%;
        margin-bottom: 8px;
    }

    .skeleton-subtitle {
        height: 22px;
        width: 50%;
    }

    /* Scrollbar styling for mobile */
    .nav-buttons::-webkit-scrollbar {
        width: 4px;
    }

    .nav-buttons::-webkit-scrollbar-track {
        background: transparent;
    }

    .nav-buttons::-webkit-scrollbar-thumb {
        background: rgba(255, 77, 166, 0.3);
        border-radius: 2px;
    }

    .nav-buttons::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 77, 166, 0.5);
    }
}

@media (max-width: 576px) {

    header {
        height: 65px;
    }

    .container {
        padding: 0 10px;
    }

    /* Mobile error notification - full width */
    .error-notification {
        padding: 0;
        margin: calc(var(--header-height) + 10px) 0 0 0;
    }

    .error-notification-outer {
        border-radius: 0;
    }

    .error-notification-inner {
        border-radius: 0;
        padding: 14px 16px;
    }

    .error-notification-message {
        font-size: 13px;
    }

    /* Mobile font size overrides for info chips */
    .info-chip.size-xs {
        font-size: 10px;
        height: 22px;
        padding: 0 10px;
    }

    .info-chip.size-sm {
        font-size: 12px;
        height: 26px;
        padding: 0 12px;
    }

    .info-chip.size-md {
        font-size: 14px;
        height: 30px;
        padding: 0 12px;
    }

    .info-chip.size-lg {
        font-size: 16px;
        height: 35px;
        padding: 0 15px;
    }

    .info-chip.size-xl {
        font-size: 28px;
        height: 50px;
        padding: 0 15px;
    }

    .colored-chip-inner {
        height: 30px;
        padding: 0 15px;
        font-size: 12px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .logo span {
        font-size: 1rem;
        margin-top: 6px;
    }

    .logo img {
        height: 30px;
    }
}
