* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; [[1]]
}

body, html {
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: #0d0d0d;
    color: white;
    overflow-x: hidden;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: auto;
    padding: 2rem;
}

#backgroundCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #0d0d0d;
}

.header {
    text-align: center;
    padding: 3rem 0;
    animation: fadeInUp 1s ease-out;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    transition: transform 0.6s ease-in-out;
    border: 2px solid #ff69b4;
}

.avatar:hover {
    transform: rotate(360deg) scale(1.1);
}

.subtitle {
    margin-top: 1rem;
    font-size: 1.1rem;
    opacity: 0.8;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    background: linear-gradient(45deg, #ff69b4, #ff10f0);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn i {
    margin-right: 0.5rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 105, 180, 0.6);
}

.projects {
    animation: fadeInUp 1s ease-out;
    padding-bottom: 3rem;
}

.projects h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ff69b4;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: rgba(255, 105, 180, 0.15);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.footer {
    text-align: center;
    padding: 2rem 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 3;
}

.modal-content {
    background-color: #1a1a1a;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    position: relative;
    animation: zoomIn 0.3s ease;
}

.modal-content h2 {
    margin-bottom: 1rem;
}

.modal-content ul {
    list-style: none;
    padding-left: 0;
}

.modal-content li {
    margin-bottom: 0.5rem;
}

#closeModal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

@keyframes fadeInUp {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: translateY(0);}
}

@keyframes zoomIn {
    from {transform: scale(0.7); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.audio-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 4;
}

#toggleAudio {
    background: #ff69b4;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
}

.volume-slider-container {
    position: relative;
    width: 100px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    cursor: pointer;
}

.volume-slider-handle {
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #ff69b4;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff69b4;
    cursor: grab;
    transition: background 0.2s;
}

#skillsList li {
    margin-bottom: 0.5rem;
}

.icon-l {
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    border-radius: 50%;
    background-color: #28a745;
    color: white;
    margin-right: 0.5rem;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 0 6px rgba(40, 167, 69, 0.6);
    transition: transform 0.2s ease;
}

.btn:hover .icon-l {
    transform: scale(1.1);
}