.hero-section {
    width: 100%;
    padding: 60px 24px;
    text-align: center;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-bottom: 1px solid #27272a;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section p {
    font-size: 18px;
    color: #a1a1a1;
    max-width: 600px;
    margin: 0 auto 32px;
}

.search-bar-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.search-bar {
    flex: 1;
    padding: 12px 16px;
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.search-bar:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 16px rgba(236, 72, 153, 0.2);
}

.search-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #06b6d4);
    border: none;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4);
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.filters-section {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.filter-badge {
    padding: 8px 16px;
    background: #27272a;
    border: 1px solid #3f3f46;
    border-radius: 20px;
    color: #a1a1a1;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

.filter-badge:hover,
.filter-badge.active {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-color: #ec4899;
    color: #fff;
    box-shadow: 0 0 12px rgba(236, 72, 153, 0.3);
}

/* Artist Card for Public View */
.artist-card {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.artist-card:hover {
    border-color: #ec4899;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.15), 0 4px 12px rgba(139, 92, 246, 0.1);
    transform: translateY(-4px);
}

.artist-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border: 3px solid transparent;
    background-clip: padding-box;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    position: relative;
    box-shadow: 0 0 24px rgba(236, 72, 153, 0.3);
}

.artist-avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #06b6d4);
    border-radius: 50%;
    z-index: -1;
}

.artist-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.artist-genre {
    color: #a1a1a1;
    font-size: 13px;
    margin-bottom: 12px;
}

.artist-stats {
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    border-top: 1px solid #27272a;
    border-bottom: 1px solid #27272a;
    margin: 12px 0;
    font-size: 12px;
}

.artist-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.artist-stat-value {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.artist-stat-label {
    color: #71717a;
    font-size: 11px;
    text-transform: uppercase;
    margin-top: 2px;
}

.artist-bio {
    color: #a1a1a1;
    font-size: 13px;
    margin: 12px 0;
    flex: 1;
    line-height: 1.4;
}

.artist-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.artist-action-btn {
    flex: 1;
    padding: 8px 12px;
    background: #27272a;
    border: none;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.artist-action-btn:hover {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    color: #fff;
    box-shadow: 0 0 12px rgba(236, 72, 153, 0.3);
}

/* Booking Price Box */
.booking-price-box {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    margin-bottom: 16px;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.booking-price-label {
    font-size: 10px;
    color: #a1a1a1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.booking-price-value {
    font-size: 14px;
    font-weight: 700;
    color: #8b5cf6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.booking-price-unit {
    font-size: 10px;
    color: #a1a1a1;
    margin-top: 4px;
}

/* Artist Detailed Stats Grid */
.artist-detailed-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
}

.stat-item {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 0;
    max-width: 100px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    word-wrap: break-word;
}

.stat-label {
    font-size: 11px;
    color: #a1a1a1;
    text-transform: uppercase;
    word-wrap: break-word;
}

.stat-followers .stat-value {
    color: #10b981;
}

.stat-tracks .stat-value {
    color: #ec4899;
}

.stat-downloads .stat-value {
    color: #3b82f6;
}

.stat-likes .stat-value {
    color: #f59e0b;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-width: 100%;
    overflow: hidden;
}

/* Music Player Section */
.player-section {
    background: #18181b;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Row 1: Song Details and Controls */
.player-row-main {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
}

.song-details {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.album-art {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #06b6d4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.track-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.track-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.track-artist {
    color: #a1a1a1;
    font-size: 12px;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.player-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #27272a;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.player-btn:hover {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    box-shadow: 0 0 12px rgba(236, 72, 153, 0.4);
}

.player-btn.play {
    width: 44px;
    height: 44px;
    font-size: 18px;
}

.progress-bar-container {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.time {
    font-size: 11px;
    color: #71717a;
    min-width: 35px;
    flex-shrink: 0;
}

.progress-bar {
    flex: 1;
    height: 3px;
    background: #27272a;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    min-width: 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ec4899, #8b5cf6, #06b6d4);
    width: 0%;
    transition: width 0.1s linear;
}

.volume-control {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.volume-slider {
    flex: 1;
    max-width: 150px;
    height: 4px;
    background: #27272a;
    border-radius: 2px;
    cursor: pointer;
    accent-color: #ec4899;
}

/* Inline volume control (same row as progress) */
.volume-control-inline {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-left: auto;
    padding-left: 12px;
    border-left: 1px solid #27272a;
    flex-shrink: 0;
}

.volume-control-inline i {
    font-size: 12px;
    color: #a1a1a1;
    flex-shrink: 0;
}

.volume-slider-inline {
    width: 60px;
    height: 4px;
    background: #27272a;
    border-radius: 2px;
    cursor: pointer;
    accent-color: #ec4899;
    flex-shrink: 0;
}

/* Player Responsive Design */
@media (max-width: 1024px) {
    .player-row-main {
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .player-section {
        padding: 10px 16px;
    }

    .player-row-main {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .song-details {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .album-art {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .player-controls {
        width: 100%;
        justify-content: center;
        order: 2;
        gap: 6px;
    }

    .player-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .player-btn.play {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .progress-bar-container {
        width: 100%;
        order: 3;
        flex-wrap: wrap;
    }

    .time {
        flex-shrink: 0;
        font-size: 10px;
    }

    .progress-bar {
        flex-grow: 1;
        flex-basis: calc(100% - 60px);
    }

    .volume-control {
        width: 100%;
        justify-content: center;
        order: 4;
    }

    .volume-control-inline {
        margin-left: 6px;
        padding-left: 6px;
        gap: 4px;
        width: auto;
    }

    .volume-control-inline i {
        font-size: 10px;
    }

    .volume-slider-inline {
        width: 40px;
    }
}

/* Top Artists Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.stat-card {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: #ec4899;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.2);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: #a1a1a1;
}

/* Top Picks List */
.top-pick-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.top-pick-item:hover {
    background: #27272a;
    border-color: #ec4899;
    box-shadow: 0 0 12px rgba(236, 72, 153, 0.2);
}

.top-pick-item.active {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(139, 92, 246, 0.2));
    border-color: #ec4899;
}

.top-pick-item-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}

.top-pick-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.top-pick-item-name {
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.top-pick-item-artist {
    font-size: 12px;
    color: #a1a1a1;
}

.top-pick-item-play {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #27272a;
    border: none;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.top-pick-item-play:hover {
    background: #ec4899;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.pagination-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #27272a;
    background: #18181b;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background: #27272a;
    border-color: #ec4899;
}

.pagination-btn.active {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-color: #ec4899;
}

/* Comments Section Styles */
.track-comments-wrapper {
    margin-top: 12px;
    border-top: 1px solid #27272a;
    padding-top: 16px;
    background: #1f1f23;
    border-radius: 8px;
    padding: 16px;
}

.comments-header {
    font-size: 13px;
    font-weight: 600;
    color: #a1a1a1;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.comments-header:hover {
    color: #ec4899;
}

.comments-header i {
    transition: transform 0.3s ease;
}

.comments-header.collapsed i {
    transform: rotate(-90deg);
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 1000px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.comments-list.collapsed {
    max-height: 0;
    margin: 0;
    padding: 0;
}

.comment-item {
    background: #27272a;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 10px;
    font-size: 13px;
}

.comment-author {
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment-author-badge {
    font-size: 11px;
    padding: 2px 6px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-radius: 3px;
    color: #fff;
}

.comment-text {
    color: #a1a1a1;
    margin-top: 6px;
    line-height: 1.4;
}

.comment-timestamp {
    font-size: 11px;
    color: #71717a;
    margin-top: 6px;
}

.comment-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.comment-reply-btn {
    background: none;
    border: none;
    color: #8b5cf6;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-reply-btn:hover {
    color: #ec4899;
}

.reply-item {
    margin-left: 20px;
    margin-top: 8px;
    padding: 8px;
    background: #1f1f23;
    border-radius: 4px;
    border-left: 2px solid #8b5cf6;
}

.no-comments {
    color: #71717a;
    font-size: 12px;
    font-style: italic;
    text-align: center;
    padding: 16px 0;
}

.load-more-comments-btn {
    margin-top: 12px;
    padding: 10px 16px;
    background: #27272a;
    border: 1px solid #3f3f46;
    color: #a1a1a1;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.load-more-comments-btn:hover {
    background: #3f3f46;
    border-color: #ec4899;
    color: #fff;
}

/* Comment Modal */
.comment-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

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

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

.comment-modal-content {
    background: #18181b;
    margin: 0;
    padding: 32px;
    border: 1px solid #27272a;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    max-height: 96vh;
    overflow-y: auto;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.comment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #27272a;
}

.comment-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.comment-modal-close {
    background: none;
    border: none;
    color: #a1a1a1;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-modal-close:hover {
    color: #ec4899;
}

.comment-form-group {
    margin-bottom: 20px;
}

.comment-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #a1a1a1;
}

.comment-form-group input,
.comment-form-group textarea {
    width: 100%;
    padding: 12px;
    background: #27272a;
    border: 1px solid #3f3f46;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.comment-form-group input:focus,
.comment-form-group textarea:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 12px rgba(236, 72, 153, 0.2);
    background: #2a2a2e;
}

.comment-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.comment-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.comment-send-btn {
    flex: 1;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border: none;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.comment-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4);
}

.comment-cancel-btn {
    flex: 1;
    padding: 12px 24px;
    background: #27272a;
    border: 1px solid #3f3f46;
    color: #a1a1a1;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.comment-cancel-btn:hover {
    background: #3f3f46;
    color: #fff;
}

/* Reply Modal */
.reply-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.reply-modal-content {
    background: #18181b;
    margin: 0;
    padding: 32px;
    border: 1px solid #27272a;
    border-radius: 12px;
    width: 90%;
    max-width: 700px;
    max-height: 96vh;
    overflow-y: auto;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

.reply-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #27272a;
}

.reply-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.reply-modal-close {
    background: none;
    border: none;
    color: #a1a1a1;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reply-modal-close:hover {
    color: #ec4899;
}

.reply-form-group {
    margin-bottom: 20px;
}

.reply-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #a1a1a1;
}

.reply-form-group input,
.reply-form-group textarea {
    width: 100%;
    padding: 12px;
    background: #27272a;
    border: 1px solid #3f3f46;
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
}

.reply-form-group input:focus,
.reply-form-group textarea:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 12px rgba(236, 72, 153, 0.2);
    background: #2a2a2e;
}

.reply-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.reply-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.reply-send-btn {
    flex: 1;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border: none;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reply-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4);
}

.reply-cancel-btn {
    flex: 1;
    padding: 12px 24px;
    background: #27272a;
    border: 1px solid #3f3f46;
    color: #a1a1a1;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.reply-cancel-btn:hover {
    background: #3f3f46;
    color: #fff;
}

@media (max-width: 768px) {
    .comment-modal-content,
    .reply-modal-content {
        padding: 24px;
        width: 95%;
        max-height: 85vh;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 16px;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .search-bar-container {
        flex-direction: column;
    }

    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

    .artist-card {
        padding: 12px;
    }

    .artist-avatar {
        width: 70px;
        height: 70px;
        margin: 0 auto 12px;
        font-size: 28px;
    }

    .artist-name {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .artist-genre {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .artist-bio {
        font-size: 11px;
        margin: 8px 0;
    }

    .artist-action-btn {
        padding: 6px 8px;
        font-size: 11px;
    }

    .booking-price-box {
        padding: 6px 8px;
        margin-bottom: 12px;
    }

    .booking-price-label {
        font-size: 8px;
        margin-bottom: 2px;
    }

    .booking-price-value {
        font-size: 12px;
    }

    .booking-price-unit {
        font-size: 8px;
        margin-top: 2px;
    }

    .artist-detailed-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-bottom: 12px;
        padding: 8px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }

    .stat-value {
        font-size: 12px;
        margin-bottom: 1px;
    }

    .stat-label {
        font-size: 9px;
    }

    .main-container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }

    .artist-card {
        padding: 10px;
    }

    .artist-avatar {
        width: 60px;
        height: 60px;
        margin: 0 auto 8px;
        font-size: 24px;
    }

    .artist-name {
        font-size: 12px;
        margin-bottom: 1px;
    }

    .artist-genre {
        font-size: 9px;
        margin-bottom: 6px;
    }

    .artist-bio {
        font-size: 10px;
        margin: 6px 0;
    }

    .booking-price-box {
        padding: 4px 6px;
        margin-bottom: 8px;
    }

    .booking-price-label {
        font-size: 7px;
    }

    .booking-price-value {
        font-size: 11px;
    }

    .booking-price-unit {
        font-size: 7px;
    }

    .artist-detailed-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin-bottom: 8px;
        padding: 6px;
    }

    .stat-value {
        font-size: 11px;
    }

    .stat-label {
        font-size: 8px;
    }

    .artist-action-btn {
        padding: 5px 6px;
        font-size: 10px;
    }
}
