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

html, body {
    height: 100%;
}

body {
    font-family: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: #333;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle 500px at var(--mouse-x, 0) var(--mouse-y, 0), rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.15) 40%, transparent 80%);
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle 300px at var(--mouse-x, 0) var(--mouse-y, 0), rgba(240, 147, 251, 0.1), transparent 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo {
    font-size: 1.5em;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
}

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

.nav-link {
    color: #aaa;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

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

.nav-link.active {
    color: #667eea;
}

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

.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    padding-top: 100px;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

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

.profile {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 50px 30px;
    border-radius: 30px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.6s ease-out;
}

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

.avatar {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('/images/509241499_18049307630455077_8384849640366132549_n.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
    animation: float 3s ease-in-out infinite;
}

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

.profile h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.15em;
    color: #aaa;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.intro-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    animation: slideUp 0.6s ease-out 0.2s both;
}

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

.intro-section h2 {
    color: #ffffff;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.intro-section p {
    color: #bbb;
    line-height: 1.6;
    font-size: 1em;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 35px;
    justify-content: center;
    position: relative;
    z-index: 100;
}

.social-btn-wrapper {
    position: relative;
    z-index: 100;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 14px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.6s ease-out both;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: 0;
}

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

.social-btn span, .social-btn i {
    position: relative;
    z-index: 1;
}

.social-btn i {
    font-size: 1.5em;
}

.social-btn span {
    display: none;
}

.social-btn:hover {
    width: 150px;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.social-btn:hover span {
    display: inline;
}

.social-btn:hover i {
    margin-right: 8px;
}

.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #833AB4 100%);
}

.tiktok {
    background: linear-gradient(135deg, #000000 0%, #69C9D0 100%);
}

.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

.snapchat {
    background: linear-gradient(135deg, #FFFC00 0%, #FFD700 100%);
    color: #333 !important;
}

.soundcloud {
    background: linear-gradient(135deg, #FF5500 0%, #FF7700 100%);
}

.discord {
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
}

.github {
    background: linear-gradient(135deg, #333 0%, #555 100%);
}

.dropdown-menu {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 10px;
    min-width: 150px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 9999;
}

.dropdown-menu.active {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    pointer-events: all;
    z-index: 9999;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.about-section {
    min-height: auto;
    padding: 0 20px 80px 20px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.about-section h2 {
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 25px;
}

.about-section p {
    color: #bbb;
    line-height: 1.8;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.skill-tag {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95em;
    border: 1px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.page-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 100px;
    padding-bottom: 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    animation: slideDown 0.6s ease-out;
}

.page-header h1 {
    font-size: 3em;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-header p {
    color: #aaa;
    font-size: 1.2em;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.music-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out both;
}

.music-card:nth-child(1) { animation-delay: 0.2s; }
.music-card:nth-child(2) { animation-delay: 0.3s; }
.music-card:nth-child(3) { animation-delay: 0.4s; }
.music-card:nth-child(4) { animation-delay: 0.5s; }

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.music-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.music-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.music-card p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.listen-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.listen-btn:hover {
    background: #764ba2;
    transform: translateY(-3px);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: slideUp 0.6s ease-out both;
}

.project-card:nth-child(1) { animation-delay: 0.2s; }
.project-card:nth-child(2) { animation-delay: 0.3s; }
.project-card:nth-child(3) { animation-delay: 0.4s; }
.project-card:nth-child(4) { animation-delay: 0.5s; }

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.project-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.project-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.project-card p {
    color: #aaa;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95em;
}

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

.project-tags span {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85em;
}

.view-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.view-btn:hover {
    background: #764ba2;
    transform: translateY(-3px);
}

footer {
    text-align: center;
    color: #666;
    font-size: 0.95em;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 30px 20px;
    position: relative;
    z-index: 2;
}

.heart {
    color: #ff6b9d;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(1); }
}

.soundcloud-embed {
    max-width: 600px;
    margin: 40px auto;
}

.soundcloud-embed iframe {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 30px auto;
    animation: slideUp 0.6s ease-out 0.2s both;
}

.form-group {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95em;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 12px 15px;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: #667eea;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.3);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
    animation: slideUp 0.6s ease-out 0.1s both;
}

.contact-intro p {
    color: #aaa;
    font-size: 1.2em;
    font-weight: 500;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    margin: 30px auto;
    animation: slideUp 0.6s ease-out 0.2s both;
    text-align: center;
}

.contact-label {
    color: #aaa;
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-email {
    display: inline-block;
    margin-top: 15px;
    font-size: 1.5em;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.contact-email::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.contact-email:hover {
    color: #764ba2;
}

.contact-email:hover::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.hamburger-menu.active {
    transform: rotate(180deg);
}

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

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

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

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

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

    .nav-link {
        display: block;
        padding: 16px 20px;
        color: #aaa;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-link.active {
        color: #667eea;
        background: rgba(102, 126, 234, 0.1);
    }
}

@media (max-width: 600px) {
    .profile h1 {
        font-size: 2.2em;
    }
    
    .social-btn {
        width: 45px;
        height: 45px;
        padding: 12px 12px;
    }
    
    .profile {
        padding: 40px 25px;
    }
    
    .about-section h2 {
        font-size: 2em;
    }
    
    .about-section p {
        font-size: 1em;
    }

    .page-header h1 {
        font-size: 2em;
    }

    .music-grid, .projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .profile h1 {
        font-size: 1.8em;
    }

    .tagline {
        font-size: 1em;
    }

    .nav-logo {
        font-size: 1.3em;
    }

    .social-btn {
        width: 48px;
        height: 48px;
    }

    .profile {
        padding: 30px 20px;
    }

    .about-container {
        padding: 30px 20px;
    }

    .page-header h1 {
        font-size: 1.5em;
    }

    .intro-section h2 {
        font-size: 1.5em;
    }
}