* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #6a11cb 7%, #2575fc 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.main-container {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
}

.player-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-title {
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.image-container {
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.3s ease;
}

.image-container img:hover {
    transform: scale(1.01);
}

.surah-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
}

.controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.control-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.2rem;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.play-btn {
    background: rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.progress-container {
    width: 100%;
}

.seek-bar {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

.seek-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.volume-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.volume-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.volume-btn:hover {
    transform: scale(1.1);
}

.volume-bar {
    flex: 1;
    height: 5px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

.volume-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* تأثيرات للعناصر عند التفاعل */
.control-btn:active, .volume-btn:active {
    transform: scale(0.95);
}

/* تصميم متجاوب للشاشات الصغيرة */
@media (max-width: 480px) {
    .player-card {
        padding: 20px;
    }
    
    .app-title {
        font-size: 1.5rem;
    }
    
    .image-container {
        height: 180px;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
    
    .play-btn {
        width: 55px;
        height: 55px;
    }
}