/* GENEL AYARLAR */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;

    /* ARKAPLAN AYARI */
    background-image: url('../images/radiogramophone_bacground.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    background-color: #000; /* resim yüklenmezse siyah görünür */
}

/* İÇERİK KUTUSU */
.content-box {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.65);  /* yarı saydam siyah kutu */
    color: #fff;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

/* BAŞLIK */
h1 {
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,.6);
    margin-top: 40px;
}

/* PARAGRAFLAR */
p {
    line-height: 1.7;
    font-size: 17px;
    color: #f1f1f1;
}

/* LİNKLER */
a {
    color: #ffd700;
}
a:hover {
    text-decoration: underline;
}
