/* ================================================
   MODERN PORTFOLIO - CEM KAZIM
   Digital Playground Theme
   ================================================ */

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

:root {
    /* Modern Color Palette */
    --neon-pink: #FF006E;
    --electric-blue: #3A86FF;
    --cyber-purple: #8338EC;
    --lime-green: #06FFA5;
    --sunset-orange: #FB5607;

    /* Neutrals */
    --dark-bg: #0A0A0F;
    --card-bg: #1A1A2E;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0B2;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--neon-pink), var(--electric-blue));
    --gradient-secondary: linear-gradient(135deg, var(--cyber-purple), var(--electric-blue));
    --gradient-accent: linear-gradient(135deg, var(--sunset-orange), var(--neon-pink));

    /* Shadows & Effects */
    --glow-pink: 0 0 30px rgba(255, 0, 110, 0.3);
    --glow-blue: 0 0 30px rgba(58, 134, 255, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);

    /* Spacing */
    --section-padding: 120px 0;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
}

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

/* ========== MINIMAL BUTTONS ========== */
.btn-minimal {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.btn-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.btn-minimal:hover::before {
    left: 100%;
}

.btn-minimal i {
    font-size: 18px;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

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

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

/* ========== MORPHING BLOBS ========== */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: blobMorph 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-secondary);
    bottom: -10%;
    right: -10%;
    animation-delay: 5s;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: var(--gradient-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes blobMorph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
        transform: translate(50px, -50px) rotate(90deg);
    }
    50% {
        border-radius: 30% 70% 50% 50% / 60% 30% 70% 40%;
        transform: translate(-50px, 50px) rotate(180deg);
    }
    75% {
        border-radius: 50% 50% 60% 40% / 40% 70% 30% 60%;
        transform: translate(50px, 50px) rotate(270deg);
    }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: var(--transition-smooth);
}

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

.logo {
    position: relative;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 🎯 Geometric Monogram Logo */
.logo-svg {
    width: 45px;
    height: 45px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo-svg {
    transform: scale(1.05);
}

.logo-path {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawPath 2s ease-out forwards;
}

.logo-c {
    animation-delay: 0s;
}

.logo-k .logo-path:nth-child(1) {
    animation-delay: 0.3s;
}

.logo-k .logo-path:nth-child(2) {
    animation-delay: 0.5s;
}

.logo-k .logo-path:nth-child(3) {
    animation-delay: 0.7s;
}

.logo-dot {
    opacity: 0;
    animation: fadeInDot 0.5s ease-out 1.2s forwards;
}

.logo:hover .logo-dot {
    animation: pulse 1s ease-in-out infinite;
}

@keyframes drawPath {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeInDot {
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
}

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

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

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.lang-switcher,
.theme-switcher {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.lang-switcher:hover,
.theme-switcher:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-smooth);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    position: relative;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid var(--neon-pink);
    border-radius: 50px;
    color: var(--neon-pink);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(60px, 12vw, 140px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 40px;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease;
}

.title-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s 0.2s ease backwards;
}

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

.role-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 40px;
    min-width: 250px;
    transition: var(--transition-smooth);
    animation: fadeIn 1s 0.4s ease backwards;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.role-dev {
    border-top: 3px solid var(--electric-blue);
}

.role-music {
    border-top: 3px solid var(--neon-pink);
}

.role-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.role-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.role-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeIn 1s 0.6s ease backwards;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    text-decoration: none;
}

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

.btn-secondary {
    background: transparent;
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-pink);
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s 0.8s ease backwards;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}


/* ========== SECTIONS ========== */
.about-section,
.work-section,
.music-section,
.contact-section {
    padding: var(--section-padding);
    position: relative;
}

.section-title {
    text-align: center;
    font-family: 'Syne', sans-serif;
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    margin-bottom: 80px;
    position: relative;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ========== BENTO GRID ========== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.bento-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.bento-large {
    grid-column: span 2;
}

.bento-medium {
    grid-column: span 1;
}

.bento-small {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.bento-card:hover .card-glow {
    opacity: 0.1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 32px;
    color: var(--neon-pink);
}

.card-header h3 {
    font-size: 24px;
    font-weight: 700;
}

.tech-stack,
.genre-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tech-tag,
.genre-tag {
    padding: 8px 16px;
    background: rgba(58, 134, 255, 0.1);
    border: 1px solid var(--electric-blue);
    border-radius: 20px;
    font-size: 13px;
    color: var(--electric-blue);
}

.genre-tag {
    background: rgba(255, 0, 110, 0.1);
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}

/* Card Flip Effect */
.card-flip {
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-flip:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.card-front i {
    font-size: 40px;
    color: var(--neon-pink);
}

.card-back {
    transform: rotateY(180deg);
    background: var(--gradient-primary);
    border-radius: 24px;
}

/* Location Card */
.location-card {
    text-align: center;
}

.location-card i {
    font-size: 40px;
    color: var(--lime-green);
    margin-bottom: 15px;
}

.timezone {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ========== EDUCATION SECTION ========== */
.education-section {
    background: rgba(58, 134, 255, 0.03);
    position: relative;
}

.education-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.edu-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.edu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--electric-blue);
}

.edu-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.edu-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.edu-content h4 {
    color: var(--electric-blue);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
}

.edu-year {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(58, 134, 255, 0.1);
    border: 1px solid var(--electric-blue);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--electric-blue);
}

.edu-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ========== WORK SECTION ========== */
.experience-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    align-items: start;
}

.exp-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.exp-card.expanded {
    min-height: auto;
}

.exp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: var(--electric-blue);
}

.exp-year {
    display: inline-block;
    padding: 6px 15px;
    background: var(--gradient-primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.exp-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.exp-card h4 {
    color: var(--neon-pink);
    font-size: 18px;
    margin-bottom: 15px;
}

.exp-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.exp-details {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    position: relative;
}

.exp-details.has-blur {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, transparent 100%);
}

.exp-card.expanded .exp-details.has-blur {
    mask-image: none;
    -webkit-mask-image: none;
}

.exp-details li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.exp-details li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--electric-blue);
    font-size: 18px;
    line-height: 1.6;
}

.exp-detail-hidden {
    display: block !important;
    max-height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    transition: max-height 0.6s ease, opacity 0.5s ease, margin-bottom 0.6s ease, padding-top 0.6s ease !important;
}

.exp-detail-visible {
    display: block !important;
    max-height: 1000px !important;
    opacity: 1 !important;
    margin-bottom: 12px !important;
    padding-top: 0 !important;
}

.exp-card.expanded .exp-detail-hidden {
    max-height: 1000px !important;
    opacity: 1 !important;
    margin-bottom: 12px !important;
    padding-top: 0 !important;
}

.exp-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(58, 134, 255, 0.1);
    border: 1px solid rgba(58, 134, 255, 0.3);
    border-radius: 20px;
    color: var(--electric-blue);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.exp-toggle-btn:hover {
    background: rgba(58, 134, 255, 0.2);
    border-color: var(--electric-blue);
    transform: translateY(-2px);
}

.exp-toggle-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.exp-card.expanded .exp-toggle-btn i {
    transform: rotate(180deg);
}

.exp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.exp-tags span {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 12px;
}

/* Projects */
.projects-subtitle {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
    display: block;
}

.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-card);
    border-color: var(--electric-blue);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-header i {
    font-size: 36px;
    color: var(--neon-pink);
}

.project-stars {
    color: var(--sunset-orange);
    font-size: 14px;
    font-weight: 600;
}

.project-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.project-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

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

.project-tech span {
    padding: 5px 12px;
    background: rgba(58, 134, 255, 0.1);
    border: 1px solid var(--electric-blue);
    border-radius: 15px;
    font-size: 12px;
    color: var(--electric-blue);
}

.github-link-container {
    text-align: center;
}

.btn-github {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-github:hover {
    background: white;
    color: var(--dark-bg);
}

/* ========== MUSIC SECTION ========== */
.music-section {
    background: rgba(255, 0, 110, 0.05);
    position: relative;
}

.music-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="50" opacity="0.05">🎸</text></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.section-title.light {
    color: var(--text-primary);
}

.spotify-embed {
    max-width: 800px;
    margin: 0 auto 80px;
}

.spotify-embed h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.albums-showcase h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.album-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: inherit;
    display: block;
}

.album-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow-pink);
}

.album-cover {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Unique gradients for each album */
.album-cover-pusu {
    background: linear-gradient(135deg, #FF006E 0%, #8338EC 50%, #3A86FF 100%);
}

.album-cover-sanri {
    background: linear-gradient(135deg, #FB5607 0%, #FF006E 50%, #8338EC 100%);
}

.album-cover-monolog {
    background: linear-gradient(135deg, #3A86FF 0%, #06FFA5 50%, #8338EC 100%);
}

.album-cover-yakapaca {
    background: linear-gradient(135deg, #8338EC 0%, #FF006E 50%, #FB5607 100%);
}

.album-title-overlay {
    position: absolute;
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 1;
    text-align: center;
    pointer-events: none;
}

.album-icon {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.3);
}

.album-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 2;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--neon-pink);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

.album-info {
    padding: 20px;
    text-align: center;
}

.album-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.album-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

.music-platforms {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.platform-btn.spotify {
    background: #1DB954;
    color: white;
}

.platform-btn.youtube {
    background: #FF0000;
    color: white;
}

.platform-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ========== CONTACT SECTION ========== */
.contact-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-blue);
    border-color: var(--electric-blue);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}

.contact-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ========== FOOTER ========== */
.footer {
    padding: 10px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 5px 0 0 0;
}

/* 🤯 REALITY GLITCH BUTTON */
.reality-glitch-btn {
    position: relative;
    background: linear-gradient(45deg, #000, #1a1a1a);
    color: #00ff41;
    padding: 18px 40px;
    border-radius: 12px;
    border: 2px solid #00ff41;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px #00ff41, 0 0 20px #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5), inset 0 0 20px rgba(0, 255, 65, 0.1);
}

.reality-glitch-btn:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.8), inset 0 0 30px rgba(0, 255, 65, 0.2);
    animation: btnGlitch 0.3s infinite;
}

.glitch-text {
    position: relative;
    font-weight: 900;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.reality-glitch-btn:hover .glitch-text::before {
    color: #ff00ff;
    animation: glitchTop 0.3s infinite;
    opacity: 0.8;
}

.reality-glitch-btn:hover .glitch-text::after {
    color: #00ffff;
    animation: glitchBottom 0.3s infinite reverse;
    opacity: 0.8;
}

.glitch-icon {
    font-size: 20px;
    animation: iconPulse 1s infinite;
}

@keyframes btnGlitch {
    0%, 100% { transform: scale(1.05) rotate(-1deg); }
    25% { transform: scale(1.05) rotate(1deg) translateX(-2px); }
    75% { transform: scale(1.05) rotate(-1deg) translateX(2px); }
}

@keyframes glitchTop {
    0% { transform: translateX(0); }
    20% { transform: translateX(-3px) translateY(-3px); }
    40% { transform: translateX(3px) translateY(3px); }
    60% { transform: translateX(-3px) translateY(-3px); }
    80% { transform: translateX(3px) translateY(3px); }
    100% { transform: translateX(0); }
}

@keyframes glitchBottom {
    0% { transform: translateX(0); }
    20% { transform: translateX(3px) translateY(3px); }
    40% { transform: translateX(-3px) translateY(-3px); }
    60% { transform: translateX(3px) translateY(3px); }
    80% { transform: translateX(-3px) translateY(-3px); }
    100% { transform: translateX(0); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(20deg); }
}

/* 🌀 REALITY GLITCH MODE EFFECTS */
.glitch-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
    mix-blend-mode: screen;
}

.glitch-active {
    animation: screenShake 0.5s infinite, rgbSplit 0.3s infinite;
}

.matrix-rain {
    position: fixed;
    inset: 0;
    z-index: 99998;
    pointer-events: none;
}

.vhs-static {
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    z-index: 99997;
    pointer-events: none;
    opacity: 0;
    animation: vhsNoise 0.1s infinite;
}

.error-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    border: 3px solid #ff0000;
    padding: 40px;
    z-index: 100000;
    color: #ff0000;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.8);
    animation: errorShake 0.1s infinite;
}

@keyframes screenShake {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5px, -5px); }
    20% { transform: translate(5px, 5px); }
    30% { transform: translate(-5px, 5px); }
    40% { transform: translate(5px, -5px); }
    50% { transform: translate(-5px, -5px); }
    60% { transform: translate(5px, 5px); }
    70% { transform: translate(-5px, 5px); }
    80% { transform: translate(5px, -5px); }
    90% { transform: translate(-5px, -5px); }
}

@keyframes rgbSplit {
    0% { filter: none; }
    33% { filter: hue-rotate(90deg) contrast(150%); }
    66% { filter: hue-rotate(180deg) saturate(200%); }
    100% { filter: hue-rotate(270deg) brightness(150%); }
}

@keyframes vhsNoise {
    0% { opacity: 0.1; }
    50% { opacity: 0.3; }
    100% { opacity: 0.1; }
}

@keyframes errorShake {
    0%, 100% { transform: translate(-50%, -50%); }
    25% { transform: translate(-52%, -48%); }
    75% { transform: translate(-48%, -52%); }
}

/* ========== MAGNETIC EFFECT ========== */
.magnetic-btn,
.magnetic-card {
    transition: transform 0.2s ease;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    10%, 90% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

@keyframes mouseWheel {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 20px;
        opacity: 0;
    }
}

/* ========== CV MODAL ========== */
.cv-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.cv-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cv-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card), var(--glow-blue);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cv-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.cv-modal-header h3 {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cv-modal-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cv-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cv-download-btn:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--glow-pink);
}

.cv-download-btn i {
    font-size: 18px;
}

.cv-modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cv-modal-close:hover {
    background: rgba(255, 0, 110, 0.2);
    border-color: var(--neon-pink);
    transform: rotate(90deg);
}

.cv-modal-close i {
    font-size: 20px;
}

.cv-modal-body {
    flex: 1;
    padding: 20px;
    overflow: hidden;
}

.cv-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
    background: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0 20px;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        z-index: 999;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    }

    .nav-links.active {
        max-height: 500px;
        opacity: 1;
        padding: 20px;
    }

    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        text-align: left;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
    }

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

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

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

    .bento-large {
        grid-column: span 1;
    }

    .hero-roles {
        flex-direction: column;
    }

    .role-card {
        width: 100%;
    }

    .projects-grid,
    .contact-grid,
    .experience-cards {
        grid-template-columns: 1fr;
    }

    .albums-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .cv-modal-content {
        width: 95%;
        height: 95vh;
    }

    .cv-modal-header {
        padding: 15px 20px;
    }

    .cv-modal-header h3 {
        font-size: 20px;
    }

    .cv-modal-body {
        padding: 10px;
    }
}

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