@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&display=swap');

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

body {
    font-family: 'JetBrains Mono', monospace;
    background: #0a0a0a;
    color: #e0e0e0;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
    background-image:
        linear-gradient(rgba(0, 150, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 150, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

header {
    padding: 40px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid #333;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #0096ff;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.logo::after {
    content: '_';
    animation: blink 1s infinite;
    color: #0096ff;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

nav {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-btn {
    background: transparent;
    border: 1px solid #333;
    color: #e0e0e0;
    padding: 12px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.nav-btn:hover {
    border-color: #0096ff;
    color: #0096ff;
    transform: translateY(-2px);
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section {
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #222;
    border-radius: 8px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: slideIn 0.8s ease forwards;
}

.section:nth-child(2) {
    animation-delay: 0.1s;
}

.section:nth-child(3) {
    animation-delay: 0.2s;
}

.section:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0096ff, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section:hover::before {
    opacity: 1;
}

h2 {
    color: #0096ff;
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

h2::before {
    content: '>';
    color: #666;
    font-size: 16px;
}

.section p {
    font-size: 16px;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.section a:hover {
    color: #0096ff;
}

.section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #0096ff;
    transition: width 0.3s ease;
}

.section a:hover::after {
    width: 100%;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: #0096ff;
    box-shadow: 0 8px 32px rgba(0, 150, 255, 0.1);
}

.project-card h3 {
    color: #e0e0e0;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
}

.project-card p {
    font-size: 14px;
    color: #999;
    margin-bottom: 16px;
}

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

.tech-tag {
    background: rgba(0, 150, 255, 0.1);
    color: #0096ff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid rgba(0, 150, 255, 0.2);
}

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

.skill-category {
    flex: 1;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #0096ff, transparent);
    opacity: 0.3;
}

.skill-category h4 {
    color: #0096ff;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-item {
    background: linear-gradient(135deg, rgba(0, 150, 255, 0.08), rgba(0, 150, 255, 0.03));
    color: #e0e0e0;
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 20px;
    border: 1px solid rgba(0, 150, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.skill-item:hover::before {
    left: 100%;
}

.skill-item:hover {
    border-color: #0096ff;
    color: #0096ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 150, 255, 0.15);
}

.socials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.social-platform-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.social-platform-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.5s;
}

.social-platform-btn[data-platform="discord"]::before {
    background: linear-gradient(90deg, transparent, rgba(114, 137, 218, 0.2), transparent);
}

.social-platform-btn[data-platform="youtube"]::before {
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.2), transparent);
}

.social-platform-btn[data-platform="snapchat"]::before {
    background: linear-gradient(90deg, transparent, rgba(255, 252, 0, 0.2), transparent);
}

.social-platform-btn[data-platform="instagram"]::before {
    background: linear-gradient(90deg, transparent, rgba(225, 48, 108, 0.2), transparent);
}

.social-platform-btn[data-platform="x"]::before {
    background: linear-gradient(90deg, transparent, rgba(29, 161, 242, 0.2), transparent);
}

.social-platform-btn[data-platform="bluesky"]::before {
    background: linear-gradient(90deg, transparent, rgba(0, 133, 255, 0.2), transparent);
}

.social-platform-btn[data-platform="roblox"]::before {
    background: linear-gradient(90deg, transparent, rgba(239, 45, 45, 0.2), transparent);
}

.social-platform-btn[data-platform="music"]::before {
    background: linear-gradient(90deg, transparent, rgba(225, 48, 108, 0.2), transparent);
}

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

.social-platform-btn:hover {
    border-color: #0096ff;
    transform: translateY(-4px);
}

.platform-icon {
    width: 35px;
    height: 35px;
    margin-bottom: 4px;
    object-fit: contain;
}

.platform-name {
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.platform-handle {
    color: #999;
    font-size: 12px;
    opacity: 0.8;
}

.social-platform-btn:hover .platform-handle {
    color: #b0b0b0;
}

.social-platform-btn[data-platform="discord"]:hover {
    border-color: #7289da;
    box-shadow: 0 8px 32px rgba(114, 137, 218, 0.3);
}

.social-platform-btn[data-platform="discord"]:hover .platform-name {
    color: #7289da;
}

.social-platform-btn[data-platform="youtube"]:hover {
    border-color: #ff0000;
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.3);
}

.social-platform-btn[data-platform="youtube"]:hover .platform-name {
    color: #ff0000;
}

.social-platform-btn[data-platform="snapchat"]:hover {
    border-color: #fffc00;
    box-shadow: 0 8px 32px rgba(255, 252, 0, 0.3);
}

.social-platform-btn[data-platform="snapchat"]:hover .platform-name {
    color: #fffc00;
}

.social-platform-btn[data-platform="instagram"]:hover {
    border-color: #e1306c;
    box-shadow: 0 8px 32px rgba(225, 48, 108, 0.3);
}

.social-platform-btn[data-platform="instagram"]:hover .platform-name {
    color: #e1306c;
}

.social-platform-btn[data-platform="x"]:hover {
    border-color: #1da1f2;
    box-shadow: 0 8px 32px rgba(29, 161, 242, 0.3);
}

.social-platform-btn[data-platform="x"]:hover .platform-name {
    color: #1da1f2;
}

.social-platform-btn[data-platform="bluesky"]:hover {
    border-color: #0085ff;
    box-shadow: 0 8px 32px rgba(0, 133, 255, 0.3);
}

.social-platform-btn[data-platform="bluesky"]:hover .platform-name {
    color: #0085ff;
}

.social-platform-btn[data-platform="roblox"]:hover {
    border-color: #ef2d2d;
    box-shadow: 0 8px 32px rgba(239, 45, 45, 0.3);
}

.social-platform-btn[data-platform="roblox"]:hover .platform-name {
    color: #ef2d2d;
}

.social-platform-btn[data-platform="music"]:hover {
    border-color: #e1306c;
    box-shadow: 0 8px 32px rgba(225, 48, 108, 0.3);
}

.social-platform-btn[data-platform="music"]:hover .platform-name {
    color: #e1306c;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid #333;
    margin-top: 60px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-btn {
    width: 44px;
    height: 44px;
    background: #f7af13;
    border: 1px solid #efa206;
    color: #b0b0b0;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon1 {
    width: 50px;
    height: 50px;
    object-fit: fill;
}

.social-icon2 {
    width: 50px;
    height: 50px;
    object-fit: fill;
}

.social-icon3 {
    width: 30px;
    height: 30px;
    margin-bottom: -5px;
    object-fit: fill;
}

.social-btn:hover {
    border-color: #ff6f00;
    color: #ff8400;
    transform: translateY(-2px);
}

.footer-text {
    font-size: 12px;
    color: #666;
}

@media (max-width: 768px) {
    .logo {
        font-size: 24px;
    }

    nav {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

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

    .skills-container {
        flex-direction: column;
        gap: 16px;
    }

    .skill-category {
        min-width: unset;
    }

    .socials-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    main {
        padding: 40px 16px;
    }

    .section {
        padding: 24px;
    }
}

.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: #0096ff;
    z-index: 1000;
    transition: width 0.3s ease;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal:not(.hidden) {
    opacity: 1;
    visibility: visible;
}

.modal.hidden {
    opacity: 0;
    visibility: hidden;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid #0096ff;
    padding: 20px 30px;
    color: #fff;
    border-radius: 8px;
    max-width: 90%;
    text-align: center;
    transform: scale(0.8) translateY(-20px);
    transition: all 0.3s ease;
}

.modal-content button {
    margin-top: 16px;
    padding: 10px 20px;
    background: #0096ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
}

.modal-content button:hover {
    opacity: 0.9;
}

.modal:not(.hidden) .modal-content {
    transform: scale(1) translateY(0);
}

.jr-modal-content {
    max-width: 600px;
    width: 90%;
    background: #0a0a0a;
    border: 1px solid #0096ff;
    color: #fff;
}

.jr-modal-content h3 {
    color: #0096ff;
    margin-bottom: 16px;
    font-size: 18px;
}

.jr-modal-content button {
    background: #0096ff;
    color: #fff;
}

.jr-modal-content button:hover {
    background: #0078cc;
}

.jr-projects {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.jr-project-item {
    background: rgba(0, 150, 255, 0.033);
    border: 1px solid rgba(0, 150, 255, 0.2);
    border-radius: 8px;
    padding: 16px;
    text-align: left;
}

.jr-project-item h4 {
    color: #e0e0e0;
    margin-bottom: 8px;
    font-size: 16px;
}

.jr-project-item p {
    color: #b0b0b0;
    margin-bottom: 12px;
    font-size: 14px;
}

.jr-project-item a {
    color: #0096ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.jr-project-item a:hover {
    color: #0078cc;
    text-decoration: underline;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.album-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.album-card:hover {
    transform: translateY(-8px);
    border-color: #0096ff;
    box-shadow: 0 12px 40px rgba(0, 150, 255, 0.2);
}

.album-cover {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: rgba(0, 150, 255, 0.05);
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-card:hover .album-cover img {
    transform: scale(1.05);
}

.album-card h3 {
    color: #e0e0e0;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 16px 8px;
}

.album-card p {
    color: #999;
    font-size: 13px;
    padding: 0 16px 16px;
    margin: 0;
}

.security-modal-content {
    max-width: 400px;
    width: 90%;
}

.security-modal-content input {
    width: 100%;
    padding: 12px;
    margin: 16px 0;
    background: #1a1a1a;
    border: 1px solid #0096ff;
    color: #e0e0e0;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
}

.security-modal-content button {
    margin: 8px 8px 8px 0;
    padding: 10px 20px;
    background: #0096ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    transition: background 0.3s ease;
}

.security-modal-content button:hover {
    background: #0078cc;
}

.album-viewer-content {
    max-width: 800px;
    width: 90%;
    background: #0a0a0a;
    position: relative;
}

.album-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px;
}

#current-image {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-arrow {
    background: rgba(0, 150, 255, 0.2);
    border: 1px solid #0096ff;
    color: #0096ff;
    font-size: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background: rgba(0, 150, 255, 0.4);
    transform: scale(1.1);
}

.image-counter {
    text-align: center;
    padding: 16px;
    color: #999;
    font-size: 14px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 150, 255, 0.2);
    border: 1px solid #0096ff;
    color: #0096ff;
    font-size: 28px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-btn:hover {
    background: rgba(0, 150, 255, 0.4);
}

.social-verification {
    background: rgba(0, 150, 255, 0.05);
    border: 1px solid rgba(0, 150, 255, 0.2);
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

.social-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
}

.social-check-item:last-child {
    margin-bottom: 0;
}

.social-check-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.social-check-item span {
    flex: 1;
    color: #e0e0e0;
}

.verify-btn {
    background: rgba(0, 150, 255, 0.2);
    border: 1px solid #0096ff;
    color: #0096ff;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
}

.verify-btn:hover:not(:disabled) {
    background: rgba(0, 150, 255, 0.4);
    transform: translateY(-2px);
}

.verify-btn.verified {
    background: rgba(0, 200, 0, 0.2);
    border-color: #00c800;
    color: #00c800;
    cursor: default;
}

.verify-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.verify-status {
    transition: all 0.3s ease;
}

@property --bg-angle {
    inherits: false;
    initial-value: 0deg;
    syntax: "<angle>";
}

@keyframes spin {
    to {
        --bg-angle: 360deg;
    }
}

.music-modal-content {
    max-width: 500px;
    width: 90%;
    background:
        linear-gradient(to bottom,
            #1a1a1a,
            #1a1a1a) padding-box,
        conic-gradient(from var(--bg-angle),
            #e1306c,
            #f77737,
            #fcaf45,
            #feda75,
            #f77737,
            #e1306c) border-box;

    border: 2px solid transparent;
    animation: spin 3s infinite linear;
}

.music-modal-content h3 {
    background-image: -webkit-linear-gradient(125deg, #e1306c, #ff6b6b, #ff8e26, #ffcc33, #ff8e26, #ff6b6b, #e1306c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 700;
    background-size: 200% 200%;
    -webkit-animation: sunset-shift 4s ease-in-out infinite;
    animation: sunset-shift 4s ease-in-out infinite;
}

@-webkit-keyframes sunset-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes sunset-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.music-playlists {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.music-playlist-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    color: #e0e0e0;
}

.music-playlist-btn:hover {
    border-color: #0096ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 150, 255, 0.15);
}

.playlist-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.material-icons {
    font-size: 35px;
}

.platform-icon.material-icons {
    font-family: 'Material Icons' !important;
    font-size: 40px;
    background: linear-gradient(135deg, #e13030 5%, #e1306c 20%, #f77737 75%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: auto !important;
    height: auto !important;
    margin-bottom: 4px;
}

.music-playlist-btn:nth-child(1),
.music-playlist-btn:nth-child(2) {
    background:
        linear-gradient(to bottom,
            #0a0a0a,
            #0a0a0a) padding-box,
        conic-gradient(from var(--bg-angle),
            #e1306c,
            #f77737,
            #fcaf45,
            #feda75,
            #f77737,
            #e1306c) border-box;
    border: 2px solid transparent;
    animation: spin 3s infinite linear;
    transition: all 0.3s ease;
}

.music-playlist-btn:nth-child(1):hover,
.music-playlist-btn:nth-child(2):hover {
    background:
        linear-gradient(to bottom,
            #0a0a0a,
            #0a0a0a) padding-box,
        conic-gradient(from var(--bg-angle),
            #e1306c,
            #f77737,
            #fcaf45,
            #feda75,
            #f77737,
            #e1306c) border-box;
    border: 2px solid transparent;
    animation-play-state: running;
    box-shadow: none;
    transform: translateY(-2px);
}

.music-playlist-btn:nth-child(1) span,
.music-playlist-btn:nth-child(2) span {
    color: #e0e0e0;
}

.music-modal-content button {
    background: linear-gradient(90deg, #e1306c, #ff6b6b, #ff8e26, #ffcc33, #ff8e26, #ff6b6b, #e1306c);
    background-size: 400% 100%;
    animation: sunset-flow 6s linear infinite;
    color: #fff;
    border: none;
    margin-top: 16px;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

@keyframes sunset-flow {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 400% 0%;
    }
}

.music-modal-content button:hover {
    transform: translateY(-2px);
    box-shadow: none;
    animation-duration: 4s;
}

.music-modal-content button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.music-modal-content button:hover::before {
    transform: translateX(100%);
}