/* Genel Stil */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
}

/* Slider Görseli */
.slider img {
    max-width: 100%;
    height: 250px;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 0 25px #8a2be2, 0 0 50px #8a2be2;
}

/* Yeni: Geniş Slider Alanı */
.slider-wide {
    width: 100%;
    max-width: 95%;
    margin: 40px auto 0 auto;
    border-radius: 20px;
    box-shadow: 0 0 25px #8a2be2, 0 0 50px #8a2be2;
    display: flex;
    justify-content: center;
    background-color: transparent;
}

.slider-wide img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Header */
.header {
    background: #000;
    padding: 20px;
    text-align: center;
}
.logo {
    width: 180px;
}

/* Marquee */
.marquee {
    background-color: #1e1e1e;
    padding: 10px;
    color: #facc15;
    font-size: 15px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #1c1c1c, #000);
}
.hero h1 {
    font-size: 32px;
    color: #facc15;
}
.hero p {
    font-size: 18px;
    color: #ccc;
    margin: 20px auto;
    max-width: 600px;
}
.cta-button {
    background-color: #8a2be2;
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 0 12px #8a2be2;
    transition: all 0.3s ease;
    display: inline-block;
}
.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px #8a2be2;
}

/* Promo Alanı */
.promo {
    background: linear-gradient(to right, #facc15, #fbbf24);
    color: #000;
    text-align: center;
    padding: 16px;
    font-weight: bold;
    margin: 30px 0;
    border-radius: 10px;
}

/* Hakkında Alanı */
.about {
    text-align: center;
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 800px;
    border: 2px solid #8a2be2;
    border-radius: 12px;
    box-shadow: 0 0 16px #8a2be2;
}
.about h2 {
    color: #facc15;
    font-size: 26px;
    margin-bottom: 10px;
}
.about p {
    font-size: 16px;
    color: #ccc;
}

/* Footer */
.footer {
    background: #000;
    color: #888;
    font-size: 13px;
    padding: 20px;
    text-align: center;
}
