/* ========================================
   Michael Crestan — Personal Website
   ======================================== */

:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --accent: #ff6b6b;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-card-hover: #1a1a1a;
    --text: #ffffff;
    --text-muted: #888888;
    --text-dim: #555555;
    --border: #222222;
    --gradient: linear-gradient(135deg, var(--primary), #ff6b6b);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 22px;
    width: auto;
}

.lang-switcher {
    display: flex;
    gap: 6px;
    align-items: center;
    list-style: none;
    margin-left: 8px;
}

.lang-btn {
    background: none;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    padding: 3px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.45;
    transition: var(--transition);
    line-height: 0;
}

.lang-btn:hover {
    opacity: 0.8;
}

.lang-btn.active {
    opacity: 1;
    border-color: var(--primary);
}

.lang-btn svg {
    display: block;
    border-radius: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

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

.nav-cta {
    background: var(--gradient);
    color: var(--text) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/about_abu_dhabi.jpg') center center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(230, 57, 70, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    animation: heroGlow 15s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-30px, 20px) rotate(3deg); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,10,10,0.75) 0%,
        rgba(10,10,10,0.50) 40%,
        rgba(10,10,10,0.70) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: var(--primary);
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(0,0,0,0.9), 0 2px 8px rgba(0,0,0,0.8);
    filter: brightness(1.3);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    font-style: italic;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.hero-location {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.hero-location i {
    color: var(--primary);
    margin-right: 6px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-socials {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.hero-socials a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    background: rgba(255,255,255,0.12);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-dim);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--border);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    width: 100%;
    height: 50%;
    background: var(--primary);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gradient);
    color: var(--text);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
}

.btn-outline {
    background: rgba(255,255,255,0.08);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

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

.btn-small {
    padding: 10px 20px;
    font-size: 0.8rem;
    background: var(--gradient);
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    margin-top: 16px;
    transition: var(--transition);
}

.btn-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   Sections
   ======================================== */

.section {
    padding: 120px 0;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 500px;
}

/* ========================================
   About Section
   ======================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: center;
}

.about-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: justify;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   Music Section
   ======================================== */

.music {
    background: var(--bg-card);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.music-card {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-dark);
}

.music-card iframe {
    display: block;
}

.embed-placeholder {
    height: 352px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-dim);
}

.embed-placeholder i {
    font-size: 3rem;
    color: #1DB954;
}

.embed-placeholder p {
    font-weight: 600;
}

.embed-placeholder small {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.music-platforms {
    text-align: center;
}

.music-platforms h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.platform-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid var(--border);
    color: var(--text);
    background: var(--bg-dark);
}

.platform-btn:hover {
    transform: translateY(-2px);
}

.platform-btn.spotify:hover {
    border-color: #1DB954;
    box-shadow: 0 4px 20px rgba(29, 185, 84, 0.2);
}

.platform-btn.apple:hover {
    border-color: #fc3c44;
    box-shadow: 0 4px 20px rgba(252, 60, 68, 0.2);
}

.platform-btn.soundcloud:hover {
    border-color: #ff5500;
    box-shadow: 0 4px 20px rgba(255, 85, 0, 0.2);
}

.platform-btn.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.2);
}

/* ========================================
   DJ Sets Section
   ======================================== */

.djsets-embed {
    margin-bottom: 32px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.djsets-embed iframe {
    display: block;
}

.djsets-cta {
    text-align: center;
}

/* ========================================
   Press Kit Section
   ======================================== */

.presskit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.pk-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: var(--transition);
}

.pk-card:hover {
    border-color: var(--text-dim);
    background: var(--bg-card-hover);
}

.pk-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(230, 57, 70, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.2rem;
}

.pk-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.pk-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
    text-align: justify;
}

.pk-bio {
    grid-column: span 2;
}

.pk-list {
    list-style: none;
}

.pk-list li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 10px;
}

.pk-list li:last-child {
    border-bottom: none;
}

.pk-list li i {
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 4px;
}

.pk-note {
    font-size: 0.8rem !important;
    color: var(--text-dim) !important;
    font-style: italic;
    margin-top: 12px;
}

.pk-full {
    grid-column: span 2;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 8px;
}

.photo-item {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    overflow: hidden;
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.photo-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    background: var(--bg-card);
}

.contact-grid {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
}

.contact-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--text-dim);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card span {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.contact-card:hover span {
    color: var(--text);
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

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

.footer-logo-img {
    height: 20px;
    width: auto;
}

.footer-logo p {
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-top: 4px;
}

.footer-company {
    color: var(--text-dim);
    font-size: 0.75rem !important;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ========================================
   Animations
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-placeholder {
        max-width: 400px;
        margin: 0 auto;
    }

    .music-grid {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -24px;
        padding-inline: 14vw;
        gap: 16px;
        margin-bottom: 40px;
    }

    .music-grid::-webkit-scrollbar {
        display: none;
    }

    .music-card {
        flex: 0 0 72vw;
        scroll-snap-align: center;
        min-width: 0;
    }

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

    .pk-bio, .pk-full {
        grid-column: span 1;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .section {
        padding: 80px 0;
    }

    .about-stats {
        gap: 24px;
    }

    .stat-number, .stat-suffix {
        font-size: 1.8rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .platform-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        background-position: center top;
    }

    .about-image {
        display: none;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
            rgba(10,10,10,0.55) 0%,
            rgba(10,10,10,0.30) 40%,
            rgba(10,10,10,0.55) 100%);
    }

    .hero-title {
        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

/* ========================================
   Reels Section
   ======================================== */

.reels-carousel {
    position: relative;
    overflow: hidden;
}

.reels-track {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.reel-slide {
    flex: 0 0 300px;
}

.phone-frame {
    position: relative;
    width: 300px;
    height: 590px;
    border-radius: 36px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.08);
    background: #111;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.04);
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 36px;
}

.reel-vol-btn {
    position: absolute;
    bottom: 58px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.8rem;
    cursor: pointer;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.reel-vol-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

.reels-instagram {
    text-align: center;
    margin-top: 36px;
}

.reels-ig-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    background: var(--bg-card);
}

.reels-ig-btn i {
    font-size: 1.1rem;
}

.reels-ig-btn:hover {
    border-color: #e1306c;
    color: #e1306c;
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.2);
    transform: translateY(-2px);
}

.reels-dots {
    display: none;
}

@media (max-width: 900px) {
    .reels-track {
        gap: 16px;
    }

    .reel-slide {
        flex: 0 0 260px;
    }

    .phone-frame {
        width: 260px;
        height: 510px;
        border-radius: 30px;
    }
}

@media (max-width: 768px) {
    .reels-carousel {
        overflow: hidden;
        margin: 0 -24px;
    }

    .reels-track {
        justify-content: flex-start;
        gap: 16px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        touch-action: pan-y;
    }

    .reel-slide {
        flex: 0 0 72vw;
    }

    .phone-frame {
        width: 100%;
        height: calc(72vw * 1.97);
        max-height: 570px;
        border-radius: 28px;
    }

    .reel-overlay {
        border-radius: 28px;
    }

    .reels-instagram {
        padding: 0 24px;
    }

    .reels-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 28px;
    }

    .reel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        border: none;
        cursor: pointer;
        padding: 0;
        transition: background 0.3s, width 0.3s, border-radius 0.3s;
    }

    .reel-dot.active {
        background: var(--primary);
        width: 22px;
        border-radius: 4px;
    }
}
