/* ----------------------------------------------------
   NextF@ll Software Studio - Premium Design System
   ---------------------------------------------------- */

:root {
    /* Color Palette (Inspired by Peugeot bike mobile UI) */
    --bg-dark: #07090e;
    --bg-deep: #0c0f16;
    --accent-blue: #007aff;
    --accent-cyan: #00e5ff;
    --accent-blue-rgb: 0, 122, 255;
    --accent-cyan-rgb: 0, 229, 255;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #90a0b7;
    --text-muted: #5e6f88;
    
    /* Glassmorphism Specs */
    --glass-bg: rgba(14, 18, 28, 0.45);
    --glass-bg-hover: rgba(22, 28, 42, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-focus: rgba(0, 229, 255, 0.4);
    --glass-blur: blur(20px);
    
    /* Shadows */
    --shadow-main: 0 20px 40px rgba(0, 0, 0, 0.4);
    --shadow-neon: 0 0 25px rgba(0, 122, 255, 0.25);
    --shadow-neon-cyan: 0 0 25px rgba(0, 229, 255, 0.35);
    
    /* Layout */
    --header-height: 80px;
    --container-max-width: 1200px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    
    /* Fonts */
    --font-heading: 'Outfit', 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* ----------------------------------------------------
   BASE STYLES & RESET
   ---------------------------------------------------- */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* ----------------------------------------------------
   BACKGROUND GLOW ORBS
   ---------------------------------------------------- */

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    z-index: -1;
    pointer-events: none;
}

.bg-orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.6) 0%, transparent 70%);
}

.bg-orb-2 {
    top: 40%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.4) 0%, transparent 70%);
}

.bg-orb-3 {
    bottom: -10%;
    left: 20%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.3) 0%, transparent 70%);
}

/* ----------------------------------------------------
   TYPOGRAPHY & UTILITIES
   ---------------------------------------------------- */

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gradient-text {
    background: linear-gradient(135deg, #007aff 0%, #00e5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.text-left {
    text-align: left !important;
}

/* ----------------------------------------------------
   GLASSMORPHISM & COMPONENT TEMPLATES
   ---------------------------------------------------- */

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur) saturate(180%);
    -webkit-backdrop-filter: var(--glass-blur) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-main);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-nav {
    background: rgba(7, 9, 14, 0.65);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
}

.glass-button {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ----------------------------------------------------
   BUTTON SYSTEM
   ---------------------------------------------------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    color: #ffffff;
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(0, 229, 255, 0.4);
    opacity: 0.95;
}

.btn-secondary {
    border: 1px solid var(--glass-border);
}

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

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

/* ----------------------------------------------------
   SITE HEADER NAVIGATION
   ---------------------------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #ffffff 50%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language switch button */
.lang-switch-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile burger button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

/* ----------------------------------------------------
   HERO SECTION
   ---------------------------------------------------- */

.hero-section {
    min-height: auto;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge-container {
    display: flex;
}

.hero-badge {
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.25);
    color: var(--accent-cyan);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 520px;
}

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

/* Interactive mockup frame */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.mockup-frame-container {
    background: rgba(14, 18, 28, 0.6);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    width: 320px;
    height: 560px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), var(--shadow-neon-cyan);
    position: relative;
    overflow: hidden;
}

.mockup-header-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    padding-left: 12px;
}

.mockup-header-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-red { background-color: #ff5f56; }
.dot-yellow { background-color: #ffbd2e; }
.dot-green { background-color: #27c93f; }

.mockup-display-area {
    flex-grow: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-color: var(--bg-deep);
}

.mockup-display-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.mockup-display-img.active {
    opacity: 1;
}

.mockup-caption-glass {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(10, 14, 22, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.caption-app-info {
    display: flex;
    flex-direction: column;
}

.caption-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
}

.caption-subtitle {
    font-size: 0.75rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    font-weight: 500;
}

.caption-indicator-dots {
    display: flex;
    gap: 6px;
}

.indicator-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator-dot.active {
    background-color: var(--accent-cyan);
}

.hero-scroller {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.scroll-down-indicator {
    display: flex;
    justify-content: center;
}

.mouse-icon {
    width: 26px;
    height: 44px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-cyan);
    border-radius: 4px;
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

/* ----------------------------------------------------
   SHOWCASE SECTION
   ---------------------------------------------------- */

.showcase-section {
    padding: 100px 0;
    background-color: var(--bg-deep);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-subtitle {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.filter-tabs-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    background-color: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #ffffff;
    box-shadow: var(--shadow-neon);
}

/* Projects grid and cards */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.project-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.25);
    box-shadow: 0 20px 45px rgba(0,0,0,0.5), 0 0 20px rgba(0, 122, 255, 0.1);
}

.project-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
}

.project-image-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-category-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(10, 14, 22, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10;
    border: 1px solid var(--glass-border);
    color: var(--accent-cyan);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.project-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.project-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.tag.font-bold {
    color: #ffffff;
    border-color: rgba(0, 122, 255, 0.25);
}

/* Card removal/filter animation states */
.project-card.hide {
    display: none;
}

/* ----------------------------------------------------
   CONTACT SECTION
   ---------------------------------------------------- */

.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.contact-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 12px;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-color: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.detail-link {
    font-size: 1.05rem;
    color: var(--accent-cyan);
    font-weight: 500;
}

.detail-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.detail-value {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Glassmorphic Contact Form */
.contact-form-container {
    position: relative;
}

.contact-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.form-input {
    background: rgba(7, 9, 14, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: #ffffff;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
    background: rgba(7, 9, 14, 0.8);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2390a0b7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px;
    padding-right: 48px;
    cursor: pointer;
}

/* Specific styles for dark mode select dropdown options list */
.form-select option {
    background-color: var(--bg-deep);
    color: #ffffff;
}

.form-textarea {
    resize: none;
    height: 120px;
}

/* Form validation styling */
.form-input.invalid {
    border-color: #ff5f56;
    box-shadow: 0 0 15px rgba(255, 95, 86, 0.15);
}

.form-validation-msg {
    font-size: 0.75rem;
    color: #ff5f56;
    height: 16px;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.form-validation-msg.visible {
    opacity: 1;
}

/* Loading submit button */
.btn-submit {
    position: relative;
    overflow: hidden;
}

.submit-btn-loader {
    display: none;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.btn-submit.loading .submit-btn-text {
    opacity: 0;
}

.btn-submit.loading .submit-btn-loader {
    display: block;
}

/* Form Success & Error Feedback overlays */
.form-feedback-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 15, 22, 0.95);
    backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-lg);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.form-feedback-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.feedback-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 320px;
}

.feedback-icon-success, .feedback-icon-error {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 8px;
}

.feedback-icon-success {
    background-color: #27c93f;
    box-shadow: 0 0 20px rgba(39, 201, 63, 0.3);
}

.feedback-icon-error {
    background-color: #ff5f56;
    box-shadow: 0 0 20px rgba(255, 95, 86, 0.3);
}

.feedback-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

/* ----------------------------------------------------
   FOOTER
   ---------------------------------------------------- */

.site-footer {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand {
    align-self: flex-start;
}

.footer-desc {
    color: var(--text-secondary);
    max-width: 380px;
    font-size: 0.95rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.footer-copyright-container {
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------
   RESPONSIVE DESIGN BREAKPOINTS
   ---------------------------------------------------- */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-container {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    /* Navbar adaptations */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(7, 9, 14, 0.95);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    .main-nav.active {
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .nav-link {
        font-size: 1.5rem;
    }
    
    /* Hero layout */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-description {
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info-container {
        text-align: center;
    }
    
    .contact-details-list {
        align-items: center;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        align-self: center;
    }
    
    .footer-desc {
        margin: 0 auto;
    }
    
    .footer-links-grid {
        justify-items: center;
    }
}

@media (max-width: 600px) {
    :root {
        --header-height: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    .mockup-frame-container {
        width: 280px;
        height: 490px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 24px;
    }
}

/* Menu Toggle states for burger icon */
.mobile-menu-toggle.active .bar-1 {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-toggle.active .bar-2 {
    opacity: 0;
}

.mobile-menu-toggle.active .bar-3 {
    transform: rotate(-45deg) translate(3px, -4px);
}

/* ----------------------------------------------------
   VISUAL & AUDIO CURATION SECTION
   ---------------------------------------------------- */

.media-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--glass-border);
}

.media-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    margin-top: 40px;
}

.media-subtitle-label {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* 4 Videos Grid */
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.video-card {
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), 0 0 15px rgba(0, 122, 255, 0.1);
}

.video-card .project-image-wrapper {
    aspect-ratio: 16 / 9;
}

.video-card-info {
    padding: 16px;
    background: rgba(7, 9, 14, 0.3);
}

.video-card-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Custom Glassmorphic MP3 Audio Player */
.audio-player-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    border-color: rgba(255, 255, 255, 0.1);
}

.player-main-info {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.player-cover-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
}

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

.music-waves-animation {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-waves-animation.active {
    opacity: 1;
}

.music-waves-animation span {
    width: 2px;
    background-color: var(--accent-cyan);
    animation: bounce-wave 0.8s ease infinite alternate;
    transform-origin: bottom;
}

.music-waves-animation span:nth-child(1) { height: 30%; animation-delay: 0.1s; }
.music-waves-animation span:nth-child(2) { height: 60%; animation-delay: 0.3s; }
.music-waves-animation span:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.music-waves-animation span:nth-child(4) { height: 40%; animation-delay: 0.4s; }

@keyframes bounce-wave {
    0% { transform: scaleY(0.2); }
    100% { transform: scaleY(1); }
}

.player-track-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.player-track-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.player-track-artist {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 500;
}

/* Time/Progress Seek Seeker */
.player-controls-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.progress-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.time-display {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: var(--font-body);
    min-width: 32px;
}

/* Range input styling */
.audio-progress-slider {
    flex-grow: 1;
    appearance: none;
    -webkit-appearance: none;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    cursor: pointer;
    position: relative;
}

.audio-progress-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
}

.audio-progress-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    margin-top: -4px; /* Align vertical middle */
    transition: transform 0.1s ease;
}

.audio-progress-slider::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

/* Control buttons */
.buttons-control-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.player-btn {
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

.player-btn:hover {
    border-color: rgba(0, 229, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

.control-main {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
    border-color: rgba(0, 122, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(0, 229, 255, 0.1) 100%);
}

.control-main:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.2) 0%, rgba(0, 229, 255, 0.2) 100%);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.control-secondary {
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
}

/* Playlist panel */
.player-playlist-container {
    max-height: 260px;
    overflow-y: auto;
    border-top: 1px solid var(--glass-border);
    padding-top: 16px;
    margin-top: 8px;
}

/* Custom Scrollbar for playlist container */
.player-playlist-container::-webkit-scrollbar {
    width: 4px;
}
.player-playlist-container::-webkit-scrollbar-track {
    background: rgba(7, 9, 14, 0.2);
}
.player-playlist-container::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 2px;
}

.player-playlist-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.playlist-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.playlist-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-color: var(--glass-border);
}

.playlist-item.active {
    background-color: rgba(0, 229, 255, 0.04);
    border-color: rgba(0, 229, 255, 0.15);
}

.playlist-track-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.playlist-item.active .playlist-track-name {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.playlist-track-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive adjustments for Visual & Audio section */
@media (max-width: 900px) {
    .media-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.hide {
    display: none !important;
}

/* ----------------------------------------------------
   ADMIN MODAL & LOGIN PANEL STYLES
   ---------------------------------------------------- */

.admin-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.admin-btn:hover {
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

.admin-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 9, 14, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.admin-modal-card {
    width: 90%;
    max-width: 460px; /* Expands to 760px on dashboard view */
    padding: 36px;
    border-color: rgba(255, 255, 255, 0.12);
    position: relative;
    transition: max-width 0.4s ease;
}

.admin-modal-card.dashboard-mode {
    max-width: 760px;
}

.admin-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 24px;
}

.admin-modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 60%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-close-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Error banner inside admin panel */
.admin-error-container {
    min-height: 20px;
}

.admin-error-msg {
    color: #ff5f56;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-error-msg.visible {
    opacity: 1;
}

/* Admin Dashboard layout */
.admin-dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 36px;
}

.admin-subheading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    border-left: 3px solid var(--accent-cyan);
    padding-left: 10px;
}

.admin-add-video-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Video Management List */
.admin-video-list-container {
    display: flex;
    flex-direction: column;
}

.admin-video-scroll-box {
    max-height: 240px;
    overflow-y: auto;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    background: rgba(7, 9, 14, 0.4);
    padding: 12px;
}

.admin-video-scroll-box::-webkit-scrollbar {
    width: 4px;
}
.admin-video-scroll-box::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 2px;
}

.admin-video-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-video-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
}

.admin-video-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.admin-video-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.admin-video-id {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.admin-video-delete-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-video-delete-btn:hover {
    color: #ff5f56;
    transform: scale(1.1);
}

/* Responsiveness for admin dashboard */
@media (max-width: 768px) {
    .admin-modal-card.dashboard-mode {
        max-width: 480px;
    }
    
    .admin-dashboard-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .admin-video-scroll-box {
        max-height: 180px;
    }
}

/* ----------------------------------------------------
   STANDALONE ADMIN PAGE STYLES
   ---------------------------------------------------- */

.page-padding-top {
    padding-top: 100px;
}

.flex-center-main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 200px);
}

.admin-section-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.admin-page-card-wrapper {
    width: 90%;
    max-width: 480px;
    display: flex;
    justify-content: center;
    transition: max-width 0.4s ease;
}

.admin-page-card-wrapper:has(.dashboard-mode) {
    max-width: 960px;
}

.admin-page-card {
    width: 100%;
    padding: 40px;
    border-color: rgba(255, 255, 255, 0.12);
    position: relative;
    transition: all 0.4s ease;
}

.admin-page-card.dashboard-mode {
    max-width: 960px;
}

.admin-card-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 30px;
}

.admin-page-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    background: linear-gradient(135deg, #ffffff 60%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.admin-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.admin-dashboard-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.admin-list-box-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-list-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-cyan);
}

.admin-page-card.dashboard-mode .admin-dashboard-layout {
    grid-template-columns: 1fr 1fr;
}

/* Responsiveness for admin dashboard page */
@media (max-width: 900px) {
    .admin-page-card.dashboard-mode {
        max-width: 500px;
    }
    
    .admin-page-card.dashboard-mode .admin-dashboard-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ----------------------------------------------------
   SEARCH, SORT, AND TAG STYLES
   ---------------------------------------------------- */

.media-controls-bar,
.admin-dashboard-controls-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding: 16px 28px;
    margin-bottom: 36px;
    border: 1px solid var(--glass-border);
}

.media-controls-bar {
    border-radius: var(--radius-md);
    background: rgba(10, 14, 22, 0.4);
    backdrop-filter: blur(10px);
}

.admin-dashboard-controls-bar {
    border-radius: var(--radius-sm);
    background: rgba(7, 9, 14, 0.3);
    margin-top: -10px;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: var(--accent-cyan);
}

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

.search-input-wrapper input {
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 0;
    width: 100%;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.sort-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
}

.sort-select {
    width: 170px;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    background: rgba(7, 9, 14, 0.6) !important;
    color: #ffffff;
    outline: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

.sort-select:focus {
    border-color: var(--accent-cyan);
}

/* Tag Badges */
.card-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.media-tag {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    background: rgba(0, 229, 255, 0.06);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 229, 255, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.media-tag:hover {
    background: rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.25);
    transform: translateY(-1px);
}

.admin-item-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
}

.admin-item-tag {
    font-size: 0.6rem;
    font-weight: 500;
    padding: 1px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Responsive styles for control bars */
@media (max-width: 600px) {
    .media-controls-bar,
    .admin-dashboard-controls-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 20px;
    }
    
    .sort-selector-wrapper {
        justify-content: space-between;
    }
    
    .sort-select {
        flex-grow: 1;
    }
}

.admin-dashboard-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    margin-top: 30px;
    border-top: 1px solid var(--glass-border);
    width: 100%;
}

.admin-unsaved-notice {
    font-size: 0.85rem;
    color: #ff9800;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulseNotice 2s infinite ease-in-out;
}

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

/* ==========================================================================
   FEATURED ROTATING BANNERS & CAROUSELS (HOME & MEDIA)
   ========================================================================== */
.banner-slider-container,
.featured-banner-zone {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: rgba(12, 15, 22, 0.45);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
}

.header-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1.4);
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
    overflow: hidden;
}

.header-video-background.active {
    opacity: 0.55;
}

.header-video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.header-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 40px;
    box-sizing: border-box;
    background: rgba(7, 9, 14, 0.55);
    backdrop-filter: blur(4px);
    transition: background 0.5s ease, backdrop-filter 0.5s ease;
}

.header-video-overlay.playing {
    background: rgba(7, 9, 14, 0.35);
    backdrop-filter: blur(1px);
}

.banner-slider-container {
    min-height: 75vh;
}

.featured-banner-zone {
    min-height: 380px;
}

.featured-banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    transform: scale(0.98);
    box-sizing: border-box;
}

.featured-banner-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.banner-slide-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.banner-slide-logo {
    max-height: 140px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0, 229, 255, 0.25));
    animation: floatLogo 6s infinite ease-in-out;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.banner-slide-title {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ffffff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.banner-slide-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 650px;
}

/* Apps Preview Grid in Carousel */
.banner-apps-preview {
    display: flex;
    gap: 24px;
    margin: 10px 0;
    justify-content: center;
}

.app-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.app-preview-img {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.app-preview-item:hover .app-preview-img {
    transform: translateY(-4px) scale(1.05);
}

/* Graphics Mocks inside sliders */
.banner-video-mock,
.banner-audio-mock {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--glass-border);
    padding: 16px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.banner-video-mock {
    color: var(--accent-cyan);
}

.banner-audio-mock {
    color: #ff9800;
}

.video-mock-play {
    font-size: 1.2rem;
    animation: pulsePlay 1.5s infinite ease-in-out;
}

.audio-mock-waves {
    letter-spacing: 2px;
    animation: bounceWaves 1.5s infinite ease-in-out;
}

@keyframes pulsePlay {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes bounceWaves {
    0%, 100% { transform: scaleX(0.9); }
    50% { transform: scaleX(1.1); }
}

/* Navigation Slider Dots */
.banner-slider-dots {
    position: absolute;
    bottom: 24px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active {
    background: var(--accent-cyan);
    transform: scale(1.35);
    box-shadow: 0 0 10px var(--accent-cyan);
}

/* Adjustments for Curation Media Players */
.media-audio-section {
    position: relative;
    z-index: 5;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .banner-slider-container {
        min-height: 60vh;
    }
    
    .banner-slide-title {
        font-size: 1.8rem;
    }
    
    .banner-apps-preview {
        gap: 16px;
    }
    
    .app-preview-img {
        width: 50px;
        height: 50px;
    }
}




