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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #0a0a1e 0%, #16213e 50%, #1a1a2e 100%);
    color: #fff;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(78, 205, 196, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(155, 89, 182, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(69, 183, 209, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

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

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 8px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.tagline {
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.header-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 5px 10px;
}

.header-nav a:hover {
    color: #4ecdc4;
    text-shadow: 0 0 10px rgba(78, 205, 196, 0.5);
}

.nav-divider {
    color: #4ecdc4;
    opacity: 0.5;
}

.record-player {
    background: transparent;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid rgba(78, 205, 196, 0.1);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.info-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(78, 205, 196, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(78, 205, 196, 0.5);
    color: #4ecdc4;
    font-size: 1.2rem;
    font-weight: bold;
    font-style: italic;
    font-family: Georgia, serif;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.info-btn:hover {
    background: rgba(78, 205, 196, 0.4);
    border-color: rgba(78, 205, 196, 0.8);
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.5);
    color: #fff;
}

.turntable {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 25px;
}

.vinyl-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease;
}

.vinyl::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: repeating-radial-gradient(
        circle at center,
        #000 0px,
        #1a1a1a 2px,
        #000 4px
    );
}

.vinyl.spinning {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-label::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.vinyl-label img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tonearm {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 130px;
    height: 6px;
    background: linear-gradient(90deg, #666 0%, #999 50%, #666 100%);
    border-radius: 3px;
    transform-origin: right center;
    transform: rotate(15deg);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.tonearm::before {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #444;
    border-radius: 50%;
}

.tonearm::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid #888;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.tonearm.playing {
    transform: rotate(-15deg);
}

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

.control-btn {
    background: rgba(58, 58, 78, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.control-btn:hover {
    transform: translateY(-3px);
    background: rgba(58, 58, 78, 0.5);
    border-color: rgba(78, 205, 196, 0.3);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.control-btn:active {
    transform: translateY(0);
}

.play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
    background: rgba(155, 89, 182, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(155, 89, 182, 0.3);
}

.play-btn:hover {
    background: rgba(155, 89, 182, 0.6);
    border-color: rgba(155, 89, 182, 0.5);
}

.track-info {
    text-align: center;
    margin-bottom: 15px;
}

#trackTitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #4ecdc4;
}

.progress-container {
    width: 100%;
    height: 10px;
    background: #1a1a2e;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.progress-container:hover {
    height: 14px;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.3);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #9b59b6, #4ecdc4);
    width: 0%;
    transition: width 0.1s linear;
    pointer-events: none;
}

.progress-tooltip {
    position: absolute;
    bottom: 120%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    pointer-events: none;
    white-space: nowrap;
    display: none;
    z-index: 10;
}

.progress-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.time-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #4ecdc4;
}

.volume-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.volume-icon {
    font-size: 1.2rem;
}

#volumeSlider {
    width: 150px;
    height: 5px;
    -webkit-appearance: none;
    background: #1a1a2e;
    border-radius: 10px;
    outline: none;
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: #4ecdc4;
    border-radius: 50%;
    cursor: pointer;
}

#volumeSlider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #4ecdc4;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

.singles-collection {
    margin-top: 40px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding-left: 10px;
    flex-wrap: wrap;
}

.sort-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-right: 4px;
}

.sort-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(78, 205, 196, 0.3);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s;
}

.sort-btn:hover {
    color: #4ecdc4;
    border-color: #4ecdc4;
}

.sort-btn.active {
    background: #4ecdc4;
    color: #0f0f1a;
    border-color: #4ecdc4;
    font-weight: 500;
}

.recent-caption {
    display: block;
    margin-top: 8px;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    line-height: 1.3;
}

.recent-caption .recent-artist {
    color: #4ecdc4;
}

.artist-section {
    margin-bottom: 50px;
}

.artist-name {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #4ecdc4;
    padding-left: 10px;
    border-left: 4px solid #4ecdc4;
}

.singles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, 200px);
    gap: 30px;
    justify-content: flex-start;
}

.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-arrow-left {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.singles-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-arrow-right {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.singles-grid.carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding-right: 100px;
    justify-content: flex-start;
}

.singles-grid.carousel .single-item {
    flex: 0 0 200px;
    width: 200px;
    max-width: 200px;
}

.carousel-arrow {
    background: rgba(78, 205, 196, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 205, 196, 0.3);
    color: #fff;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease, visibility 0s, opacity 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover:not(:disabled) {
    background: rgba(78, 205, 196, 0.5);
    border-color: rgba(78, 205, 196, 0.5);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.3);
}


.carousel-arrow-left {
    padding-right: 4px;
}

.carousel-arrow-right {
    padding-left: 4px;
}

.single-item {
    background: rgba(42, 42, 62, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 205, 196, 0.1);
    border-radius: 15px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.single-item:hover {
    cursor: pointer;
}

.single-item.active .single-cover {
    border: 2px solid rgba(78, 205, 196, 0.6);
    animation: glowFlow 4s ease-in-out infinite;
}

@keyframes glowFlow {
    0% {
        box-shadow: 0 -5px 20px rgba(78, 205, 196, 0.7),
                    5px 0 15px rgba(78, 205, 196, 0.5),
                    0 5px 10px rgba(78, 205, 196, 0.3),
                    -5px 0 15px rgba(78, 205, 196, 0.4);
    }
    25% {
        box-shadow: 5px 0 20px rgba(78, 205, 196, 0.7),
                    0 5px 15px rgba(78, 205, 196, 0.5),
                    -5px 0 10px rgba(78, 205, 196, 0.3),
                    0 -5px 15px rgba(78, 205, 196, 0.4);
    }
    50% {
        box-shadow: 0 5px 20px rgba(78, 205, 196, 0.7),
                    -5px 0 15px rgba(78, 205, 196, 0.5),
                    0 -5px 10px rgba(78, 205, 196, 0.3),
                    5px 0 15px rgba(78, 205, 196, 0.4);
    }
    75% {
        box-shadow: -5px 0 20px rgba(78, 205, 196, 0.7),
                    0 -5px 15px rgba(78, 205, 196, 0.5),
                    5px 0 10px rgba(78, 205, 196, 0.3),
                    0 5px 15px rgba(78, 205, 196, 0.4);
    }
    100% {
        box-shadow: 0 -5px 20px rgba(78, 205, 196, 0.7),
                    5px 0 15px rgba(78, 205, 196, 0.5),
                    0 5px 10px rgba(78, 205, 196, 0.3),
                    -5px 0 15px rgba(78, 205, 196, 0.4);
    }
}

.single-cover {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    margin-bottom: 15px;
    object-fit: cover;
    background: #1a1a2e;
    transition: all 0.3s ease;
}

.single-title {
    font-size: 1.1rem;
    text-align: center;
    color: #fff;
    word-wrap: break-word;
}

.loading {
    text-align: center;
    color: #888;
    font-size: 1.2rem;
    grid-column: 1 / -1;
}

/* Overlay Styles */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.overlay.active {
    display: flex;
}

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

.overlay-content {
    background: rgba(42, 42, 62, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
}

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

.close-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(78, 205, 196, 0.2);
    border: 1px solid rgba(78, 205, 196, 0.3);
    color: #fff;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-overlay:hover {
    background: rgba(78, 205, 196, 0.4);
    transform: rotate(90deg);
}

.overlay-content h2 {
    color: #4ecdc4;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.overlay-body {
    color: #fff;
    line-height: 1.8;
}

.overlay-body p {
    margin-bottom: 15px;
}

/* About Content */
.about-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.about-image-wrapper {
    flex-shrink: 0;
}

.about-image {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid rgba(78, 205, 196, 0.5);
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

.about-image-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(69, 183, 209, 0.2));
    border: 3px solid rgba(78, 205, 196, 0.5);
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 4px;
    color: #4ecdc4;
}

.about-text {
    flex: 1;
}

.about-text p:first-child {
    font-size: 1.1rem;
    color: #4ecdc4;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-image,
    .about-image-placeholder {
        width: 200px;
        height: 200px;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #4ecdc4;
    margin-bottom: 8px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(78, 205, 196, 0.6);
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.g-recaptcha {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: rgba(78, 205, 196, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(78, 205, 196, 0.5);
    border-radius: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: rgba(78, 205, 196, 0.5);
    box-shadow: 0 6px 20px rgba(78, 205, 196, 0.3);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cf-turnstile {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-status {
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: none;
}
.contact-status.success,
.contact-status.error {
    display: block;
}
.contact-status.success {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.4);
}
.contact-status.error {
    background: rgba(231, 76, 60, 0.15);
    color: #ff8272;
    border: 1px solid rgba(231, 76, 60, 0.4);
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .turntable {
        width: 300px;
        height: 300px;
    }

    .vinyl {
        width: 250px;
        height: 250px;
    }

    .tonearm {
        width: 150px;
    }

    .singles-grid {
        grid-template-columns: repeat(auto-fill, 150px);
        gap: 20px;
    }

    .singles-grid.carousel {
        gap: 20px;
    }

    .singles-grid.carousel .single-item {
        flex: 0 0 150px;
        width: 150px;
        max-width: 150px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* Song Info Styles */
.song-info-description {
    margin-bottom: 30px;
    font-size: 1rem;
    text-align: center;
}

.streaming-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.streaming-link {
    transition: all 0.3s ease;
}

.streaming-link:hover {
    transform: scale(1.1);
}

.streaming-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.streaming-link:hover .streaming-icon {
    box-shadow: 0 6px 25px rgba(78, 205, 196, 0.4);
}
