/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #c9a96e;
    --gold-light: #e0c88a;
    --dark: #100a0c;
    --dark-2: #141414;
    --dark-3: #1e1e1e;
    --light: #f3eae1;
    --gray: #888;
    --spotify: #1db954;
    --youtube: #ff0000;
    --instagram: #e4405f;
    --facebook: #1877f2;
    --transition: all 0.3s ease;
}

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

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

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

img {
    max-width: 100%;
    display: block;
}

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

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 1px;
    font-style: italic;
}

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

.nav-link {
    color: var(--light);
    font-size: 0.95rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--gold);
}

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
}

/* === HERO === */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1015 40%, #0f0a0c 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/foto-luimy-2.png') center/cover no-repeat;
    opacity: 0.15;
    filter: blur(3px);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, transparent 30%, transparent 60%, rgba(10,10,10,0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    width: 100%;
    padding: 120px 60px 60px;
    gap: 60px;
}

.hero-text-side {
    flex: 1;
    text-align: left;
}

.hero-image-side {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3/4;
    border-radius: 200px 200px 12px 12px;
    overflow: hidden;
    box-shadow: 0 30px 100px rgba(201,169,110,0.15), 0 0 0 2px rgba(201,169,110,0.3), 0 0 60px rgba(201,169,110,0.1);
    transform: rotate(-2deg);
    transition: transform 0.6s ease;
}

.hero-image-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,169,110,0.1) 0%, transparent 40%, transparent 60%, rgba(201,169,110,0.08) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-artist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: contrast(1.1) saturate(1.15) brightness(0.95) sepia(0.08);
    transition: filter 0.6s ease;
}

.hero-image-frame:hover .hero-artist-photo {
    filter: contrast(1.05) saturate(1.25) brightness(1) sepia(0);
}

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(201,169,110,0.12) 0%, transparent 50%),
        linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.4) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(243, 234, 225, 0.6);
    margin-bottom: 32px;
    line-height: 1.6;
    font-style: italic;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    animation: fadeInUp 1.2s ease;
}

.hero-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    color: var(--light);
    letter-spacing: 2px;
    font-style: italic;
    font-weight: 600;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
}

.hero-tagline {
    font-size: clamp(0.9rem, 3vw, 1.3rem);
    color: var(--gold);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: var(--gray);
    margin-bottom: 35px;
    letter-spacing: 2px;
}

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

.btn {
    padding: 14px 35px;
    border: 2px solid transparent;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.8rem;
    background: var(--spotify);
    color: white;
}

.btn-small:hover {
    background: #1ed760;
}

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

.hero-socials a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.hero-socials a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 24px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--light);
    letter-spacing: 1px;
    font-style: italic;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 20px auto;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1rem;
    margin-top: 10px;
}

/* === ABOUT === */
.about {
    padding: 100px 0;
    background: var(--dark-2);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    filter: grayscale(20%);
    transition: var(--transition);
}

.about-image:hover img {
    filter: grayscale(0%);
}

.about-image-frame {
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--gold);
    border-radius: 10px;
    z-index: -1;
}

.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-style: italic;
}

.about-stage-name {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1rem;
}

.about-text p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--dark-3);
    border-radius: 10px;
    border-top: 2px solid var(--gold);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 5px;
}

/* === MUSIC === */
.music {
    padding: 100px 0;
    background: var(--dark);
}

.spotify-player-wrapper {
    max-width: 800px;
    margin: 0 auto 60px;
    background: var(--dark-2);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.player-title {
    padding: 20px;
    background: var(--spotify);
    color: white;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.player-title i {
    font-size: 1.5rem;
}

.spotify-player-wrapper iframe {
    display: block;
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.song-card {
    background: var(--dark-2);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.song-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.song-rank {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--gold);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
}

.song-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center;
    background: #0d0d0d;
    padding: 8px;
    box-sizing: border-box;
}

.song-info {
    padding: 18px;
}

.song-info h4 {
    color: var(--light);
    font-size: 1rem;
    margin-bottom: 5px;
}

.song-info p {
    color: var(--gray);
    font-size: 0.85rem;
}

.play-btn {
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--spotify);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
}

.song-card:hover .play-btn {
    opacity: 1;
}

.play-btn:hover {
    transform: scale(1.1);
}

/* Albums */
.subsection-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--light);
    margin-bottom: 30px;
    text-align: center;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.album-card {
    background: var(--dark-2);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.album-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.album-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    object-position: center top;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #0d0d0d;
    padding: 8px;
    box-sizing: border-box;
}

.album-card h4 {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.album-card p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

/* === VIDEOS === */
.videos {
    padding: 100px 0;
    background: var(--dark-2);
}

.featured-video {
    max-width: 900px;
    margin: 0 auto 50px;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.featured-video iframe,
#yt-player-wrapper {
    width: 100%;
    height: 100%;
    border: none;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.video-card {
    cursor: pointer;
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumb {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumb img {
    transform: scale(1.1);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    transition: var(--transition);
}

.video-card:hover .video-play {
    opacity: 1;
}

.video-card h4 {
    color: var(--light);
    font-size: 0.95rem;
    margin-top: 12px;
    padding: 0 5px;
}

.see-more-videos {
    text-align: center;
    margin-top: 50px;
}

/* === GALLERY === */
.gallery {
    padding: 100px 0;
    background: var(--dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    transition: var(--transition);
    background: #0d0d0d;
    padding: 4px;
    box-sizing: border-box;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

/* === CONTACT === */
.contact {
    padding: 100px 0;
    background: var(--dark-2);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.contact-card {
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-card i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--light);
}

.contact-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.contact-card span {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card:hover span {
    letter-spacing: 1px;
}

.spotify-card:hover { background: rgba(29, 185, 84, 0.1); border-color: var(--spotify); }
.spotify-card:hover i { color: var(--spotify); }

.youtube-card:hover { background: rgba(255, 0, 0, 0.1); border-color: var(--youtube); }
.youtube-card:hover i { color: var(--youtube); }

.instagram-card:hover { background: rgba(228, 64, 95, 0.1); border-color: var(--instagram); }
.instagram-card:hover i { color: var(--instagram); }

.facebook-card:hover { background: rgba(24, 119, 242, 0.1); border-color: var(--facebook); }
.facebook-card:hover i { color: var(--facebook); }

/* === FOOTER === */
.footer {
    background: var(--dark);
    padding: 50px 0 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

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

.footer-logo h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-size: 1.5rem;
    letter-spacing: 1px;
    font-style: italic;
}

.footer-logo p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 5px;
}

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

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--light);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

/* === SPOTIFY MODAL === */
.spotify-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

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

.spotify-modal-content {
    background: var(--dark-2);
    border-radius: 15px;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    position: relative;
}

.spotify-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1;
}

#spotify-modal-iframe {
    border-radius: 10px;
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(10px, 10px); }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.4s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    .hamburger {
        display: flex;
    }

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

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

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

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto 30px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 480px) {
    .songs-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === PLATFORMS SECTION === */
.platforms {
    padding: 100px 0;
    background: var(--dark);
}

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

.platform-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px 20px;
    background: var(--dark-2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--platform-color, var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--platform-color, var(--gold));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.platform-card:hover::before {
    transform: scaleX(1);
}

.platform-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.6rem;
    color: white;
    background: var(--platform-color, var(--gold));
    transition: var(--transition);
}

.platform-card:hover .platform-icon {
    transform: scale(1.1);
}

.platform-info h3 {
    font-size: 1.1rem;
    color: var(--light);
    margin-bottom: 3px;
}

.platform-followers {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.platform-cta {
    font-size: 0.8rem;
    color: var(--gray);
    transition: var(--transition);
}

.platform-card:hover .platform-cta {
    color: var(--platform-color, var(--gold));
    letter-spacing: 0.5px;
}

/* Platform colors */
.spotify-platform { --platform-color: #1db954; }
.apple-platform { --platform-color: #fa2d48; }
.youtube-platform { --platform-color: #ff0000; }
.ytmusic-platform { --platform-color: #ff0000; }
.deezer-platform { --platform-color: #a238ff; }
.tidal-platform { --platform-color: #000000; }
.tidal-platform .platform-icon { background: #1a1a1a; border: 2px solid #fff; }
.soundcloud-platform { --platform-color: #ff5500; }
.tiktok-platform { --platform-color: #ff0050; }
.instagram-platform { --platform-color: #e4405f; }
.facebook-platform { --platform-color: #1877f2; }

/* === TIKTOK CONTACT CARD === */
.tiktok-contact-card:hover { background: rgba(255, 0, 80, 0.1); border-color: #ff0050; }
.tiktok-contact-card:hover i { color: #ff0050; }

/* === EMAIL CONTACT CARD === */
.email-card:hover { background: rgba(212, 175, 55, 0.1); border-color: var(--gold); }
.email-card:hover i { color: var(--gold); }

/* === HERO SOCIALS SCROLLABLE === */
.hero-socials {
    flex-wrap: wrap;
    max-width: 500px;
}

/* === RESPONSIVE PLATFORMS === */
@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-card {
        padding: 18px 15px;
        gap: 14px;
    }
    
    .platform-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.3rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-socials {
        gap: 12px;
    }
    
    .hero-socials a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* YouTube Autoplay Modal */
.yt-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
}
.yt-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #100a0c;
    border-radius: 12px;
    overflow: hidden;
}
.yt-modal-close {
    position: absolute;
    top: -40px; right: 0;
    color: #f3eae1;
    font-size: 36px;
    cursor: pointer;
    z-index: 1;
}
#yt-modal-iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
}


/* Split hero responsive */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 100px 24px 60px;
    }
    .hero-text-side {
        text-align: center;
    }
    .hero-image-side {
        display: none;
    }
    .hero-buttons {
        justify-content: center !important;
    }
    .hero-socials {
        justify-content: center !important;
    }
}

@media (max-width: 768px) {
    .hero-name {
        font-size: clamp(2.5rem, 12vw, 4rem) !important;
    }
    .hero-description {
        font-size: 0.95rem;
    }
}

/* Decorative ring behind hero photo */
.hero-image-side::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(201,169,110,0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: spin 60s linear infinite;
}

.hero-image-side::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px dashed rgba(201,169,110,0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: spin 40s linear infinite reverse;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-image-side {
    position: relative;
}
