@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&family=Amiri:ital@0;1&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Charm:wght@400;700&family=Cookie&family=Flamenco&display=swap');


:root {
    --gradient-dark: #8B4513;  /* Saddle Brown */
    --gradient-light: #DAA520; /* Goldenrod */
    --primary-color: #000000;  /* Pure Black */
    --accent-color: #996515;   /* Golden Brown */
    --bg-color: #FFF8E7;       /* Antique White */
    --text-color: #333;        /* Text Color */
    --bg-color-alt: #FFF8DC;   /* Alternative Background */
}

/* Base Styles */
body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: linear-gradient(135deg, 
        var(--gradient-dark),
        var(--gradient-light),
        var(--gradient-dark));
    min-height: 100vh;
    position: relative;
}

/* Marble Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/marble.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.10;
    z-index: -1;
}

/* Container Styles */
.container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

/* Typography */
.arabic-greeting {
    font-family: 'Amiri', serif;
    font-size: 3rem;
    color: var(--gradient-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gradient-dark);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
    border-radius: 3px;
}

.section-title::before {
    content: '❀';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--gradient-dark);
    background: white;
    padding: 0 10px;
}

/* Countdown Timer */
.countdown-section {
    margin: 2rem 0;
    text-align: center;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1rem 0;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 10px;
    min-width: 80px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.countdown-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--bg-color);
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--bg-color);
}

/* Audio Control Position */
.audio-control {
    position: fixed;
    bottom: 80px; /* Mengubah dari 20px menjadi 80px agar tidak tertutup */
    right: 20px;
    z-index: 1000;
}

/* Audio Button Styles */
.audio-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    border: none;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gradient-dark);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.audio-button .icon-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-button .music-icon {
    position: absolute;
    font-size: 1.2rem;
    color: var(--gradient-dark);
    opacity: 0.7;
    animation: floating 2s ease-in-out infinite;
}

.audio-button .play-icon,
.audio-button .pause-icon {
    font-size: 0.9rem;
    color: var(--gradient-light);
    position: absolute;
    bottom: 8px;
    right: 8px;
    transition: all 0.3s ease;
}

@keyframes floating {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-2px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
}

.audio-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.audio-button.playing .music-icon {
    animation: musicPlaying 1s ease-in-out infinite;
}

@keyframes musicPlaying {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
    100% { transform: scale(1) rotate(0deg); }
}

/* Efek attention untuk tombol audio */
@keyframes attention {
    0% { transform: scale(1); box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2); }
    50% { 
        transform: scale(1.2); 
        box-shadow: 0 0 20px var(--gradient-light);
        background: linear-gradient(145deg, var(--gradient-light), rgba(255, 255, 255, 0.95));
    }
    100% { transform: scale(1); box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2); }
}

.audio-button.attention {
    animation: attention 1s ease infinite;
}

/* Navigation Buttons */
.nav-buttons {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(5px);
}

.nav-button {
    color: #8B4513;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-button:hover {
    background-color: #8B4513;
    color: white;
    transform: scale(1.1);
}

.nav-button.active {
    background-color: #8B4513;
    color: white;
}

/* Index Page Styles */
.content-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    overflow: hidden;
}

.content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: -1;
}

.logo-section {
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.logo-frame {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8),
                0 0 45px rgba(255, 215, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.5s ease;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.8),
                    0 0 45px rgba(255, 215, 0, 0.3);
    }
    to {
        box-shadow: 0 0 35px rgba(255, 255, 255, 0.9),
                    0 0 65px rgba(255, 215, 0, 0.5);
    }
}

.logo-frame::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: radial-gradient(circle at center,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 215, 0, 0.1) 50%,
        transparent 70%);
    filter: blur(10px);
    z-index: -1;
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.logo-img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
    transition: all 0.5s ease;
}

.logo-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.9),
                0 0 70px rgba(255, 215, 0, 0.6);
}

.logo-frame:hover .logo-img {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.9));
    transform: scale(1.05);
}
.hero-section {
    text-align: center;
    padding: 3rem; 
    background: linear-gradient(to right, 
        #f9f2e8 0%,
        #fff5e6 50%,
        #f9f2e8 100%
    );
    position: relative;
    margin: 30px auto;
    box-shadow: 
        0 2px 8px rgba(0,0,0,0.1),
        0 0 40px rgba(255,255,255,0.7);
    border-radius: 12px;
    overflow: hidden;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 100%;
    top: 0;
    z-index: -1;
}

.hero-section::before {
    left: -20px;
    background: linear-gradient(to right,
        transparent,
        rgba(139, 69, 19, 0.1) 40%,
        rgba(139, 69, 19, 0.2) 100%
    );
    border-radius: 20px 0 0 20px;
    transform: rotate(-2deg);
    box-shadow: inset -15px 0 15px -15px rgba(0,0,0,0.2);
}

.hero-section::after {
    right: -20px;
    background: linear-gradient(to left,
        transparent,
        rgba(139, 69, 19, 0.1) 40%,
        rgba(139, 69, 19, 0.2) 100%
    );
    border-radius: 0 20px 20px 0;
    transform: rotate(2deg);
    box-shadow: inset 15px 0 15px -15px rgba(0,0,0,0.2);
}

.bismillah {
    font-family: "Charm", serif;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 2px;
}

.event-type {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--accent-color);
    margin: 1.5rem 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-color);
    line-height: 1.3;
    margin: 1.5rem 0;
    font-weight: 600;
}

.date-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    position: relative;
    z-index: 2;
    background: transparent;
}

.date-item {
    text-align: center;
    padding: 0.5rem 1rem;
    position: relative;
}

.date-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border: none;
    box-shadow: none;
}

.date-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 1px;
    background: transparent;
}

.date-separator {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, 
        transparent,
        var(--accent-color),
        transparent);
}

.button-wrapper {
    margin-top: 2.5rem;
}

.button-frame {
    display: inline-block;
    padding: 3px;
    border-radius: 50px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-content {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.open-button {
    background: linear-gradient(45deg, var(--gradient-dark), var(--accent-color));
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.button-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: white;
    transition: all 0.3s ease;
}

.button-icon {
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.open-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
    background: linear-gradient(45deg, var(--accent-color), var(--gradient-dark));
}

.open-button:hover .button-icon {
    transform: rotate(15deg) scale(1.1);
}

.open-button:hover .button-text {
    transform: scale(1.05);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes buttonPulse {
    0% {
        box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(139, 69, 19, 0.4);
    }
    100% {
        box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
    }
}

.open-button {
    animation: buttonPulse 2s infinite;
}

/* Hover Effects */
.button-frame:hover .open-button {
    background: linear-gradient(
        90deg,
        var(--gradient-light) 0%,
        var(--gradient-dark) 50%,
        var(--gradient-light) 100%
    );
    background-size: 200% 100%;
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.button-frame:hover .button-text {
    color: white;
    transform: translateY(-2px);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.button-frame:hover .button-icon {
    color: white;
    transform: translateY(-2px) rotate(15deg);
}

@keyframes textWave {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-2px);
    }
    75% {
        transform: translateY(2px);
    }
}

@keyframes borderGlow {
    0%, 100% {
        box-shadow: 0 0 5px var(--gradient-dark),
                    0 0 10px var(--gradient-dark),
                    0 0 15px var(--gradient-light);
    }
    50% {
        box-shadow: 0 0 10px var(--gradient-dark),
                    0 0 20px var(--gradient-dark),
                    0 0 30px var(--gradient-light);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) rotate(0);
    }
    50% {
        transform: translateY(-5px) rotate(15deg);
    }
}

@media (max-width: 768px) {
    .logo-frame {
        width: 160px;
        height: 160px;
    }

    .logo-img {
        width: 130px;
    }

    .hero-section {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .bismillah {
        font-size: 2.2rem;
    }

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

    .event-type {
        font-size: 1.1rem;
    }

    .date-wrapper {
        flex-direction: column;
        gap: 0.2rem;
    }

    .date-item {
        width: 100%;
        padding: 0.3rem;
        margin: 0;
    }

    .date-separator {
        width: 30px;
        margin: 0.2rem auto;
        height: 1px;
    }
}

@media (max-width: 480px) {
    .logo-frame {
        width: 140px;
        height: 140px;
    }

    .logo-img {
        width: 110px;
    }

    .hero-section {
        padding: 1.5rem 1rem;
    }

    .bismillah {
        font-size: 2rem;
    }

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

    .event-type {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .date-value {
        font-size: 1.2rem;
    }

    .button-text {
        font-size: 1.1rem;
    }

    .open-button {
        padding: 1rem 2.5rem;
    }

    .date-wrapper {
        gap: 0.1rem;
    }

    .date-item {
        padding: 0.2rem;
    }

    .date-separator {
        margin: 0.1rem auto;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .arabic-greeting {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .countdown-container {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.8rem;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .participants-list ol {
        columns: 1;
    }

    .nav-buttons {
        left: 50%;
        top: auto;
        bottom: 20px;
        transform: translateX(-50%);
        flex-direction: row;
        padding: 8px 12px;
        gap: 12px;
    }

    .nav-button:hover {
        transform: translateY(-3px);
    }
}

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

    .arabic-greeting {
        font-size: 2rem;
    }

    .countdown-item {
        min-width: 50px;
        padding: 0.6rem;
    }
}

/* Isi Undangan Styles */
.section {
    min-height: 100vh;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.greeting-section {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 800px;
}

.arabic-greeting {
    font-family: 'Amiri', serif;
    font-size: 3rem;
    color: var(--gradient-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.greeting-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.event-details {
    background: linear-gradient(135deg, rgba(210, 184, 127, 0.2), rgba(255, 245, 196, 0.2));
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.event-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gradient-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.countdown-section {
    margin: 2rem 0;
}

.countdown-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--gradient-dark);
    margin-bottom: 1rem;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.countdown-item {
    background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
    padding: 1rem;
    border-radius: 15px;
    min-width: 80px;
    color: white;
}

.countdown-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.countdown-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.time {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gradient-dark);
    margin: 1rem 0;
}

.location {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.guest-section {
    margin-top: 3rem;
    text-align: center;
}

.guest-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gradient-dark);
    margin-bottom: 1.5rem;
}

.guest-photo-wrapper {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gradient-light);
}

.guest-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Rundown Section */
.rundown-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.rundown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gradient-dark), var(--gradient-light));
    border-radius: 5px;
}

.rundown-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gradient-dark);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.rundown-time {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(210, 184, 127, 0.1), rgba(255, 245, 196, 0.1));
    border-radius: 10px;
    display: inline-block;
    font-weight: 600;
}

.rundown-list {
    padding-left: 1.5rem;
}

.rundown-list ol {
    list-style: none;
    counter-reset: rundown-counter;
    padding: 0;
    margin: 0;
}

.rundown-list ol li {
    counter-increment: rundown-counter;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(210, 184, 127, 0.2);
}

.rundown-list ol li::before {
    content: counter(rundown-counter);
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.rundown-list ol li:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(210, 184, 127, 0.1), rgba(255, 245, 196, 0.1));
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .rundown-section {
        padding: 1.5rem;
    }

    .rundown-title {
        font-size: 1.5rem;
        padding-left: 1.2rem;
    }

    .rundown-time {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
    }

    .rundown-list ol li {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }

    .rundown-list ol li::before {
        left: -1.8rem;
        width: 1.8rem;
        height: 1.8rem;
    }
}

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

    .rundown-title {
        font-size: 1.3rem;
        padding-left: 1rem;
    }

    .rundown-time {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        margin-bottom: 1.2rem;
    }

    .rundown-list {
        padding-left: 1.2rem;
    }

    .rundown-list ol li {
        font-size: 0.95rem;
        padding: 0.7rem 1rem;
        margin-bottom: 0.8rem;
    }

    .rundown-list ol li::before {
        left: -1.5rem;
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.8rem;
    }
}

/* Peserta Section */
.peserta-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 800px;
    position: relative;
}

.peserta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-dark), var(--gradient-light), var(--gradient-dark));
}

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

.peserta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(210, 184, 127, 0.2);
}

.peserta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-dark), var(--gradient-light));
}

.peserta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gradient-dark), transparent);
}

.peserta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.peserta-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gradient-dark);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 1rem;
}

.peserta-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gradient-dark), transparent);
}

.peserta-info {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-top: 1rem;
    position: relative;
    padding: 0.5rem 1rem;
    background: rgba(210, 184, 127, 0.1);
    border-radius: 8px;
}

.peserta-info span {
    display: block;
    margin: 0.3rem 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .peserta-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }

    .peserta-card {
        padding: 1.8rem;
    }

    .peserta-name {
        font-size: 1.3rem;
        margin: 1.2rem 0 0.8rem;
    }

    .peserta-info {
        font-size: 0.95rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .peserta-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .peserta-card {
        padding: 1.5rem;
    }

    .peserta-name {
        font-size: 1.2rem;
        margin: 1rem 0 0.6rem;
    }

    .peserta-info {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }

    .peserta-info span {
        margin: 0.2rem 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .greeting-section {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }

    .arabic-greeting {
        font-size: 2.5rem;
    }

    .greeting-text {
        font-size: 1rem;
    }

    .event-date {
        font-size: 1.2rem;
    }

    .countdown-container {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 0.8rem;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .guest-photo-wrapper {
        width: 180px;
        height: 180px;
    }
}

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

    .greeting-section {
        padding: 1rem;
        margin: 1rem auto;
    }

    .arabic-greeting {
        font-size: 2rem;
    }

    .greeting-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .event-date {
        font-size: 1.1rem;
    }

    .countdown-container {
        gap: 0.8rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.6rem;
    }

    .countdown-value {
        font-size: 1.3rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .time {
        font-size: 1.1rem;
    }

    .location {
        font-size: 0.9rem;
    }

    .guest-photo-wrapper {
        width: 150px;
        height: 150px;
    }
}

/* List Participant Styles */
.participant-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.participant-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.participant-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gradient-dark));
}

.participant-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-dark), transparent);
}

.participant-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
}

.participant-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gradient-dark), transparent);
}

.participant-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.participant-info {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
    padding: 0.5rem;
    background: rgba(210, 184, 127, 0.1);
    border-radius: 6px;
    margin-top: 0.8rem;
}

.participant-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
}

.participant-item:hover .participant-number {
    transform: scale(1.1);
    transition: transform 0.4s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .participant-list {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1.2rem;
    }

    .participant-item {
        padding: 1.2rem;
    }

    .participant-number {
        font-size: 1.6rem;
    }

    .participant-name {
        font-size: 1rem;
    }

    .participant-info {
        font-size: 0.85rem;
        padding: 0.4rem;
    }
}

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

    .participant-item {
        padding: 1rem;
    }

    .participant-number {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .participant-name {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .participant-info {
        font-size: 0.8rem;
        padding: 0.3rem;
        margin-top: 0.6rem;
    }
}

/* subtitle */
.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: var(--text-color);
    margin: 1.5rem 0;
    text-align: center;
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(210, 184, 127, 0.1), rgba(255, 245, 196, 0.1));
    border-radius: 15px;
    line-height: 1.8;
}

.subtitle::before,
.subtitle::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-dark), transparent);
}

.subtitle::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.subtitle::after {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.subtitle span {
    display: block;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: var(--gradient-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .subtitle {
        font-size: 1.2rem;
        padding: 1.2rem;
    }
    
    .subtitle span {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .subtitle {
        font-size: 1.1rem;
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .subtitle span {
        font-size: 1rem;
    }
}

/* Opening Section */
.opening-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2rem auto;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
}

.opening-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-dark), var(--gradient-light));
    border-radius: 5px 5px 0 0;
}

.masyayikh-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-color);
    text-align: center;
    line-height: 1.6;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(210, 184, 127, 0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .opening-content {
        padding: 2rem;
        margin: 1.5rem auto;
    }

    .muballigh-photo img {
        width: 150px;
        height: 150px;
    }

    .masyayikh-text {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .opening-content {
        padding: 1.5rem;
        margin: 1rem auto;
    }

    .muballigh-photo img {
        width: 120px;
        height: 120px;
    }

    .masyayikh-text {
        font-size: 1rem;
        padding: 0.6rem;
    }
}

/* Maps Section */
.maps-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2rem auto;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
}

.maps-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-dark), var(--gradient-light));
    border-radius: 5px 5px 0 0;
}

.location-text {
    text-align: center;
    margin-bottom: 2rem;
}

.location-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.location-text p:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gradient-dark);
    margin-bottom: 1rem;
}

.maps-wrapper {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.maps-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

.maps-buttons {
    text-align: center;
}

.stream-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.btn-maps {
    background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
    color: rgba(255, 255, 255, 0.9);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.btn-maps i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-maps:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--gradient-light), var(--gradient-dark));
    color: #FFE4D6;
    box-shadow: 0 7px 20px rgba(139, 69, 19, 0.4);
}

.btn-maps:hover i {
    transform: scale(1.2) rotate(15deg);
    color: #FFF;
}

.btn-maps::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out, opacity 0.6s ease-out;
    opacity: 0;
}

.btn-maps:hover::after {
    width: 200px;
    height: 200px;
    opacity: 1;
}

@media (max-width: 768px) {
    .maps-content {
        padding: 2rem;
        margin: 1.5rem auto;
    }

    .location-text p {
        font-size: 1rem;
    }

    .location-text p:first-child {
        font-size: 1.2rem;
    }

    .maps-wrapper iframe {
        height: 350px;
    }

    .btn-maps {
        font-size: 1rem;
        padding: 0.7rem 1.8rem;
    }
}

@media (max-width: 480px) {
    .maps-content {
        padding: 1.5rem;
        margin: 1rem auto;
    }

    .location-text p {
        font-size: 0.9rem;
    }

    .location-text p:first-child {
        font-size: 1.1rem;
    }

    .maps-wrapper iframe {
        height: 300px;
    }

    .btn-maps {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }
}

/* Live Streaming Section */
.live-stream-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2rem auto;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    text-align: center;
}

.live-stream-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ff0000, #ff6b6b);
    border-radius: 5px 5px 0 0;
}

.stream-info {
    margin-bottom: 2rem;
}

.stream-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.youtube-icon {
    font-size: 4rem;
    color: #ff0000;
    margin: 1.5rem 0;
    animation: pulse 2s infinite;
}

.channel-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gradient-dark);
    margin-bottom: 1.5rem;
}

.stream-schedule {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 10px;
    line-height: 1.6;
}

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

.btn-youtube {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #FF0000, #FF5555);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
    gap: 0.8rem;
}

.btn-youtube i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-youtube span {
    position: relative;
    z-index: 2;
}

.btn-youtube::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #CC0000, #FF0000);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-youtube::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out, opacity 0.6s ease-out;
    opacity: 0;
    z-index: 1;
}

.btn-youtube:hover {
    transform: translateY(-3px);
    color: #FFE4E4;
    box-shadow: 0 7px 20px rgba(255, 0, 0, 0.4);
}

.btn-youtube:hover::before {
    opacity: 1;
}

.btn-youtube:hover::after {
    width: 200px;
    height: 200px;
    opacity: 1;
}

.btn-youtube:hover i {
    transform: scale(1.2) rotate(15deg);
    color: #FFF;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .live-stream-content {
        padding: 2rem;
        margin: 1.5rem auto;
    }

    .stream-text {
        font-size: 1.1rem;
    }

    .youtube-icon {
        font-size: 3.5rem;
    }

    .channel-name {
        font-size: 1.3rem;
    }

    .stream-schedule {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .btn-youtube {
        font-size: 1rem;
        padding: 0.7rem 1.8rem;
    }
}

@media (max-width: 480px) {
    .live-stream-content {
        padding: 1.5rem;
        margin: 1rem auto;
    }

    .stream-text {
        font-size: 1rem;
    }

    .youtube-icon {
        font-size: 3rem;
    }

    .channel-name {
        font-size: 1.2rem;
    }

    .stream-schedule {
        font-size: 0.9rem;
        padding: 0.6rem;
    }

    .btn-youtube {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
        width: 100%;
        justify-content: center;
    }

    .stream-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
    padding: 3rem 0;
    margin-top: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
}

.footer-content {
    padding: 2rem;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.footer-divider {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    margin: 1.5rem auto;
    border-radius: 2px;
}

.footer-credit {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 0;
}

.footer-credit i {
    color: #ff6b6b;
    margin: 0 0.3rem;
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0;
        margin-top: 3rem;
    }

    .footer-content {
        padding: 1.5rem;
    }

    .footer-title {
        font-size: 1.5rem;
    }

    .footer-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .footer-content {
        padding: 1rem;
    }

    .footer-title {
        font-size: 1.3rem;
    }

    .footer-subtitle {
        font-size: 1rem;
    }

    .footer-credit {
        font-size: 0.9rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }
}

.bismillah {
    font-family: 'Amiri', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.event-type {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin: 1.5rem 0;
    font-weight: 500;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    margin: 1.5rem 0;
    letter-spacing: 1px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
        max-width: 100%;
    }

    .logo-section {
        margin: 1rem auto;
    }

    .logo-frame {
        width: 120px;
        height: 120px;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .bismillah {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .event-type {
        font-size: 1.2rem;
        margin: 1rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
        margin: 1rem 0;
    }

    .date-wrapper {
        flex-direction: column;
        gap: 0.2rem;
    }

    .date-item {
        width: 100%;
        padding: 0.3rem;
        margin: 0;
    }

    .date-separator {
        width: 30px;
        margin: 0.2rem auto;
        height: 1px;
    }

    .button-wrapper {
        margin-top: 1.5rem;
    }

    .open-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-frame {
        width: 100px;
        height: 100px;
    }

    .bismillah {
        font-size: 1.5rem;
    }

    .event-type {
        font-size: 1rem;
    }

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

    .date-value {
        font-size: 1rem;
    }

    .button-wrapper {
        margin-top: 1rem;
    }

    .open-button {
        padding: 0.6rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Tambahan untuk animasi yang lebih halus */
.hero-section, .logo-section, .date-wrapper, .button-wrapper {
    transition: all 0.3s ease-in-out;
}

/* Perbaikan untuk layar yang sangat kecil */
@media (max-width: 320px) {
    .container {
        padding: 0.8rem;
    }

    .hero-section {
        padding: 1.5rem 0.8rem;
    }

    .bismillah {
        font-size: 1.3rem;
    }

    .event-type {
        font-size: 0.9rem;
    }

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

/* Responsive adjustments for audio button */
@media (max-width: 768px) {
    .audio-control {
        bottom: 100px; /* Lebih tinggi di mobile */
        right: 15px;
    }
}

@media (max-width: 480px) {
    .audio-control {
        bottom: 120px; /* Bahkan lebih tinggi di smartphone */
        right: 12px;
    }
    
    .audio-button {
        width: 40px; /* Sedikit lebih kecil di smartphone */
        height: 40px;
    }
}
