/* ===================================
   BEATS PAGE STYLES
   Dark Hip-Hop Theme with Green/Cyan Accents
   =================================== */

/* Beats Hero Section */
.beats-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
    text-align: center;
    overflow: hidden;
    margin-top: 82px;
}

.beats-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 234, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.beats-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #000000, transparent);
    z-index: 1;
}

.beats-hero-content {
    position: relative;
    z-index: 2;
}

.beats-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 8vw, 80px);
    letter-spacing: 6px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    text-shadow: 
        0 0 30px rgba(0, 255, 65, 0.8),
        0 0 60px rgba(0, 255, 65, 0.6);
}

.beats-hero-title i {
    color: #00ff41;
    text-shadow: 0 0 40px rgba(0, 255, 65, 1);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.beats-hero-subtitle {
    font-size: 18px;
    color: #00eaff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(0, 234, 255, 0.6);
}

/* Beats Section */
.beats-section {
    padding: 100px 0;
    background: #000000;
    min-height: 60vh;
}

/* Loading State */
.beats-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 80px 20px;
    text-align: center;
}

.beats-loading i {
    font-size: 64px;
    color: #00ff41;
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.8);
}

.beats-loading p {
    font-size: 20px;
    color: #e8e8e8;
    font-weight: 500;
}

/* Error State */
.beats-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 80px 20px;
    text-align: center;
}

.beats-error i {
    font-size: 64px;
    color: #ff0044;
    text-shadow: 0 0 30px rgba(255, 0, 68, 0.8);
}

.beats-error h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0;
}

.beats-error p {
    font-size: 16px;
    color: #e8e8e8;
    margin: 0;
}

.retry-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, #00ff41, #00eaff);
    color: #000000;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
}

.retry-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 65, 1);
}

/* No Beats State */
.no-beats-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 80px 20px;
    text-align: center;
}

.no-beats-message i {
    font-size: 64px;
    color: #00eaff;
    text-shadow: 0 0 30px rgba(0, 234, 255, 0.6);
}

.no-beats-message h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0;
}

.no-beats-message p {
    font-size: 16px;
    color: #e8e8e8;
    margin: 0;
}

/* Beats Grid */
.beats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

/* Beat Card */
.beat-card {
    background: #1a1a1a;
    border: 2px solid #00ff41;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.2);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.beat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 255, 65, 0.4);
    border-color: #00eaff;
}

/* Beat Info */
.beat-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.beat-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

.beat-producer {
    font-size: 16px;
    color: #00eaff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.beat-producer i {
    font-size: 14px;
}

.beat-maker {
    font-size: 14px;
    color: #e8e8e8;
    opacity: 0.7;
}

.beat-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.beat-style,
.beat-mood {
    font-size: 13px;
    color: #e8e8e8;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
    padding: 4px 12px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.beat-mood {
    background: rgba(0, 234, 255, 0.1);
    border-color: rgba(0, 234, 255, 0.3);
    color: #00eaff;
}

.beat-style i,
.beat-mood i {
    font-size: 11px;
}

/* Beat Controls */
.beat-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.play-beat-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #00ff41, #00eaff);
    color: #000000;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
}

.play-beat-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 65, 1);
}

.play-beat-btn.playing {
    background: linear-gradient(135deg, #ff0044, #00eaff);
    box-shadow: 0 0 30px rgba(255, 0, 68, 0.6);
}

.play-beat-btn.playing:hover {
    box-shadow: 0 0 50px rgba(255, 0, 68, 1);
}

.play-beat-btn i {
    font-size: 20px;
}

/* Download Options */
.download-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.download-btn {
    width: 100%;
    padding: 12px;
    background: #0a0a0a;
    color: #ffffff;
    border: 2px solid #00ff41;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.2);
}

.download-btn:hover {
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.5);
    transform: translateY(-2px);
}

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

.license-btn {
    border-color: #00eaff;
    color: #00eaff;
    box-shadow: 0 0 10px rgba(0, 234, 255, 0.2);
}

.license-btn:hover {
    background: rgba(0, 234, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.5);
}

.exclusive-btn {
    border-color: #ff0044;
    color: #ff0044;
    box-shadow: 0 0 10px rgba(255, 0, 68, 0.2);
}

.exclusive-btn:hover {
    background: rgba(255, 0, 68, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 68, 0.5);
}

.pdf-btn {
    border-color: #ffa500;
    color: #ffa500;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.2);
}

.pdf-btn:hover {
    background: rgba(255, 165, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
}

/* Terms & Conditions Modal */
.terms-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.terms-modal.active {
    opacity: 1;
    visibility: visible;
}

.terms-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.terms-modal-content {
    position: relative;
    width: 90%;
    max-width: 700px;
    max-height: 85vh;
    background: #1a1a1a;
    border: 3px solid #00ff41;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 60px rgba(0, 255, 65, 0.6);
    z-index: 2;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.terms-modal.active .terms-modal-content {
    transform: scale(1);
}

.terms-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff41;
    border-radius: 50%;
    color: #00ff41;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.terms-modal-close:hover {
    background: #00ff41;
    color: #000000;
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.8);
}

.terms-modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-right: 60px;
}

.terms-modal-header i {
    font-size: 36px;
    color: #00ff41;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.8);
}

.terms-modal-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

.terms-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #0a0a0a;
    border: 2px solid #00ff41;
    border-radius: 10px;
    margin-bottom: 25px;
    max-height: 400px;
}

.terms-modal-body h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    color: #00ff41;
    margin: 0 0 15px 0;
}

.terms-modal-body p {
    font-size: 14px;
    color: #e8e8e8;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.terms-modal-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.terms-modal-body li {
    font-size: 14px;
    color: #e8e8e8;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.terms-modal-body li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00ff41;
    font-weight: bold;
}

.terms-modal-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.terms-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.terms-checkbox-label input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: #00ff41;
}

.terms-checkbox-label span {
    font-size: 16px;
    color: #e8e8e8;
    font-weight: 500;
}

.terms-accept-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #00ff41, #00eaff);
    color: #000000;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
}

.terms-accept-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 65, 1);
}

.terms-accept-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

/* Contact Information Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.contact-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: #1a1a1a;
    border: 3px solid #00eaff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 60px rgba(0, 234, 255, 0.6);
    z-index: 2;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.contact-modal.active .contact-modal-content {
    transform: scale(1);
}

.contact-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00eaff;
    border-radius: 50%;
    color: #00eaff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.contact-modal-close:hover {
    background: #00eaff;
    color: #000000;
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(0, 234, 255, 0.8);
}

.contact-modal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-right: 60px;
}

.contact-modal-header i {
    font-size: 48px;
    color: #00eaff;
    text-shadow: 0 0 20px rgba(0, 234, 255, 0.8);
    margin-bottom: 15px;
}

.contact-modal-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-shadow: 0 0 15px rgba(0, 234, 255, 0.6);
}

.contact-modal-header p {
    font-size: 14px;
    color: #e8e8e8;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: #00eaff;
    font-weight: 600;
    letter-spacing: 1px;
}

.form-group input {
    padding: 12px 15px;
    background: #0a0a0a;
    border: 2px solid #00eaff;
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00ff41;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.contact-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #00eaff, #00ff41);
    color: #000000;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 900;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 0 30px rgba(0, 234, 255, 0.6);
    margin-top: 10px;
}

.contact-submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 234, 255, 1);
}

/* Thank You Modal */
.thankyou-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.thankyou-modal.active {
    opacity: 1;
    visibility: visible;
}

.thankyou-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.thankyou-modal-content {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: #1a1a1a;
    border: 3px solid #00ff41;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 0 60px rgba(0, 255, 65, 0.6);
    z-index: 2;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.thankyou-modal.active .thankyou-modal-content {
    transform: scale(1);
}

.thankyou-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff41;
    border-radius: 50%;
    color: #00ff41;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.thankyou-modal-close:hover {
    background: #00ff41;
    color: #000000;
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.8);
}

.thankyou-modal-body {
    text-align: center;
}

.thankyou-modal-body i {
    font-size: 80px;
    color: #00ff41;
    text-shadow: 0 0 40px rgba(0, 255, 65, 1);
    margin-bottom: 25px;
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.thankyou-modal-body h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 3px;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-shadow: 0 0 20px rgba(0, 255, 65, 0.6);
}

.thankyou-modal-body p {
    font-size: 18px;
    color: #e8e8e8;
    line-height: 1.6;
    margin: 0;
}

/* Audio Player Modal */
.audio-player-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.audio-player-modal.active {
    opacity: 1;
    visibility: visible;
}

.audio-player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.audio-player-content {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: #1a1a1a;
    border: 3px solid #00ff41;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 60px rgba(0, 255, 65, 0.6);
    z-index: 2;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.audio-player-modal.active .audio-player-content {
    transform: scale(1);
}

.audio-player-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #00ff41;
    border-radius: 50%;
    color: #00ff41;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.audio-player-close:hover {
    background: #00ff41;
    color: #000000;
    transform: rotate(90deg);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.8);
}

/* Audio Player Info */
.audio-player-info {
    text-align: center;
    margin-bottom: 30px;
}

.audio-player-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.6);
}

.audio-player-info p {
    font-size: 16px;
    color: #00eaff;
    margin: 0;
}

/* Audio Player Controls */
.audio-player-controls {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.player-btn {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00ff41, #00eaff);
    border: none;
    border-radius: 50%;
    color: #000000;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
    margin: 0 auto;
}

.player-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(0, 255, 65, 1);
}

.player-btn i {
    margin-left: 3px;
}

.player-btn.playing i {
    margin-left: 0;
}

/* Progress Container */
.progress-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-time {
    font-size: 14px;
    color: #e8e8e8;
    font-weight: 700;
    min-width: 45px;
    text-align: center;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: #0a0a0a;
    border: 2px solid #00ff41;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #00ff41, #00eaff);
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}

.progress-handle {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: #ffffff;
    border: 3px solid #00ff41;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.8);
    cursor: grab;
    left: 0%;
    transition: left 0.1s linear;
}

.progress-handle:active {
    cursor: grabbing;
}

/* Volume Control */
.volume-control {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.volume-btn {
    width: 45px;
    height: 45px;
    background: #0a0a0a;
    border: 2px solid #00eaff;
    color: #00eaff;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(0, 234, 255, 0.4);
}

.volume-btn:hover {
    background: rgba(0, 234, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 234, 255, 0.6);
}

.volume-slider {
    width: 150px;
    height: 6px;
    background: #0a0a0a;
    border: 2px solid #00eaff;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #00eaff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 234, 255, 0.8);
}

.volume-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #00eaff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 234, 255, 0.8);
}

/* Pull to Refresh Indicator (Mobile) */
.pull-to-refresh {
    position: fixed;
    top: 82px;
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    padding: 15px 30px;
    background: rgba(0, 255, 65, 0.9);
    color: #000000;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 255, 65, 0.6);
    transition: transform 0.3s ease;
    z-index: 999;
}

.pull-to-refresh.active {
    transform: translateX(-50%) translateY(20px);
}

.pull-to-refresh i {
    animation: spin 1s linear infinite;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .beats-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .beats-hero {
        padding: 150px 0 80px;
    }
    
    .beats-hero-title {
        font-size: 48px;
        flex-direction: column;
        gap: 15px;
    }
    
    .beats-hero-subtitle {
        font-size: 14px;
    }
    
    .beats-section {
        padding: 60px 0;
    }
    
    .beats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .beat-card {
        padding: 25px;
    }
    
    .beat-title {
        font-size: 24px;
    }
    
    .audio-player-content {
        width: 95%;
        padding: 30px 25px;
    }
    
    .audio-player-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .audio-player-info h3 {
        font-size: 26px;
    }
    
    .player-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .progress-container {
        gap: 10px;
    }
    
    .volume-slider {
        width: 100px;
    }
    
    /* Terms Modal Responsive */
    .terms-modal-content {
        width: 95%;
        padding: 30px 20px;
        max-height: 90vh;
    }
    
    .terms-modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .terms-modal-header {
        padding-right: 50px;
    }
    
    .terms-modal-header i {
        font-size: 28px;
    }
    
    .terms-modal-header h2 {
        font-size: 24px;
    }
    
    .terms-modal-body {
        padding: 15px;
        max-height: 300px;
    }
    
    .terms-modal-body h3 {
        font-size: 20px;
    }
    
    .terms-modal-body p,
    .terms-modal-body li {
        font-size: 13px;
    }
    
    /* Contact Modal Responsive */
    .contact-modal-content {
        width: 95%;
        padding: 30px 20px;
    }
    
    .contact-modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .contact-modal-header {
        padding-right: 50px;
    }
    
    .contact-modal-header i {
        font-size: 36px;
    }
    
    .contact-modal-header h2 {
        font-size: 26px;
    }
    
    /* Thank You Modal Responsive */
    .thankyou-modal-content {
        width: 95%;
        padding: 40px 25px;
    }
    
    .thankyou-modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .thankyou-modal-body i {
        font-size: 60px;
    }
    
    .thankyou-modal-body h2 {
        font-size: 32px;
    }
    
    .thankyou-modal-body p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .beats-hero-title {
        font-size: 36px;
    }
    
    .beat-title {
        font-size: 20px;
    }
    
    .play-beat-btn {
        padding: 12px;
        font-size: 16px;
    }
    
    .download-btn {
        padding: 10px;
        font-size: 13px;
    }
    
    .audio-player-info h3 {
        font-size: 22px;
    }
    
    .progress-time {
        font-size: 12px;
        min-width: 40px;
    }
    
    /* Terms Modal Small Screen */
    .terms-modal-content {
        padding: 25px 15px;
    }
    
    .terms-modal-header h2 {
        font-size: 20px;
    }
    
    .terms-modal-body {
        padding: 12px;
    }
    
    .terms-accept-btn {
        padding: 12px;
        font-size: 16px;
    }
    
    /* Contact Modal Small Screen */
    .contact-modal-content {
        padding: 25px 15px;
    }
    
    .contact-modal-header h2 {
        font-size: 22px;
    }
    
    .contact-submit-btn {
        padding: 12px;
        font-size: 16px;
    }
    
    /* Thank You Modal Small Screen */
    .thankyou-modal-content {
        padding: 30px 20px;
    }
    
    .thankyou-modal-body h2 {
        font-size: 28px;
    }
    
    .thankyou-modal-body p {
        font-size: 15px;
    }
}
