/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); }
    50% { background: linear-gradient(135deg, #764ba2 0%, #f093fb 50%, #667eea 100%); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 80px;
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.hero-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.25rem;
}

.hero-stats .stat-label {
    display: block;
    font-size: 0.8rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #764ba2;
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Platforms Section */
.platforms {
    padding: 80px 0;
    background: #111111;
}

.platforms h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.platform-link i {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.platform-link span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Platform-specific colors */
.spotify:hover i { color: #1DB954; }
.apple:hover i { color: #FA243C; }
.youtube:hover i { color: #FF0000; }
.deezer:hover i { color: #FEAA2D; }
.iheart:hover i { color: #C6002B; }
.amazon:hover i { color: #FF9900; }
.anghami:hover i { color: #9D5AAE; }
.boomplay:hover i { color: #FF6B35; }

/* Releases Section */
.releases {
    padding: 80px 0;
    background: #0a0a0a;
}

.releases h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #888888;
    margin-bottom: 3rem;
}

.releases-loading,
.releases-error {
    text-align: center;
    padding: 3rem 0;
}

.releases-error i {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

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

.release-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.release-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.release-thumbnail {
    position: relative;
    overflow: hidden;
}

.release-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.release-card:hover .release-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.release-card:hover .play-button {
    opacity: 1;
}

.release-info {
    padding: 1.5rem;
}

.release-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.release-info p {
    color: #888888;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.release-date {
    color: #667eea;
    font-size: 0.8rem;
    font-weight: 500;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #111111;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro {
    font-size: 1.3rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #888888;
    font-size: 0.9rem;
    margin: 0;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}



/* Footer */
.footer {
    background: #111111;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #888888;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-platforms {
    display: flex;
    gap: 1rem;
}

.footer-platforms a {
    color: #888888;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-platforms a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.last-updated {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-top: 0.75rem;
}

.last-updated span {
    color: #667eea;
    font-weight: 500;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .platforms-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .platform-link {
        padding: 1.5rem 0.5rem;
    }

    .platform-link i {
        font-size: 2rem;
    }

    .releases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-platforms {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

.slide-up {
    animation: slideUp 0.6s ease-out;
}

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

/* Filter Controls */
.filter-controls {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.search-box input::placeholder {
    color: #888888;
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888888;
    pointer-events: none;
}

.filter-options {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-options select {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-options select:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
}

.filter-options select option {
    background: #1a1a1a;
    color: #ffffff;
}

.page-info {
    text-align: center;
    color: #888888;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Pagination Controls */
.pagination-controls {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
    padding: 2rem 0;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination-btn {
    padding: 10px 15px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(102, 126, 234, 0.2);
    border-color: #667eea;
    transform: translateY(-1px);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    font-weight: 600;
}

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

.page-numbers {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.pagination-ellipsis {
    color: #888888;
    padding: 0 0.5rem;
    font-weight: bold;
}

.prev-btn, .next-btn {
    font-weight: 500;
}

/* Enhanced Video Cards */
.video-overlay-info {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
}

.duration, .views {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.video-title-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.video-title-link:hover {
    color: #667eea;
}

.video-description {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.video-stats {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #888888;
    font-size: 0.8rem;
}

.stat-item i {
    font-size: 0.7rem;
}

.video-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.share-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.share-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* No Results State */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #888888;
}

.no-results i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

/* Share Toast Animation */
@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .search-box {
        min-width: auto;
    }

    .filter-options {
        justify-content: space-between;
    }

    .filter-options select {
        flex: 1;
    }

    .pagination-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }

    .prev-btn, .next-btn {
        order: 1;
        flex: 1;
        min-width: 100px;
    }

    .page-numbers {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .video-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .video-actions {
        width: 100%;
    }

    .video-actions .btn {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .filter-controls {
        padding: 1rem;
    }

    .pagination-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        min-width: 36px;
    }

    .prev-btn, .next-btn {
        padding: 8px 16px;
    }

    .video-overlay-info {
        top: 5px;
        right: 5px;
    }

    .duration, .views {
        font-size: 0.7rem;
        padding: 1px 4px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .pagination-btn {
        transform: none !important;
    }

    .release-card:hover {
        transform: none !important;
    }

    .platform-link:hover {
        transform: none !important;
    }
}

/* Focus Styles for Better Accessibility */
.pagination-btn:focus,
.search-box input:focus,
.filter-options select:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .filter-controls,
    .pagination-wrapper,
    .release-card {
        border-color: #ffffff;
    }

    .pagination-btn {
        border-color: #ffffff;
    }

    .pagination-btn.active {
        background: #ffffff;
        color: #000000;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Music Sliders */
.music-slider {
    margin: 3rem 0;
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

.slider-header h3 {
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider-controls {
    display: flex;
    gap: 0.5rem;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.slider-btn:hover:not(:disabled) {
    background: rgba(102, 126, 234, 0.3);
    border-color: #667eea;
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slider-wrapper {
    overflow: hidden;
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.slider-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slider-card {
    flex: 0 0 calc(25% - 1.125rem);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.slider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.3);
}

.card-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.slider-card:hover .card-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-card:hover .play-overlay {
    opacity: 1;
}

.play-button-large {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.play-button-large:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.card-overlay-info {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
}

.card-type-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-info {
    padding: 1.5rem;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-date {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-icon:hover {
    background: rgba(102, 126, 234, 0.3);
    border-color: #667eea;
    color: #ffffff;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Archive Section */
.archive-section {
    margin: 4rem 0;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
}

.archive-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.archive-header h3 {
    font-size: 2.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.archive-subtitle {
    color: #888888;
    font-size: 1.1rem;
}

.archive-filters {
    margin: 2rem 0;
    padding: 0 2rem;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.archive-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.archive-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

.archive-card:hover .archive-thumbnail img {
    transform: scale(1.05);
}

.archive-overlay-info {
    position: absolute;
    top: 10px;
    right: 10px;
}

.archive-info {
    padding: 1.5rem;
}

.archive-title {
    margin-bottom: 0.5rem;
}

.archive-title a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.archive-title a:hover {
    color: #667eea;
}

.archive-description {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.archive-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #888888;
}

.archive-actions {
    display: flex;
    gap: 0.5rem;
}

.no-content {
    text-align: center;
    color: #888888;
    font-style: italic;
    padding: 3rem;
}

/* Fallback Content */
.fallback-content {
    padding: 4rem 2rem;
    text-align: center;
}

.fallback-message {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fallback-message i {
    font-size: 4rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    display: block;
}

.fallback-message h4 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.fallback-message p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.fallback-message .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
}

/* Responsive Design for Sliders */
@media (max-width: 1200px) {
    .slider-card {
        flex: 0 0 calc(33.333% - 1rem);
    }
}

@media (max-width: 768px) {
    .slider-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .slider-header h3 {
        font-size: 1.5rem;
    }

    .slider-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .slider-wrapper,
    .slider-dots {
        padding: 0 1rem;
    }

    .archive-header h3 {
        font-size: 2rem;
    }

    .archive-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .archive-filters {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .slider-card {
        flex: 0 0 calc(100% - 0.5rem);
    }

    .card-info {
        padding: 1rem;
    }

    .card-title {
        font-size: 1rem;
    }

    .archive-info {
        padding: 1rem;
    }

    .archive-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .play-overlay {
        opacity: 0.8;
    }

    .slider-card:hover {
        transform: none;
    }

    .archive-card:hover {
        transform: none;
    }
}

/* Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Slider Animation Enhancements */
.slider-card.latest {
    border-left: 3px solid #22c55e;
}

.slider-card.album {
    border-left: 3px solid #f59e0b;
}

.slider-card.single {
    border-left: 3px solid #ef4444;
}

/* Performance Optimizations */
.slider-track,
.card-thumbnail img,
.archive-thumbnail img {
    will-change: transform;
}

.play-overlay,
.play-button-large {
    will-change: opacity, transform;
}

/* Fallback Content */
.fallback-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    grid-column: 1 / -1;
    padding: 2rem;
}

.fallback-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fallback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.fallback-thumbnail {
    position: relative;
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fallback-thumbnail.spotify {
    background: linear-gradient(135deg, #1db954 0%, #1ed760 100%);
}

.fallback-thumbnail.apple {
    background: linear-gradient(135deg, #fc3c44 0%, #ff6b6b 100%);
}

.fallback-play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.fallback-info {
    padding: 1.5rem;
}

.fallback-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.fallback-info p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.fallback-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.fallback-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

@media (max-width: 768px) {
    .fallback-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .fallback-actions {
        flex-direction: column;
    }

    .fallback-actions .btn {
        width: 100%;
    }
}

/* Collection Stats */
.collection-stats {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.stat-item i {
    font-size: 2rem;
    color: #667eea;
    min-width: 40px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #888888;
    margin-top: 0.25rem;
}

/* Error Actions */
.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.error-actions .btn {
    min-width: 140px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .stat-item i {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }

    .error-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .collection-stats {
        padding: 1rem;
    }
}

/* Music Categories Section */
.music-categories {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.category-selector {
    margin-top: 2rem;
}

.category-tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.category-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.category-tab:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-3px);
}

.category-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.category-tab i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.category-tab span {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.category-tab small {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Albums Section */
.albums-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.album-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.album-artwork {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

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

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

.album-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .album-play-overlay {
    opacity: 1;
}

.album-play-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.album-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.album-info {
    padding: 1.5rem;
}

.album-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.album-year {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.album-tracks {
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.album-description {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-style: italic;
}

.album-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.album-actions .btn {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

/* Singles Section */
.singles-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.singles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.single-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.single-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.single-artwork {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.single-card:hover .single-artwork img {
    transform: scale(1.05);
}

.single-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.single-card:hover .single-play-overlay {
    opacity: 1;
}

.single-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.single-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.single-info {
    padding: 1rem;
}

.single-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: #fff;
}

.single-year {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.single-actions {
    display: flex;
    justify-content: center;
}

/* Archive Section */
.archive-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.archive-navigation {
    margin: 2rem 0;
}

.archive-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.archive-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.archive-tab:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
}

.archive-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.archive-content {
    margin-top: 2rem;
}

.archive-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.archive-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.archive-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.25rem;
}

.archive-stat .stat-label {
    font-size: 0.85rem;
    color: #888;
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    min-height: 200px;
}

.archive-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 200px;
}

/* Responsive Design for Categories */
@media (max-width: 768px) {
    .category-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .category-tab {
        padding: 1rem;
    }

    .category-tab i {
        font-size: 1.5rem;
    }

    .category-tab span {
        font-size: 1rem;
    }

    .albums-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .singles-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .archive-tabs {
        flex-direction: column;
        align-items: center;
    }

    .archive-tab {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .archive-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .category-tabs {
        grid-template-columns: 1fr;
    }

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

    .singles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .album-actions {
        flex-direction: column;
    }

    .album-actions .btn {
        width: 100%;
    }
}

/* Archive Items */
.archive-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.archive-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.archive-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.archive-item:hover .archive-thumbnail img {
    transform: scale(1.05);
}

.archive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.archive-item:hover .archive-overlay {
    opacity: 1;
}

.archive-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.archive-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.archive-info {
    padding: 1rem;
}

.archive-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: #fff;
    line-height: 1.2;
}

.archive-info p {
    color: #888;
    font-size: 0.8rem;
}

/* Archive Categories */
.archive-category {
    margin-bottom: 3rem;
}

.archive-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
}

.archive-category h3 i {
    color: #667eea;
}

.archive-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.archive-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: #888;
}

.archive-placeholder h3 {
    color: #fff;
    margin-bottom: 0.5rem;
}

/* Archive Responsive */
@media (max-width: 768px) {
    .archive-mini-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .archive-info {
        padding: 0.75rem;
    }

    .archive-info h4 {
        font-size: 0.85rem;
    }

    .archive-info p {
        font-size: 0.75rem;
    }

    .archive-play-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .archive-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .archive-category {
        margin-bottom: 2rem;
    }

    .archive-category h3 {
        font-size: 1.1rem;
    }
}

/* Enhanced About Section */
.about-english {
    margin-bottom: 2rem;
}

.about-arabic {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Arial', 'Tahoma', sans-serif;
}

.about-arabic h3 {
    color: #667eea;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.about-arabic p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.arabic-hashtags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.hashtag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hashtag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Platform Highlights */
.platform-highlights {
    margin: 3rem 0;
}

.platform-highlights h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.platform-highlight {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.platform-highlight:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.platform-highlight i {
    font-size: 2rem;
    color: #667eea;
    min-width: 40px;
    margin-top: 0.5rem;
}

.platform-content {
    flex: 1;
}

.platform-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.platform-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    color: #ccc;
}

.arabic-text {
    font-size: 0.85rem;
    color: #aaa;
    font-style: italic;
    margin-bottom: 1rem;
    font-family: 'Arial', 'Tahoma', sans-serif;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.platform-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Enhanced About Image */
.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.about-image:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.overlay-content p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.25rem;
}

.overlay-content .arabic-text {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0;
}

/* Enhanced About Stats */
.about-stats .stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.about-stats .stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.about-stats .stat .arabic-text {
    font-size: 0.75rem;
    color: #888;
    margin: 0;
    font-style: normal;
}

/* Responsive Design for Enhanced About */
@media (max-width: 768px) {
    .about-arabic {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .about-arabic h3 {
        font-size: 1.2rem;
    }

    .about-arabic p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .platform-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .platform-highlight {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .platform-highlight i {
        font-size: 1.5rem;
        margin-top: 0;
    }

    .arabic-hashtags {
        gap: 0.25rem;
    }

    .hashtag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .platform-link {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-arabic {
        padding: 1rem;
    }

    .about-arabic h3 {
        font-size: 1.1rem;
    }

    .about-arabic p {
        font-size: 0.95rem;
    }

    .platform-highlights h3 {
        font-size: 1.3rem;
    }

    .platform-content h4 {
        font-size: 1.1rem;
    }

    .platform-content p {
        font-size: 0.85rem;
    }

    .arabic-text {
        font-size: 0.8rem;
    }
}

/* Footer Arabic Text */
.footer-arabic {
    font-size: 0.85rem;
    color: #aaa;
    margin-top: 0.75rem;
    font-family: 'Arial', 'Tahoma', sans-serif;
    text-align: center;
    font-style: italic;
}

/* Enhanced Footer Platforms */
.footer-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.footer-platforms a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ccc;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-platforms a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.footer-platforms a i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .footer-platforms {
        gap: 0.5rem;
    }

    .footer-platforms a {
        width: 35px;
        height: 35px;
    }

    .footer-platforms a i {
        font-size: 1rem;
    }

    .footer-arabic {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
}

/* PayPal Section */
.paypal-section {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.paypal-section h4 {
    color: #667eea;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

.paypal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #0070ba 0%, #003087 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.paypal-btn:hover {
    background: linear-gradient(135deg, #005ea6 0%, #002973 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 112, 186, 0.4);
    color: white;
}

.paypal-btn i {
    font-size: 1.2rem;
}

.paypal-text {
    font-size: 0.8rem;
    color: #aaa;
    text-align: center;
    margin: 0;
    font-style: italic;
}

/* Additional Links */
.additional-links {
    margin-top: 1.5rem;
}

.additional-links h5 {
    color: #667eea;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.additional-links ul {
    list-style: none;
    padding: 0;
}

.additional-links li {
    margin-bottom: 0.25rem;
}

.additional-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.additional-links a:hover {
    color: #667eea;
}

/* Creator Section */
.creator-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.creator-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.creator-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #667eea;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.creator-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.creator-info h4 {
    color: #667eea;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.creator-info p {
    color: #aaa;
    font-size: 0.8rem;
    margin: 0;
}

/* Social Media */
.social-media h5 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.social-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ccc;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-grid a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.social-grid a i {
    font-size: 1rem;
}

.additional-social {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.social-link {
    color: #aaa;
    text-decoration: none;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.social-link:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

/* Enhanced Footer Layout */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .creator-profile {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .creator-avatar {
        width: 50px;
        height: 50px;
    }

    .social-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.4rem;
    }

    .social-grid a {
        width: 30px;
        height: 30px;
    }

    .social-grid a i {
        font-size: 0.9rem;
    }

    .paypal-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .paypal-section {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .creator-section {
        padding: 1rem;
    }

    .creator-avatar {
        width: 45px;
        height: 45px;
    }

    .creator-info h4 {
        font-size: 0.9rem;
    }

    .creator-info p {
        font-size: 0.75rem;
    }

    .social-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.3rem;
    }

    .social-grid a {
        width: 28px;
        height: 28px;
    }

    .social-grid a i {
        font-size: 0.8rem;
    }

    .paypal-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .social-link {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
}

/* Photo Gallery Section */
.gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.gallery .section-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Gallery Frame */
.gallery-frame {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 3rem;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 2rem;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Frame Decorations */
.frame-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 3;
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid #667eea;
    border-radius: 5px;
}

.frame-corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.frame-corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.frame-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.frame-border-top,
.frame-border-bottom {
    position: absolute;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.frame-border-top {
    top: 20px;
}

.frame-border-bottom {
    bottom: 20px;
}

.frame-border-left,
.frame-border-right {
    position: absolute;
    top: 50px;
    bottom: 50px;
    width: 2px;
    background: linear-gradient(180deg, transparent, #764ba2, transparent);
}

.frame-border-left {
    left: 20px;
}

.frame-border-right {
    right: 20px;
}

/* Gallery Container */
.gallery-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    background: #000;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.gallery-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.gallery-item {
    flex: 0 0 auto;
    width: 400px;
    height: 100%;
    margin-right: 20px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.gallery-overlay p {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0 0 1rem 0;
}

.gallery-share {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.gallery-share .share-btn {
    background: rgba(102, 126, 234, 0.8);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.gallery-share .share-btn:hover {
    background: rgba(102, 126, 234, 1);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Share Modal Styles */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.share-modal-content {
    background: #1a1a2e;
    padding: 2rem;
    border-radius: 15px;
    max-width: 400px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

.share-modal h3 {
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.share-btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.share-btn-social.twitter {
    background: #1da1f2;
}

.share-btn-social.facebook {
    background: #4267b2;
}

.share-btn-social.linkedin {
    background: #0077b5;
}

.share-btn-social.whatsapp {
    background: #25d366;
}

.share-btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-share-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-share-modal:hover {
    color: white;
}

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

/* Gallery Controls */
.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    position: relative;
    z-index: 4;
}

.gallery-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.gallery-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.gallery-btn:active {
    transform: translateY(-1px) scale(1.05);
}

.play-pause-btn {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
}

/* Gallery Indicators */
.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 4;
    flex-wrap: wrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.indicator.active {
    background: #667eea;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

.indicator:hover {
    background: rgba(102, 126, 234, 0.7);
    transform: scale(1.1);
}

/* Gallery Stats */
.gallery-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.gallery-stat {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.gallery-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.gallery-stat p {
    color: #aaa;
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Auto-scroll Animation */
@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-track.auto-scrolling {
    animation: autoScroll 20s linear infinite;
}

.gallery-track.auto-scrolling:hover {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery {
        padding: 60px 0;
    }

    .gallery h2 {
        font-size: 2rem;
    }

    .gallery-frame {
        padding: 1rem;
        margin: 0 1rem 2rem;
    }

    .gallery-container {
        height: 250px;
    }

    .gallery-item {
        width: 300px;
        margin-right: 15px;
    }

    .frame-corner {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }

    .frame-border-top,
    .frame-border-bottom {
        left: 30px;
        right: 30px;
    }

    .frame-border-left,
    .frame-border-right {
        top: 30px;
        bottom: 30px;
    }

    .gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .play-pause-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .gallery-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .gallery-stat {
        padding: 1.5rem 0.75rem;
    }

    .gallery-stat h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-frame {
        padding: 0.75rem;
    }

    .gallery-container {
        height: 200px;
    }

    .gallery-item {
        width: 250px;
        margin-right: 10px;
    }

    .gallery-controls {
        gap: 0.5rem;
    }

    .gallery-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .play-pause-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .gallery-stats {
        grid-template-columns: 1fr;
    }

    .gallery-stat h3 {
        font-size: 1.8rem;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .gallery-indicators {
        gap: 0.2rem;
        padding: 0 0.5rem;
    }
}
