        :root {
            --mavi: #4e8cff;
            --sari: #ffd43b;
            --yesil: #47d7ac;
            --turuncu: #ff9f43;
            --pembe: #ff6b8b;
            --mor: #9c5fff;
            --acik-gri: #f8f9fa;
            --beyaz: #ffffff;
            --koyu: #343a40;
            --golge: rgba(0, 0, 0, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
            color: var(--koyu);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Navbar Stili - Mobil Uyumlu */
        .navbar {
            background: var(--beyaz);
            height: 90px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-bottom: 3px solid var(--turuncu);
        }

        .logo {
            font-size: 32px;
            font-weight: 800;
            color: var(--mavi);
            display: flex;
            align-items: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }

        .logo i {
            margin-right: 12px;
            font-size: 38px;
            color: var(--turuncu);
            animation: bounce 2s infinite;
        }

        .nav-links {
            display: flex;
            gap: 20px;
        }

        /* Yeni menü stili: Oval, turuncu, beyaz yazılı, büyük font */
        .nav-links a {
            color: var(--beyaz);
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            position: relative;
            padding: 12px 24px;
            transition: all 0.3s ease;
            background: var(--turuncu);
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 10px rgba(255, 159, 67, 0.3);
        }

        .nav-links a:hover {
            background: #ff8c2b;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 159, 67, 0.5);
        }

        /* Menü ikonları */
        .nav-links a i {
            font-size: 20px;
        }

        /* Hamburger menü sadece mobilde görünsün */
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 28px;
            color: var(--koyu);
            background: var(--acik-gri);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .hamburger:hover {
            background: var(--mavi);
            color: white;
        }

        /* Header Stili */
        .header {
            margin-top: 90px;
            height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 30px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(120deg, var(--mavi), var(--yesil));
            background-size: 200% 200%;
            animation: gradientBG 8s ease infinite;
            color: white;
        }

        .header h1 {
            font-size: 46px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.2);
            font-weight: 800;
        }

        .header p {
            font-size: 22px;
            max-width: 800px;
            line-height: 1.6;
            font-weight: 600;
            opacity: 0.95;
        }
		
        .header2 {
            margin-top: -16px;
            height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 30px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(120deg, #c905c1, var(--yesil));
            background-size: 200% 200%;
            animation: gradientBG 8s ease infinite;
            color: white;
        }

        .header2 h1 {
            font-size: 46px;
            margin-bottom: 20px;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.2);
            font-weight: 800;
        }

        .header2 p {
            font-size: 22px;
            max-width: 800px;
            line-height: 1.6;
            font-weight: 600;
            opacity: 0.95;
        }		

        /* Ana İçerik */
        .main-content {
            display: flex;
            min-height: calc(100vh - 390px);
            padding: 40px 5%;
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Sohbet Giriş Bölümü */
        .chat-login {
            flex: 5;
            background: var(--beyaz);
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 30px var(--golge);
            border: 2px solid var(--mavi);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .chat-login:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(78, 140, 255, 0.2);
        }

        .chat-login h2 {
            font-size: 36px;
            margin-bottom: 30px;
            color: var(--mavi);
            text-align: center;
            position: relative;
            font-weight: 800;
        }

        .chat-login h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: var(--sari);
            border-radius: 3px;
        }

        .input-group {
            margin-bottom: 30px;
            position: relative;
        }

        .input-group label {
            display: block;
            margin-bottom: 12px;
            font-weight: 700;
            color: var(--koyu);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
        }

        .input-group input {
            width: 100%;
            padding: 18px 25px;
            border-radius: 15px;
            border: 2px solid #e0e0e0;
            background: var(--acik-gri);
            color: var(--koyu);
            font-size: 18px;
            outline: none;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .input-group input:focus {
            background: var(--beyaz);
            border-color: var(--yesil);
            box-shadow: 0 0 0 4px rgba(71, 215, 172, 0.2);
        }

        .login-btn {
            background: linear-gradient(90deg, var(--turuncu), var(--pembe));
            color: white;
            border: none;
            padding: 18px 35px;
            border-radius: 15px;
            font-size: 20px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 15px;
            box-shadow: 0 6px 18px rgba(255, 159, 67, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .login-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 159, 67, 0.6);
            background: linear-gradient(90deg, var(--pembe), var(--turuncu));
        }

        .login-btn:active {
            transform: translateY(0);
        }

        .login-options {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .option {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 17px;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #666;
            font-weight: 600;
        }

        .option:hover {
            color: var(--mavi);
            transform: translateX(5px);
        }

        .option i {
            color: var(--turuncu);
            font-size: 20px;
        }

        /* Açıklama Bölümü */
        .login-note {
            margin-top: 30px;
            padding: 25px;
            background: rgba(78, 140, 255, 0.08);
            border-radius: 15px;
            border-left: 5px solid var(--mavi);
            text-align: center;
            font-size: 17px;
            line-height: 1.7;
            color: #555;
            font-weight: 600;
        }

        .login-note strong {
            color: var(--mavi);
            font-size: 19px;
        }

        /* Sağ Panel - Popüler Sohbet Odaları */
        .chat-rooms {
            flex: 5;
            background: var(--beyaz);
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 30px var(--golge);
            border: 2px solid var(--yesil);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            color: var(--yesil);
            margin-bottom: 30px;
            position: relative;
            font-weight: 800;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 180px;
            height: 5px;
            background: var(--mor);
            border-radius: 3px;
        }

        .room-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .room-card {
            background: var(--acik-gri);
            border-radius: 20px;
            padding: 30px;
            display: flex;
            align-items: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }

        .room-card:hover {
            transform: translateY(-8px);
            background: var(--beyaz);
            box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
            border-color: var(--pembe);
        }

        .room-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(45deg, var(--mavi), var(--mor));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 25px;
            font-size: 36px;
            color: white;
            flex-shrink: 0;
        }

        .room-info {
            flex: 1;
        }

        .room-title {
            font-size: 26px;
            margin-bottom: 12px;
            color: var(--koyu);
            font-weight: 800;
            display: center;
            align-items: center;
            gap: 15px;
        }

        .room-topic {
            font-size: 18px;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .room-stats {
            display: flex;
            gap: 25px;
        }

        .room-stat {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 16px;
            font-weight: 700;
            color: var(--mor);
        }

        .room-stat i {
            font-size: 20px;
        }

        .join-btn {
            background: linear-gradient(90deg, var(--yesil), var(--mavi));
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
            align-self: center;
        }

        .join-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(71, 215, 172, 0.4);
        }

        .emoji-wall {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 35px;
            padding: 25px;
            background: linear-gradient(90deg, rgba(255, 214, 59, 0.1), rgba(255, 107, 139, 0.1));
            border-radius: 20px;
            border: 3px dashed var(--turuncu);
        }

        .emoji-item {
            font-size: 36px;
            animation: float 4s infinite ease-in-out;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .emoji-item:hover {
            transform: scale(1.6) rotate(15deg);
        }

        /* Animasyonlar */
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(15deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            70% { transform: scale(1.5); opacity: 0.7; }
            100% { transform: scale(1); opacity: 1; }
        }

        /* Responsive Tasarım */
        @media (max-width: 1200px) {
            .nav-links a {
                padding: 12px 20px;
                font-size: 16px;
            }
        }

        @media (max-width: 1024px) {
            .nav-links {
                position: fixed;
                top: 90px;
                right: -100%;
                flex-direction: column;
                background: var(--beyaz);
                width: 300px;
                height: calc(100vh - 90px);
                padding: 40px 30px;
                transition: all 0.4s ease;
                box-shadow: -8px 0 25px rgba(0,0,0,0.15);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .hamburger {
                display: flex;
            }

            .nav-links a {
                padding: 18px 25px;
                font-size: 18px;
                margin-bottom: 15px;
                border-radius: 50px;
                text-align: center;
                justify-content: center;
            }
        }

        @media (max-width: 992px) {
            .main-content {
                flex-direction: column;
            }
            
            .header h1 {
                font-size: 40px;
            }
            .header2 h1 {
                font-size: 40px;
            }			
            
            .header p {
                font-size: 20px;
            }
            .header2 p {
                font-size: 20px;
            }			
        }

        @media (max-width: 768px) {
            .room-card {
                flex-direction: column;
                text-align: center;
            }
            
            .room-icon {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .room-stats {
                justify-content: center;
                margin-bottom: 20px;
            }
            
            .header {
                height: 280px;
                padding: 25px;
            }
            .header2 {
                height: 280px;
                padding: 25px;
            }			
            
            .header h1 {
                font-size: 32px;
            }
            .header2 h1 {
                font-size: 32px;
            }			
            
            .header p {
                font-size: 18px;
            }
            .header2 p {
                font-size: 18px;
            }			
        }

        @media (max-width: 576px) {
            .header {
                height: 250px;
                padding: 20px;
            }
            .header2 {
                height: 250px;
                padding: 20px;
            }			
            
            .header h1 {
                font-size: 28px;
            }
            .header2 h1 {
                font-size: 28px;
            }			
            
            .header p {
                font-size: 16px;
            }
            .header2 p {
                font-size: 16px;
            }			
            
            .login-options {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .chat-login, .chat-rooms {
                padding: 25px;
            }
            
            .logo {
                font-size: 26px;
            }
            
            .logo i {
                font-size: 30px;
            }
        }
		
/* Masaüstünde gizle */
@media (min-width: 1024px) {
  #hamburger {
    display: none;
  }
}	

.zigzag-item .text {
    font-family: 'MontSerrat', cursive;
}
.zigzag-item .text h3,
.zigzag-item .text p {
    font-family: 'MontSerrat', cursive;
}
.zigzag-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.zigzag-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 40px;
}

.zigzag-item .emoji {
  font-size: 48px;
  flex-shrink: 0;
}

.zigzag-item .text {
  max-width: 700px;
  margin-top: -20px;
}

.zigzag-item.left {
  flex-direction: row;
  text-align: left;
}

.zigzag-item.right {
  flex-direction: row-reverse;
  text-align: right;
}

.zigzag-item.right .text {
  max-width: 600px;
}

.icon-wrapper {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a3d2ca;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: width 0.3s ease, height 0.3s ease;
}

.icon-wrapper img {
  width: 462px;
  height: 300px;
  object-fit: contain;
  transition: width 0.3s ease, height 0.3s ease;
}

/* Soldaki resmi sola kaydır */
.zigzag-item.left .icon-wrapper {
  margin-left: -186px;
}

/* Sağdaki resmi sağa kaydır */
.zigzag-item.right .icon-wrapper {
  margin-right: -20px;
}

/* ---------- MOBİL UYUMLULUK (max-width: 768px) ---------- */
@media (max-width: 768px) {
  .zigzag-item {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    gap: 20px;
  }

  .zigzag-item.left,
  .zigzag-item.right {
    flex-direction: column !important;
  }

  .zigzag-item .text {
    max-width: 100% !important;
    padding: 0 20px;
    margin-top: 0;
  }

  .icon-wrapper {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .icon-wrapper img {
    width: 466px;
    height: 300px;
  }

  .zigzag-item.left .icon-wrapper,
  .zigzag-item.right .icon-wrapper {
    margin: 0 auto; /* Kaymaları sıfırla, ortala */
  }
}






/* --------- GENEL MAKALE STİLİ --------- */
.blog-section {
  background: #f9f9ff;
  padding: 60px 20px;
  border-top: 4px solid #ffbe0b;
  border-radius: 10px;
}

.section-title h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #333;
  font-weight: bold;
}

/* --------- MAKALE YAPISI --------- */
.hizlishell-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

/* --------- SOL SİDEBAR --------- */
.hizlishell-sidebar {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.sidebar-box h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #444;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-box li {
  font-size: 16px;
  margin-bottom: 10px;
}

.popular-post-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.popular-post-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.thumbnail-placeholder {
  width: 60px;
  height: 60px;
  background: #eee;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 18px;
}

/* --------- MAKALE KARTLARI --------- */
.hizlishell-main {
  flex: 2 1 600px;
}

.hizlishell-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.post-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.post-image {
  position: relative;
}

.post-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.image-placeholder {
  width: 100%;
  height: 200px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #999;
}

.category-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff6b6b;
  color: #fff;
  padding: 4px 10px;
  font-size: 14px;
  border-radius: 4px;
  font-weight: bold;
}

.post-content {
  padding: 20px;
}

.post-meta {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.post-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.post-content h3 a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

.post-content h3 a:hover {
  color: #ff6b6b;
}

.excerpt {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.read-more {
  font-weight: bold;
  text-decoration: none;
  color: #ff6b6b;
  display: inline-block;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #d12e2e;
  transform: translateX(4px);
}

/* --------- MESAJ: MAKALE YOKSA --------- */
.no-posts-message {
  text-align: center;
  color: #666;
  font-size: 18px;
  margin-top: 20px;
}

/* --------- SAYFALAMA --------- */
.pagination {
  margin-top: 30px;
  text-align: center;
}

/* --------- MOBİL UYUMLULUK --------- */
@media (max-width: 992px) {
  .hizlishell-grid {
    grid-template-columns: 1fr;
  }

  .hizlishell-container {
    flex-direction: column;
  }
}


.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

/* İç başlıkları hizalı ve dikkat çekici yap */
.content-container .section-title h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  position: relative;
}
.content-container .section-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #64b5f6;
  margin: 12px auto 0;
  border-radius: 2px;
}