
/* Genel Stil AyarlarÄ± */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: url('bg.jpg') no-repeat center center/cover;
    color: #e0e0e0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

header h1 {
    font-size: 2.5rem;
    color: #ff9800;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

section {
    margin: 2rem auto;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d3d3d3;
    margin-bottom: 1rem;
}

section ol {
    text-align: left;
    margin: 1rem 0;
    padding: 0 1.5rem;
}

section ol li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #ffffff;
}

iframe {
    margin: 2rem auto;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}