body {
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: white;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
}

.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(5px);
    -webkit-filter: blur(5px);
    z-index: -1;
}

.container {
    background: rgba(26, 17, 16, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #c49b66;
    width: 90%;
    max-width: 600px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.sound-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #c49b66;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
    z-index: 2;
}

.sound-toggle:hover {
    transform: scale(1.1);
}

.site-title {
    font-size: 28px;
    font-weight: bold;
    color: #c49b66;
    margin-bottom: 5px;
}

.site-subtitle {
    font-size: 18px;
    color: #c49b66;
    margin-bottom: 20px;
    opacity: 0.9;
}

.container::before {
    content: '☪';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: #c49b66;
}

.header {
    font-family: 'Amiri', serif;
    font-size: 24px;
    color: #c49b66;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

#sehirler {
    padding: 12px;
    font-size: 16px;
    border: 2px solid #c49b66;
    border-radius: 10px;
    margin-bottom: 20px;
    width: 90%;
    max-width: 300px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

#sehirler:hover {
    transform: scale(1.02);
    background: rgba(196, 155, 102, 0.1);
}

.vakit-card {
    background: linear-gradient(45deg, rgba(196, 155, 102, 0.1), rgba(0, 0, 0, 0.3));
    border: 1px solid #c49b66;
    border-radius: 15px;
    padding: 20px;
    margin: 15px 0;
    transition: all 0.3s ease;
    position: relative;
}

.vakit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(196, 155, 102, 0.3);
}

.vakit-baslik {
    font-family: 'Amiri', serif;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #c49b66;
}

.vakit-saat {
    font-size: 36px;
    font-weight: bold;
    margin: 15px 0;
    color: #fff;
    text-shadow: 0 0 10px rgba(196, 155, 102, 0.5);
}

.geri-sayim {
    font-size: 18px;
    color: #c49b66;
    margin-top: 10px;
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 1.5rem;
        width: 95%;
    }

    .site-title {
        font-size: 24px;
    }

    .site-subtitle {
        font-size: 16px;
    }

    .header {
        font-size: 20px;
    }

    #sehirler {
        width: 100%;
        font-size: 14px;
        padding: 10px;
    }

    .vakit-baslik {
        font-size: 20px;
    }

    .vakit-saat {
        font-size: 28px;
    }

    .geri-sayim {
        font-size: 16px;
    }

    .sound-toggle {
        top: 10px;
        right: 10px;
        font-size: 20px;
    }
}
