/* Tarayıcı varsayılan mavi linkleri temizle */
a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

a:focus {
    outline: none;
}

a:active {
    color: inherit;
}


/* --- 1. DESIGN TOKENS --- */
:root {
    --bordo: #800000;
    --bej: #fdfaf5;
    --gri-soft: #f0f0f0;
    --text-koyu: #333333;
    --beyaz: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Pacifico', cursive;
    --transition: 0.3s ease-in-out;
}

/* --- 2. RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bej); color: var(--text-koyu); line-height: 1.6; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.max-w-800 { max-width: 800px; margin: 0 auto; }
.section-padding { padding: 100px 0; }
.bg-white { background: var(--beyaz); }
.bg-gray { background: var(--gri-soft); }

/* --- 3. REUSABLES --- */
.section-title { font-family: var(--font-heading); font-size: 3rem; color: var(--bordo); text-align: center; margin-bottom: 60px; font-style: italic; }
.btn { display: inline-block; text-decoration: none; cursor: pointer; transition: var(--transition); border: none; text-align: center; }
.btn--main { padding: 18px 45px; background: var(--bordo); color: var(--beyaz); font-weight: 700; letter-spacing: 2px; }
.btn--main:hover { opacity: 0.8; }
.btn--thick { width: 100%; padding: 20px; background: var(--bordo); color: var(--beyaz); font-weight: 700; letter-spacing: 2px; }

/* --- 4. HEADER --- */
.header { background: var(--bej); padding: 25px 0; border-bottom: 1px solid rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
.header__content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); color: var(--bordo); font-size: 2.2rem; }
.logo span { color: var(--text-koyu); }
.nav__list { display: flex; list-style: none; }
.nav__link { text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; font-weight: 600; margin-left: 30px; color: var(--text-koyu); text-decoration: none; }
.nav__link:hover { color: var(--bordo); }
 
/* ALT MENÜ */
.alt-menu {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 22px 0;
    background-color: #ffffff;
    border-top: 1px solid #ffffff;
}

.alt-menu a {
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.8px;
    color: #2b2b2b;
    position: relative;
    padding-bottom: 6px;
}

/* Toz pembe – el çizimi efekti */
/* ALT MENÜ FOSFORLU KALEM EFEKTİ */
.alt-menu a {
    position: relative;
    font-weight: 600;
}

.alt-menu a::before {
    content: "";
    position: absolute;
    left: -6%;
    top: 58%;
    width: 0%;
    height: 1em;
    background-color: rgba(255, 255, 255, 0.5); /* toz pembe fosfor */
    transform: rotate(-2deg);
    border-radius: 10px;
    z-index: -1;
    transition: width 0.35s ease;
}

.alt-menu a:hover::before {
    width: 112%;
}



.alt-menu a:hover::after {
    width: 112%;
}

.navbar nav a:hover::before {
    width: 108%;
}


/* --- 5. HERO --- */
.hero { min-height: 85vh; display: flex; align-items: center; }
.hero__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.hero__location { color: var(--bordo); text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; margin-bottom: 20px; }
.hero__title { font-family: var(--font-heading); font-size: 4rem; line-height: 1.1; margin-bottom: 30px; }
.hero__desc { font-size: 1.1rem; max-width: 500px; margin-bottom: 30px; }
.hero__image img { width: 100%; border-radius: 4px; box-shadow: 20px 20px 0px var(--gri-soft); }

/* --- 6. ABOUT --- */
.about__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.about__card { text-align: center; padding: 40px; border: 1px solid rgba(0,0,0,0.05); background: var(--bej); transition: var(--transition); }
.about__card:hover { transform: translateY(-5px); border-color: var(--bordo); }
.about__card i { font-size: 2.2rem; color: var(--bordo); margin-bottom: 20px; }
.about__card h3 { font-family: var(--font-heading); margin-bottom: 15px; }

/* --- 7. PORTFOLIO & GALLERY --- */
.portfolio__nav { text-align: center; margin-bottom: 60px; }
.btn-filter { display: inline-block; margin: 0 15px; padding: 10px 0; border-bottom: 1px solid transparent; text-transform: uppercase; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; color: var(--text-koyu); text-decoration: none; transition: var(--transition); }
.btn-filter:hover { color: var(--bordo); border-bottom-color: var(--bordo); }

.gallery-group { margin-top: 80px; }
.gallery-group__title { font-family: var(--font-accent); color: var(--bordo); font-size: 2rem; text-align: center; margin-bottom: 35px; }
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.gallery__item img { width: 100%; height: 300px; object-fit: cover; transition: var(--transition); filter: grayscale(10%); }
.gallery__item img:hover { filter: grayscale(0); transform: scale(1.02); }

/* --- 8. SERVICES --- */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { text-align: center; padding: 35px; border: 1px solid #ddd; background: var(--beyaz); }
.service-card i { font-size: 2rem; color: var(--bordo); margin-bottom: 20px; }
.service-card h4 { font-family: var(--font-heading); margin-bottom: 12px; }

/* --- 9. SSS --- */
.sss-item { margin-bottom: 30px; padding-bottom: 15px; border-bottom: 1px solid #ccc; }

/* --- 10. CONTACT --- */
.contact__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.contact__form input, .contact__form textarea { width: 100%; padding: 18px; margin-bottom: 20px; border: 1px solid #ccc; background: transparent; font-family: inherit; }
.contact__form textarea { height: 150px; }
.info-card { background: var(--bordo); color: var(--beyaz); padding: 50px; line-height: 2.2; border-radius: 4px; }
.socials { margin-top: 30px; }
.socials a { color: var(--beyaz); font-size: 1.4rem; margin-right: 25px; transition: var(--transition); }
.socials a:hover { opacity: 0.6; }

/* --- 11. FOOTER --- */
.footer { padding: 60px 0; text-align: center; border-top: 1px solid rgba(0,0,0,0.05); }
.signature { font-family: var(--font-accent); font-size: 1.8rem; color: var(--bordo); }

/* --- 12. RESPONSIVE --- */
@media (max-width: 992px) {
    .hero__grid, .contact__grid { grid-template-columns: 1fr; }
    .hero__image { order: -1; margin-bottom: 30px; }
    .gallery__grid, .about__grid { grid-template-columns: repeat(2, 1fr); }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .gallery__grid, .services__grid { grid-template-columns: 1fr; }
    .hero__title { font-size: 2.8rem; }
    .nav__list { display: none; } 
}
/* ADIM 2 – ALT MENÜ YAZI ZEMİNİ */
.alt-menu a {
    position: relative;
    font-weight: 700;
    z-index: 1;
}
/* ADIM 3 – ALT MENÜ PEMBE FOSFOR */
.alt-menu a::before {
    content: "";
    position: absolute;

    left: -10%;
    top: 50%;
    transform: translateY(-50%) rotate(-2deg);

    width: 0%;
    height: 1.3em;

    background-color: rgba(116, 101, 107, 0.7); /* toz pembe fosfor */
    border-radius: 14px;

    z-index: -1;
    transition: width 0.35s ease;
}
/* ADIM 4 – HOVER’DA FOSFOR TAM */
.alt-menu a:hover::before {
    width: 120%;
}

.alt-menu a.active::before {
    width: 120%;
}

/* Genel İçerik Kapsayıcısı */
.main-content {
    max-width: 900px; /* İçeriğin genişliğini sınırla */
    margin: 40px auto; /* Üstten ve alttan boşluk, yatayda ortala */
    padding: 20px;
    background-color: #fff; /* İçerik kutusunun arka planı */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* Hafif gölge */
}

/* Başlıklar */
.page-title {
    font-size: 2.5em; /* Daha büyük başlık */
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8em;
    color: #A0522D; /* Tema rengine uygun */
    margin-top: 30px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee; /* Alt çizgi */
    padding-bottom: 10px;
}

/* Oyun Açıklaması */
.game-description, .character-intro {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Karakter Kartları */
.character-card {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    display: flex; /* İçindeki resim ve metni yan yana hizalamak için */
    align-items: center; /* Dikeyde ortala */
    gap: 20px; /* İç elemanlar arasına boşluk */
}

.character-card h3 {
    color: #A0522D;
    margin-top: 0;
    font-size: 1.5em;
}

.character-card p {
    flex: 1; /* Metnin kalan alanı kaplamasını sağlar */
    color: #666;
    line-height: 1.5;
}

/* Resimler */
.game-image, .character-image {
    max-width: 100%; /* Kapsayıcısından taşmasın */
    height: auto; /* Oranını koru */
    border-radius: 8px;
    margin-top: 15px; /* Metinden biraz boşluk bırak */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Resimlere hafif gölge */
}

.character-image {
    max-width: 200px; /* Karakter resimlerini biraz küçült */
    flex-shrink: 0; /* Küçülmesini engelleme */
    order: 2; /* Metin solda, resim sağda olsun */
}

.character-card:nth-child(even) .character-image {
    order: -1; /* Her iki karakter kartını farklı hizala (Raze sağda, Vyse solda) */
}


/* Yorum Bölümü */
.comment-section {
    background-color: #f0f8ff; /* Açık mavi arka plan */
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.comment-section p {
    font-style: italic;
    color: #777;
    margin-bottom: 25px;
}

/* Form elemanları (örnek için ekledim, kendi stilinize uydurunuz) */
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit; /* Yazı tipini siteden alsın */
    box-sizing: border-box; /* Padding ve border genişliği etkilemesin */
}

button[type="submit"] {
    background-color: #A0522D; /* Tema rengi */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #8B4513; /* Hover rengi */
}
/* Karakter kartının genel düzeni */
.character-card {
    display: flex;
    flex-direction: column; /* İçerikleri (başlık, yazı, foto) alt alta dizer */
    align-items: center;    /* Her şeyi ortalar */
    text-align: center;     /* Yazıları ortalar */
    margin-bottom: 50px;    /* Kartlar arası boşluk */
    padding: 20px;
}

/* Resimlerin stili */
.char-photo {
    width: 100%;            /* Genişliği kart kadar olsun */
    max-width: 400px;       /* Ama 400px'den fazla büyümesin, çok kaba durmasın */
    height: auto;           /* Orantıyı bozma */
    margin-top: 20px;       /* Yazıyla resim arasında boşluk bırak */
    border-radius: 15px;    /* Köşeleri hafif yuvarla, daha modern durur */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2); /* Resmin altına hafif gölge atar, havada gibi durur */
}
.section {
  padding: 100px 8%;
  background-color: #fffaf2;
}

.section h2 {
  font-size: 42px;
  color: #5b1b1b;
  margin-bottom: 10px;
}

.section-desc {
  color: #555;
  margin-bottom: 50px;
  max-width: 600px;
}

.kitap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.kitap-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.kitap-card:hover {
  transform: translateY(-6px);
}

.kitap-card img {
  width: 100%;
  border-radius: 12px;
  height: 280px;
  object-fit: cover;
}

.kitap-card h3 {
  margin: 15px 0 8px;
  color: #5b1b1b;
}

.kitap-card p {
  font-size: 14px;
  color: #666;
}
/* KİTAP KURDU */
.kitap-section {
  padding: 120px 8%;
  background-color: #fffaf2;
}

.mini-title {
  color: #8b0000;
  font-size: 13px;
  letter-spacing: 3px;
}

.kitap-section h2 {
  font-size: 46px;
  margin: 10px 0;
  color: #2b2b2b;
}

.kitap-aciklama {
  max-width: 500px;
  color: #555;
  margin-bottom: 60px;
  line-height: 1.7;
}

.kitap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.kitap-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}

.kitap-card:hover {
  transform: translateY(-8px);
}

.kitap-img {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.kitap-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.kitap-card:hover img {
  transform: scale(1.08);
}

.etiket {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #8b0000;
  color: #fff;
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 20px;
}

.kitap-card h3 {
  margin-top: 16px;
  color: #5b1b1b;
}

.kitap-card p {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
}
/* FİLM GECESİ */
.film-section {
  padding: 120px 8%;
  background: linear-gradient(180deg, #fffaf2, #f4e8dc);
}

.film-section h2 {
  font-size: 46px;
  color: #2b2b2b;
  margin: 10px 0;
}

.film-aciklama {
  max-width: 500px;
  color: #555;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* Grid */
.film-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Kart */
.film-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  transform: translateY(30px);
  animation: filmFade 0.8s ease forwards;
}

@keyframes filmFade {
  to {
    transform: translateY(0);
  }
}

.film-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.film-card:hover img {
  transform: scale(1.08);
}

/* Overlay */
.film-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
}

.film-card:hover .film-overlay {
  opacity: 1;
}

.film-overlay h3 {
  color: #fff;
  margin-bottom: 6px;
}

.film-overlay p {
  color: #ddd;
  font-size: 14px;
}
/* İLETİŞİM */
.iletisim-section {
  padding: 130px 8%;
  background-color: #fffaf2;
}

.iletisim-section h2 {
  font-size: 46px;
  color: #2b2b2b;
  margin: 10px 0;
}

.iletisim-aciklama {
  max-width: 520px;
  color: #555;
  margin-bottom: 60px;
  line-height: 1.7;
}

/* Form */
.iletisim-form {
  max-width: 600px;
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.iletisim-form input,
.iletisim-form textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 12px;
  border: 1px solid #e2cfc0;
  font-size: 14px;
  background: #fff;
  transition: border 0.3s ease;
}

.iletisim-form input:focus,
.iletisim-form textarea:focus {
  outline: none;
  border-color: #8b0000;
}

.iletisim-form textarea {
  height: 140px;
  resize: none;
  margin-bottom: 25px;
}

/* Buton */
.iletisim-form button {
  background: #8b0000;
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iletisim-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139,0,0,0.25);
}
/* MESAJ GÖNDERİLDİ */
.success-message {
  display: none;
  margin-top: 40px;
  font-size: 20px;
  color: #8b0000;
  font-weight: 500;
  animation: successPop 0.8s ease forwards;
}

@keyframes successPop {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
/* === NAVBAR DÜZELTME === */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.navbar a {
  text-decoration: none;
  white-space: nowrap;
}
body {
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
button {
  transition: all 0.3s ease;
}

button:hover {
  background-color: #c94f7c;
  transform: scale(1.05);
}
.navbar a {
  position: relative;
}

.navbar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #c94f7c;
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}
.card {
  animation: cardFade 0.8s ease forwards;
}

@keyframes cardFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== OYUN BÜLTENİ ===== */

.game-section {
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.page-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 10px;
}

.page-subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 60px;
}

.game-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.game-card img {
  width: 300px;
  border-radius: 15px;
  object-fit: cover;
}

.game-content h2 {
  margin-bottom: 15px;
  font-size: 26px;
}

.game-content p {
  color: #555;
  line-height: 1.7;
}

/* Ters kart (sağ-sol değişir) */
.game-card.reverse {
  flex-direction: row-reverse;
}

/* CTA alanı */
.cta-box {
  margin-top: 80px;
  padding: 30px;
  text-align: center;
  background: linear-gradient(135deg, #f7c1d9, #fbe7f1);
  border-radius: 20px;
  font-size: 18px;
  font-weight: 500;
}
/* ===== OYUN BÜLTENİ YENİ TASARIM ===== */

.game-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.game-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 80px;
}

.game-row.reverse {
  flex-direction: row-reverse;
}

.game-text {
  max-width: 400px;
}

.game-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.game-text p {
  color: #555;
  line-height: 1.7;
}

.main-img {
  width: 260px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.pixel-img {
  width: 140px;
  image-rendering: pixelated;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

/* Hover tatlılığı */
.game-row:hover .main-img {
  transform: translateY(-8px) scale(1.03);
}

.game-row:hover .pixel-img {
  transform: rotate(-5deg) scale(1.1);
}
/* ===== KARAKTER SÖZLERİ ===== */

.game-text blockquote {
  margin-top: 20px;
  padding-left: 20px;
  font-style: italic;
  color: #410606;
  border-left: 4px solid #c94f7c;
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* Hover'da söz parlasın */
.game-row:hover blockquote {
  opacity: 1;
  transform: translateX(5px);
}
.pixel-img {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
/* ===== İLETİŞİM CANLILIK ===== */

.contact-form {
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Input focus */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c94f7c;
  box-shadow: 0 0 12px rgba(201,79,124,0.4);
  transition: 0.3s;
}

/* Gönder butonu */
.contact-form button {
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: scale(1.07);
  background-color: #c94f7c;
}

/* Başarı mesajı */
.success-message {
  display: none;
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f7c1d9, #fbe7f1);
  border-radius: 15px;
  text-align: center;
  font-weight: 500;
  animation: pop 0.6s ease;
}

@keyframes pop {
  0% { transform: scale(0.7); opacity: 0; }
  80% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}
/* Başarı mesajı */
.success-message {
  display: none; /* ilk başta gizli */
  padding: 1.5rem;
  margin: 1rem 0;
  background: linear-gradient(90deg, #a1ffce, #faffd1);
  border-left: 5px solid #32cd32;
  border-radius: 8px;
  font-size: 1.2rem;
  color: #333;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Admin panel mesaj kutuları */
.admin-message {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 8px;
  background: #f0f8ff;
  border-left: 4px solid #0078ff;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: transform 0.2s, background 0.3s;
}

.admin-message:hover {
  transform: scale(1.02);
  background: #e6f2ff;
}

.admin-message h4 {
  margin: 0 0 0.3rem 0;
  color: #0078ff;
}

.admin-message p {
  margin: 0.2rem 0;
}
.admin-link {
  position: relative;
  z-index: 9999;
  pointer-events: auto;
  display: inline-block;
}

