    :root {
        --primary: #FF5C8D;
        --secondary: #FF869E;
        --dark: #2E2E2E;
        --light: #FFF3F5;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter', sans-serif;
    }

body {
    background: 
        linear-gradient(
            rgba(255, 92, 141, 0.15),  /* Pembe overlay */
            rgba(255, 134, 158, 0.1)   /* Açık pembe overlay */
        ),
        url('https://www.sohbettema.com/seviyo/wp-content/themes/seviyo/resim/arks.webp') center/cover fixed;
    min-height: 100vh;
}

.auth-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(255,92,141,0.15);
    width: 400px;
    padding: 40px;
    margin: 20px 0;
}
	

    .auth-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .auth-header h1 {
        color: var(--primary);
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .auth-header p {
        color: var(--dark);
        opacity: 0.8;
    }

    .auth-form .input-group {
        margin-bottom: 20px;
    }

    .auth-form label {
        display: block;
        color: var(--dark);
        margin-bottom: 8px;
        font-weight: 500;
    }

    .auth-form input {
        width: 100%;
        padding: 12px 20px;
        border: 2px solid #eee;
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .auth-form input:focus {
        border-color: var(--primary);
        outline: none;
        box-shadow: 0 0 10px rgba(255,92,141,0.1);
    }

    .send-btn {
        background: var(--primary);
        color: white;
        border: none;
        padding: 12px;
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-weight: 500;
    }

    .send-btn:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

    @media (max-width: 480px) {
        .auth-container {
            width: 390%;
            padding: 25px;
        }
        
        .auth-header h1 {
            font-size: 1.75rem;
        }
    }
	
	
	
	
.page-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    padding: 120px 20px 50px; /* Header için üst boşluk eklendi */
    max-width: 1400px;
    margin: 0 auto;
}

.left-side, .right-side {
    max-width: 400px;
    color: var(--dark);
    font-size: 0.95rem;
    background: rgba(255, 243, 245, 0.6);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.left-side h2, .right-side h2 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.center-auth {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .page-layout {
        grid-template-columns: 1fr;
    }

    .left-side, .right-side {
        display: none;
    }
}	







.main-header {
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 20px rgba(255,92,141,0.08);
    padding: 24px 20px;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 20px;
}

.nav-logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.nav-left a,
.nav-right a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: 0.3s;
}

.nav-left a:hover,
.nav-right a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    width: 200px;
    padding: 10px 0;
    z-index: 99;
}

.mobile-menu a {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
}

#menu-toggle {
    display: none;
}

#menu-toggle:checked ~ .mobile-menu {
    display: flex;
}

/* Mobil görünüm */
@media (max-width: 768px) {
    .nav-left,
    .nav-right {
        display: none;
    }

    .hamburger {
        display: block;
        position: absolute;
        right: 20px;
    }

    .nav-logo {
        left: 50%;
        transform: translateX(-50%);
    }
}

.nav-left a,
.nav-right a,
.mobile-menu a {
    display: inline-block;
    background-color: #ff5c8d;
    color: white;
    padding: 8px 14px;
    margin: 5px 5px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-left a:hover,
.nav-right a:hover,
.mobile-menu a:hover {
    background-color: #e14a76;
    transform: scale(1.05);
}


.dynamic-content {
    padding: 4rem 2%;
    background: #fff5f8;
    border-top: 3px solid #ffeff3;
    margin-top: -50px; /* Layout ile overlap'ı önlemek için */
    position: relative;
    z-index: 0;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .page-layout {
        grid-template-columns: 1fr;
        padding: 100px 15px 30px;
    }
    
    .auth-container {
        width: 100%;
        max-width: 400px;
        padding: 25px;
    }
    
    .left-side, .right-side {
        display: none;
    }
    
    .dynamic-content {
        margin-top: 0;
        padding: 2rem 15px;
    }
}

@media (max-width: 480px) {
    .auth-container {
        padding: 20px;
    }
    
    .main-header {
        padding: 30px;
    }
}


/* Stil Eklemeleri */
.dynamic-content {
  padding: 4rem 2%;
  background: #fff5f8;
  border-top: 3px solid #ffeff3;
}

.content-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.2rem;
  color: #e91e63;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.post-grid, .category-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

.post-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.post-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(233,30,99,0.1);
  transition: transform 0.3s ease;
}

.post-card:hover {
  transform: translateY(-5px);
}

.post-image {
  height: 200px;
  background: #ffe6ee;
  position: relative;
}

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

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #e91e6399;
}

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
}

.post-content h3 a {
  color: #e91e63;
  text-decoration: none;
}

.post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.9rem;
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.category-card {
  padding: 1.5rem;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: scale(1.05);
}

.category-name {
  font-size: 1.2rem;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.post-count {
  font-size: 0.9rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .post-grid, .category-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}



.site-footer {
    background: var(--primary);
    padding: 50px 20px 30px;
    color: white;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    padding: 15px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-logo {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.copyright {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 30px;
}

.text-center {
    text-align: center;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-menu {
        align-items: center;
    }
    
    .footer-menu a:hover {
        transform: none;
    }
}



/* Stil Güncellemeleri */
.post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(233,30,99,0.1);
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-image {
    height: 200px;
    background: #ffe6ee;
    position: relative;
}

.post-content {
    padding: 20px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9em;
    color: var(--primary);
}

.post-meta .category {
    background: rgba(255,92,141,0.1);
    padding: 3px 10px;
    border-radius: 15px;
}

.post-content h3 {
    margin: 0 0 15px;
    font-size: 1.2em;
}

.post-content h3 a {
    color: var(--dark);
    text-decoration: none;
}

.post-content h3 a:hover {
    color: var(--primary);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination a, 
.pagination span {
    padding: 8px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.3s ease;
}

.pagination a:hover {
    background: var(--primary);
    color: white;
}

.pagination .current {
    background: var(--primary);
    color: white;
}

@media (max-width: 1024px) {
    .post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
    
    .post-image {
        height: 150px;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
}








.sevio-title {
  color: red;
  font-size: 36px;
  position: relative;
}

.floating-hearts {
  position: relative;
  height: 0;
}

.heart {
  position: absolute;
  font-size: 30px;
  animation: float-diagonal 2s ease-in-out infinite;
  opacity: 0;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.heart:nth-child(1) {
  animation-delay: 0s;
  left: 0;
  bottom: -30px;  /* Kalp yazının altında başlasın */
}

@keyframes float-diagonal {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50px, -150px) scale(1.5); /* sola ve yukarı */
    opacity: 0;
  }
}






















  * {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", sans-serif;
    background-color: #f4f4f4;
    overflow-x: hidden;
  }

  .page-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 60px;
    flex-wrap: wrap;
  }

  .content-box {
    width: 60%;
    background: #fff;
    border: 3px solid #8000ff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  .bg-white {
    background: #FF7F50;
  }

   

  .content-box h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #222;
  }

  .content-box .meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
  }

  .content-box .thumbnail img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
  }

  .content-box .text {
    font-size: 17px;
    color: #333;
    line-height: 1.7;
  }

  .content-box .tags {
    margin-top: 25px;
    font-size: 14px;
    color: #555;
  }

  .content-box .navigation {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
  }

  .content-box .comments {
    margin-top: 40px;
  }

  .sidebar-box {
    width: 100%;
    background: #fff;
    border: 3px solid #8000ff;
    border-radius: 20px;
    padding: 25px;
    top: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  .sidebar-box2 {
    width: 100%;
    background: #fff;
    border: 3px solid #8000ff;
    border-radius: 20px;
    padding: 25px;
    top: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }  

  .sidebar-box h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #8000ff;
  }
  
  .sidebar-box2 h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #8000ff;
  }  

  .category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .category-buttons a {
    background-color: #8000ff;
    color: #fff;
    padding: 10px 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    font-size: 14px;
  }

  .category-buttons a:hover {
    background-color: #5e00c7;
  }

  @media (max-width: 960px) {
    .page-wrapper {
      flex-direction: column;
      padding: 20px;
    }

    .content-box, .sidebar-box {
      width: 100%;
    }

    .sidebar-box {
      margin-top: 30px;
      position: static;
    }
    .sidebar-box2 {
      margin-top: 30px;
      position: static;
    }	
  }
  
  
.comments-box {
    width: calc(100% - 120px);
    margin: 40px auto;
    background: #fff;
    border: 3px solid #8000ff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .comments-box h2 {
    color: #8000ff;
    margin-bottom: 20px;
    font-size: 24px;
  }

  @media (max-width: 960px) {
    .comments-box {
      width: 90%;
    }
  }  
  
 
 
  
  .sidebar-container {
  width: 30%;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}


@media (max-width: 960px) {
  .sidebar-container {
    position: static;
    width: 100%;
    margin-top: 30px;
  }
}
  
  
/* Modern butonlar */
.rules-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rules-list button {
  background-color: #8000ff;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: default;
  transition: all 0.2s ease-in-out;
  text-align: left;
}

.rules-list button:hover {
  background-color: #fff;
  color: #8000ff;
  border: 2px solid #8000ff;
}  
  


.post-tags {
  margin-top: 25px;
}

.post-tags .tag-label {
  font-weight: bold;
  margin-right: 10px;
  color: #8000ff;
}

.post-tags a {
  display: inline-block;
  background-color: #8000ff;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  margin: 4px 6px 0 0;
  transition: all 0.2s ease-in-out;
}

.post-tags a:hover {
  background-color: #5e00c7;
}  