        :root {
            --rock-red: #e74c3c;
            --rock-dark: #1a1a1a;
            --rock-gray: #2c3e50;
            --rock-light: #34495e;
            --rock-accent: #e74c3c;
            --rock-gold: #f39c12;
            --rock-silver: #bdc3c7;
        }
        
        * {
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
            color: #ecf0f1;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-attachment: fixed;
        }
        
        /* هدر اصلی با تم راک */
        .main-header {
            background: linear-gradient(135deg, var(--rock-dark) 0%, var(--rock-gray) 50%, var(--rock-dark) 100%);
            color: white;
            padding: clamp(2rem, 6vw, 4rem) 0;
            position: relative;
            overflow: hidden;
            border-bottom: 3px solid var(--rock-red);
            background-size: cover;
            background-image: url(../img/header.webp);
            background-position: center;
        }
        
        .main-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.7);
                /*radial-gradient(circle at 20% 80%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(243, 156, 18, 0.05) 0%, transparent 50%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path d="M30,30 Q50,10 70,30 T90,50 T70,70 T50,90 T30,70 T10,50 T30,30" fill="none" stroke="white" stroke-width="0.5"/></svg>');*/
        }
        
        .artist-image {
            width: clamp(120px, 30vw, 180px);
            height: clamp(120px, 30vw, 180px);
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--rock-red);
            margin: 0 auto;
            display: block;
            position: relative;
            box-shadow: 
                0 0 30px rgba(231, 76, 60, 0.3),
                0 10px 40px rgba(0,0,0,0.5);
            transition: all 0.3s ease;
        }
        
        .artist-image:hover {
            transform: scale(1.05);
            box-shadow: 
                0 0 40px rgba(231, 76, 60, 0.5),
                0 15px 50px rgba(0,0,0,0.6);
        }
        
        .artist-name {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 900;
            margin-bottom: 0.5rem;
            background: linear-gradient(45deg, var(--rock-red), var(--rock-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            font-family: 'Impact', 'Arial Black', sans-serif;
            letter-spacing: -1px;
        }
        
        .artist-tagline {
            font-size: clamp(1rem, 3vw, 1.3rem);
            color: var(--rock-silver);
            margin-bottom: 1rem;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .social-links {
            margin: 1.5rem 0 1rem;
        }
        
        .social-links a {
            color: var(--rock-silver);
            font-size: clamp(1.3rem, 3vw, 1.6rem);
            margin: 0 0.3rem;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 0.8rem;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            width: 2em;
            height: 2em;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255,255,255,0.1);
            text-decoration: none;
        }
        
        .social-links a:hover {
            transform: translateY(-3px) scale(1.1);
            color: var(--rock-red);
            background: rgba(231, 76, 60, 0.1);
            border-color: var(--rock-red);
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }
        
        /* جدیدترین آهنگ با تم راک */
        .latest-song-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            padding: clamp(2rem, 5vw, 4rem) 0;
            position: relative;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .latest-song-card {
            border: none;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            transition: all 0.4s ease;
            overflow: hidden;
            background: linear-gradient(135deg, #2c2c2c 0%, #3c3c3c 100%);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .latest-song-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 
                0 20px 60px rgba(0,0,0,0.5),
                0 0 30px rgba(231, 76, 60, 0.2);
        }
        
        .new-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(45deg, var(--rock-red), #c0392b);
            color: white;
            padding: 0.7rem 1.8rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 700;
            z-index: 10;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
            animation: pulse 2s infinite;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        @keyframes pulse {
            0% { 
                transform: scale(1) rotate(0deg);
                box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
            }
            50% { 
                transform: scale(1.05) rotate(1deg);
                box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
            }
            100% { 
                transform: scale(1) rotate(0deg);
                box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
            }
        }
        
        /* بخش بیوگرافی زیبا */
        .bio-section {
            background: linear-gradient(135deg, #2c2c2c 0%, #3c3c3c 100%);
            padding: clamp(3rem, 6vw, 5rem) 0;
            position: relative;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .bio-card {
            background: linear-gradient(135deg, #2c2c2c 0%, #363636 100%);
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            overflow: hidden;
            position: relative;
        }
        
        .bio-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--rock-red), var(--rock-gold), var(--rock-red));
        }
        
        .bio-icon {
            font-size: 3rem;
            color: var(--rock-red);
            margin-bottom: 1.5rem;
            text-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
        }
        
        .bio-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .bio-feature {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255,255,255,0.05);
            border-radius: 15px;
            border-left: 3px solid var(--rock-red);
            transition: all 0.3s ease;
        }
        
        .bio-feature:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.08);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        .bio-feature i {
            font-size: 2rem;
            color: var(--rock-gold);
            margin-bottom: 1rem;
        }
        
        .bio-feature h4 {
            color: var(--rock-red);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        /* آهنگ‌های دیگر */
        .other-songs-section {
            padding: clamp(2rem, 5vw, 3rem) 0;
            background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%);
        }
        
        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            font-weight: 700;
            color: white;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--rock-red);
            margin: 1rem auto;
            border-radius: 2px;
        }
        
        .song-card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            height: 100%;
            background: linear-gradient(135deg, #2c2c2c 0%, #363636 100%);
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
        }
        
        .song-card:hover {
            box-shadow: 
                0 10px 30px rgba(0,0,0,0.4),
                0 0 20px rgba(231, 76, 60, 0.1);
            transform: translateY(-5px);
            border-color: rgba(231, 76, 60, 0.3);
        }
        
        .song-image {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
            transition: transform 0.3s ease;
            border: 2px solid rgba(255,255,255,0.1);
        }
        
        .song-card:hover .song-image {
            transform: scale(1.1);
            border-color: var(--rock-red);
        }
        
        /* پخش کننده صوتی راکی */
        audio {
            width: 100%;
            max-width: 100%;
            height: 40px;
            margin: 0.5rem 0;
            border-radius: 20px;
            filter: brightness(0.9) contrast(1.1);
        }
        
        audio::-webkit-media-controls-panel {
            background: linear-gradient(135deg, #3c3c3c, #4a4a4a);
            border-radius: 20px;
        }
        
        audio::-webkit-media-controls-play-button {
            background-color: var(--rock-red);
            border-radius: 50%;
        }
        
        /* دکمه‌های راکی */
        .btn-rock {
            background: linear-gradient(45deg, var(--rock-red), #c0392b);
            border: none;
            border-radius: 25px;
            padding: 0.8rem 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }
        
        .btn-rock:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
            background: linear-gradient(45deg, #c0392b, var(--rock-red));
        }
        
        .btn-outline-rock {
            border: 2px solid var(--rock-red);
            color: var(--rock-red);
            background: transparent;
            border-radius: 25px;
            padding: 0.8rem 1.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-rock:hover {
            background: var(--rock-red);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }
        
        /* فوتر */
        .main-footer {
            background: var(--rock-dark);
            color: var(--rock-silver);
            padding: 2rem 0;
            margin-top: 3rem;
            border-top: 3px solid var(--rock-red);
        }
        
        /* انیمیشن‌ها */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }
        
        .stagger-delay-1 { animation-delay: 0.1s; }
        .stagger-delay-2 { animation-delay: 0.2s; }
        .stagger-delay-3 { animation-delay: 0.3s; }
        
        /* موبایل بهینه */
        @media (max-width: 768px) {
            .main-header {
                text-align: center;
                padding: 2rem 0;
            }
            
            .artist-image {
                margin-bottom: 1.5rem;
            }
            
            .latest-song-card .row {
                flex-direction: column;
                text-align: center;
            }
            
            .latest-song-card .col-md-4 {
                margin-bottom: 1.5rem;
            }
            
            .social-links a {
                margin: 0 0.2rem;
                width: 1em;
                height: 1em;
                font-size: 1.3rem;
            }
            
            .bio-features {
                grid-template-columns: 1fr;
            }
            .song-card .audio-player , .song-info .song-card .d-flex {
               /* margin-left: -30%;*/
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .song-image {
                width: 60px;
                height: 60px;
            }
            
            .btn-rock, .btn-outline-rock {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            
            .bio-icon {
                font-size: 2.5rem;
            }
        }
        
        /* کاهش motion برای دسترسی */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
        
        /* حل مشکل آیکن اپل موزیک */
        .fa-apple {
            font-family: "Font Awesome 6 Brands" !important;
        }
        
        
.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.buffer {
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    width: 0%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: width 0.3s ease;
}

.progress {
    height: 100%;
    background: #e74c3c;
    width: 0%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: width 0.1s linear;
}
.artist-image {
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .artist-image:hover {
            opacity: 0.9;
            transform: scale(1.02);
        }
        
        /* استایل پلیر */
        .audio-player {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
        }
        
        .player-controls {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .play-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #e74c3c;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .play-btn:hover {
            background: #c0392b;
        }
        
        .play-btn.playing {
            background: #ffc107;
        }
        
        .progress-container {
            flex: 1;
        }
        
        .progress-bar {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 3px;
            overflow: hidden;
            cursor: pointer;
        }
        
        .progress {
            height: 100%;
            background: #e74c3c;
            width: 0%;
            transition: width 0.1s linear;
        }
        
        .time-display {
            display: flex;
            justify-content: space-between;
            margin-top: 5px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .volume-control {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .volume-slider {
            width: 80px;
        }
        
        .loading {
            display: none;
            color: #f39c12;
        }
        
        /* استایل‌های زیبا برای عکس‌ها */
        .song-image {
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            border: 3px solid rgba(231, 76, 60, 0.3);
        }
        
        .song-image:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
            border-color: rgba(231, 76, 60, 0.6);
        }
        
        .latest-song-image {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            border: 4px solid rgba(231, 76, 60, 0.4);
        }
        
        /* استایل دکمه‌ها */
        .btn-rock {
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            border: none;
            color: white;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .btn-rock:hover {
            background: linear-gradient(45deg, #c0392b, #a93226);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
        }
        
        .btn-outline-rock {
            border: 2px solid #e74c3c;
            color: #e74c3c;
            background: transparent;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .btn-outline-rock:hover {
            background: #e74c3c;
            color: white;
            transform: translateY(-2px);
        }
        
        /* تراز کردن عکس و متن */
        .song-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .song-info {
            flex: 1;
        }
