.discussion-layout {
    flex: 1;
    width: 100%;
}

body {
    background: #121212;
    color: #fff;
    margin: 0;
    padding: 0;
    font-family: monospace;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container1 {
    display: flex;
    min-height: calc(100vh - 60px);
    position: relative;
    transition: all 0.3s ease;
}

/* Sol grup stilleri */
.sol-grup {
    flex: 1;
    padding: 20px;
    max-width: 100%;
    transition: all 0.3s ease;
    margin: 0;
}

/* Sağ grup (Sidebar) stilleri */
.sag-grup {
    width: 320px;
    background-color: #2f3136;
    height: calc(100vh - 60px);
    position: fixed;
    right: 0;
    top: 60px;
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 999;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    padding: 15px;
}

/* Sidebar toggle butonu - sadece mobilde görünür */
.sidebar-toggle {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 80px;
    background: #5865f2;
    color: white;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    z-index: 1000;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.sidebar-toggle:hover {
    transform: scale(1.05);
    background: #4752c4;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.sidebar-toggle:active {
    transform: scale(0.95);
}

/* Responsive medya sorguları */
@media (max-width: 1200px) {
    .container1 {
      
        padding: 0;
    }
    
    .sol-grup {
        padding: 15px;
        margin: 0;
    }

    .sag-grup {
        padding: 12px;
    }
}

@media (max-width: 992px) {
    .container1 {
        margin: 0;
        padding: 0;
    }

    .sag-grup {
      
        width: 100%;
        max-width: 320px;
        height: 100vh;
        top: 0;
        padding: 60px 10px 20px 10px;
        z-index: 1000;
    }

    .sag-grup.active {
        transform: translateX(0);
    }

    .sidebar-toggle {
        display: flex;
        z-index: 1001;
    }

    .sol-grup {
        width: 100%;
        max-width: 100%;
        padding: 15px 10px;
        margin: 0;
    }

    .nickname-container, .nickname2-container {
        padding: 10px;
        margin-bottom: 10px;
    }

    .message-container {
        font-size: 14px;
        padding: 0 5px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 15px;
    }

    .menu-list {
        padding: 0;
        margin: 0;
        gap: 15px;
    }

    .profile-container {
        gap: 8px;
    }

    .sag-grup {
        width: 100%;
        max-width: 100%;
        height: calc(100vh - 60px);
        padding: 60px 8px 20px 8px;
    }

    .bilgi-content {
        padding: 8px;
        margin: 0;
    }

    .yorum-item {
        padding: 8px;
        margin-bottom: 8px;
    }

    .yorum-content {
        margin: 5px 0 0 35px;
        padding: 0;
        font-size: 13px;
    }

    .reply-container {
        padding: 8px;
        margin: 0;
    }

    .reply-container textarea {
        min-height: 60px;
        font-size: 14px;
        padding: 8px;
        margin: 0;
    }

    .ai-message {
        padding: 10px;
        margin: 10px 0;
    }

    .like-dislike-buttons {
        gap: 12px;
        padding: 8px 0;
        margin: 8px 0;
    }
}

@media (max-width: 576px) {
    .navbar {
        height: 50px;
        padding: 0 10px;
    }

    .logo {
        width: 35px;
        margin: 0;
    }

    .menu-list {
        transform: scale(1);
        gap: 10px;
    }

    .profile-container {
        gap: 6px;
    }

    .profile-picture {
        width: 28px;
        height: 28px;
        margin: 0;
    }

    .coin {
        width: 35px;
        margin: 0;
    }

    .notification-button {
        font-size: 14px;
        margin: 0;
    }

    .sol-grup {
        padding: 10px 8px;
    }

    .sol-grup h2 {
        font-size: 16px;
        margin: 0 0 12px 0;
        padding-bottom: 8px;
    }

    .nickname-container, .nickname2-container {
        padding: 8px;
        margin-bottom: 8px;
    }

    .message-container {
        font-size: 13px;
        padding: 0 4px;
    }

    .yorum-avatar {
        width: 28px;
        height: 28px;
        margin: 0;
    }

    .yorum-user-info {
        margin-left: 8px;
    }

    .yorum-user-info strong {
        font-size: 13px;
    }

    .yorum-time {
        font-size: 11px;
    }

    .sidebar-toggle {
        right: 10px;
        bottom: 70px;
        width: 40px;
        height: 40px;
        font-size: 14px;
        margin: 0;
    }

    .tartisma-ayarlari-modal .tartisma-ayarlari-content {
        width: 95%;
        padding: 12px;
        margin: 10px;
    }
}

@media (max-width: 360px) {
    .navbar {
        padding: 0 8px;
    }

    .profile-container {
        gap: 4px;
    }

    .coin-miktari {
        font-size: 12px;
        margin: 0;
    }

    .sol-grup {
        padding: 8px 5px;
    }

    .message-container {
        font-size: 12px;
        padding: 0 3px;
    }

    .yorum-content {
        margin: 4px 0 0 25px;
        font-size: 12px;
    }

    .bilgi-content {
        padding: 6px;
    }

    .yorum-item {
        padding: 6px;
        margin-bottom: 6px;
    }
}

/* Yükseklik bazlı medya sorguları */
@media (max-height: 600px) {
    .sag-grup {
        padding-top: 45px;
    }

    .bilgi-content {
        max-height: calc(100vh - 200px);
        overflow-y: auto;
        padding: 8px;
        margin: 0;
    }

    .yorumlar-list {
        max-height: 300px;
        margin: 0;
        padding: 5px;
    }
}

/* Scrollbar stilleri */
.sag-grup::-webkit-scrollbar {
    width: 6px;
}

.sag-grup::-webkit-scrollbar-track {
    background: transparent;
}

.sag-grup::-webkit-scrollbar-thumb {
    background: #202225;
    border-radius: 3px;
}

.sag-grup::-webkit-scrollbar-thumb:hover {
    background: #40444b;
}

/* Temel stiller */
body {
    background: #121212;
    color: #fff;
    margin: 0;
    padding: 0;
    font-family: monospace;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.navbar {
    height: 60px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    opacity: 0.9;
    background-color: rgba(0, 0, 0, 0.7);
}

.logo{
    width: 45px; /* İstediğin genişliği belirle */
    bottom: 5px; /* Sayfanın altından 10 piksel yukarıda */
    right: 5px; /* Sayfanın sağından 10 piksel içeride */
}

.menu-list {
    display: flex;
    list-style: none;
    column-gap: 30px;
    padding: 0;
    margin: 0;
    transform: scale(1.2);
}

.menu-list-item {
    cursor: pointer;
}

.menu-list-item a {
    color: #fff;
    text-decoration: none;
}

.menu-list-item a:hover,
.menu-list-item.active a {
    font-weight: bold;
}

.profile-container {
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.profile-picture {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
}

.profile-text-container {
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    right: 0;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.merhaba {
    text-align: center;
    margin-top: 20px;
    color: #fff;
}

.logo {
    font-size: 30px;
    color: rgb(255, 255, 255);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

@media only screen and (max-width: 600px) {
    body {
        background-color: linear-gradient(to right, #000, rgb(28, 28, 36)); 
    }
    .menu-list {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
    }

    .menu-list-item {
        padding: 10px;
        text-align: center;
    }

    .menu-list.active {
        max-height: 500px; 
        opacity: 1;
    }
}

.notification-button {
    position: relative;
    cursor: pointer;
    margin-right: 0; /* Profil resmine yaklaştırmak için marjin kaldırıldı */
}

.notification-button .notification-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
}

.notifications-panel {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    background-color: rgba(0, 0, 0, 0.9);
    border: 1px solid #333;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: left;
}

.notification-item {
    padding: 10px;
    border-bottom: 1px solid #333;
    color: #fff;
}

.notification-item p {
    margin: 0;
}

.bildirim {
    width: 30px; 
    position: relative;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .notifications-panel {
        position: fixed; 
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        max-height: 100%;
        border: none; 
        border-radius: 0; 
        box-shadow: none; 
    }

    .close-button {
        font-size: 24px; 
    }
}

/* Medya sorgusu: Tabletler için */
@media (min-width: 769px) and (max-width: 1024px) {
    .notifications-panel {
        width: 250px; 
    }
}

.coin {
    width: 45px; 
    bottom: 5px; 
    right: 5px; 
}

.notification-item span {
    font-size: 12px;
    color: #aaa;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

@media only screen and (max-width: 600px) {
    body {
        background-color: linear-gradient(to right, #000, rgb(28, 28, 36)); 
    }
    .menu-list {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
    }

    .menu-list-item {
        padding: 10px;
        text-align: center;
    }

    .menu-list.active {
        max-height: 500px; 
        opacity: 1;
    }
}

.coin-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    margin-right: 20px;
}

.coin-container img {
    width: 45px;
}

.coin-miktari {
    margin-left: 10px;
    font-size: 16px;
    color: #fff;
}

.coin-dropdown {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    border: 1px solid #333;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.coin-dropdown a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

.coin-dropdown a:hover {
    background-color: #444;
}

.coin-container:hover .coin-dropdown {
    display: block;
}

.close-button {
    background: none;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    position: absolute; 
    top: 5px;
    right: 5px; 
}

.close-button:hover {
    color: red; 
}

.footer {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 0;
    border-radius: 0;
}

.footer {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 0;
    margin-top: auto;
    border-radius: 0;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav {
    list-style: none;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin: 0 10px;
    color: #fff;
}

.nav-item a {
    text-decoration: none;
    color: white;
}

.nav-item a:hover {
    text-decoration: underline;
}

.list-inline-item {
    margin: 0 5px;
}

.btn {
    font-size: 1rem;
    padding: 5px 8px;
    border-radius: 0;
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        padding: 10px 0;
        border-radius: 10px 10px 0px 0px;
    }

    .nav {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-item, .list-inline-item {
        margin: 5px;
    }

    .btn {
        font-size: 0.8rem;
        padding: 5px;
    }
}

.list-inline-item img {
    object-fit: cover;
    width: 30px;
    height: 30px; 
}

/* HEADER */

/* Bootstrap Icons import */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");

/* Animasyonlar */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.container1 {
    display: flex;
    min-height: 100vh;
    background-color: #36393f;
    gap: 20px;
}

/* Sol grup - Ana mesajlaşma alanı */
.sol-grup {
    flex: 1;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.sol-grup h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid #40444b;
}

/* Tartışmacı alanı */
.participant-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    margin-bottom: 12px;
    background: #2b2f36;
    border: 1px solid #3a3f47;
    border-radius: 14px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.participant-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    border: 1px solid transparent;
    pointer-events: none;
}

.participant-card.participant-one::before {
    border-color: rgba(88, 101, 242, 0.35);
}

.participant-card.participant-two::before {
    border-color: rgba(59, 165, 92, 0.35);
}

.participant-avatar {
    margin: 0;
}

.placeholder-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-avatar .participant-photo {
    opacity: 0.5;
}

.avatar-button {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.participant-photo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.avatar-button:hover .participant-photo {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.4);
}

.participant-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.participant-name {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}

.participant-message {
    color: #d0d4dc;
    margin: 0;
    line-height: 1.6;
    white-space: pre-line;
    word-break: break-word;
}

.vote-chip {
    display: none;
}

@media (max-width: 768px) {
    .participant-card {
        padding: 12px;
        gap: 10px;
    }

    .participant-photo {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .participant-card {
        flex-direction: column;
    }

    .participant-avatar {
        align-self: flex-start;
    }

    .participant-photo {
        width: 32px;
        height: 32px;
    }
}

/* AI Mesaj kutusu */
.ai-message {
    background-color: #262a32;
    border-radius: 16px;
    padding: 20px;
    margin: 16px 0;
    color: #d7dae0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.ai-message.waiting {
    border-style: dashed;
    opacity: 0.9;
}

.ai-message-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.ai-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(130deg, #5865f2, #43b581);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.ai-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ai-name {
    font-weight: 600;
    color: #fff;
    font-size: 15px;
}

.ai-status {
    font-size: 12px;
    color: #9fa5b4;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ai-message-body p {
    margin: 0;
    line-height: 1.6;
    color: #dfe3ea;
}

.ai-actions {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

.ai-feedback {
    margin-top: 12px;
    font-size: 0.9rem;
    color: #949aa8;
}

.ai-waiting-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    color: #9fa5b4;
}

.typing-spinner {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.typing-spinner span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5865f2;
    display: inline-block;
    animation: typingPulse 0.9s infinite ease-in-out;
}

.typing-spinner span:nth-child(2) {
    animation-delay: 0.15s;
}

.typing-spinner span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes typingPulse {
    0%, 80%, 100% { opacity: 0.2; transform: translateY(0); }
    40% { opacity: 1; transform: translateY(-3px); }
}

.ai-waiting-text {
    margin: 0;
    color: #dfe3ea;
    font-weight: 500;
}

.ai-waiting-note {
    color: #9fa5b4;
}

/* Sağ grup - Discord benzeri tasarım güncellemeleri */
.sag-grup {
    width: 320px;
    background-color: #2f3136;
    border-left: 1px solid #202225;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 98;
    overflow-y: auto;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}

/* Tartışma bilgileri içerik düzenlemeleri */
.bilgi-content {
    padding: 16px;
    color: #b9bbbe;
    max-height: none;
    overflow-y: visible;
}

.bilgi-content p {
    margin: 8px 0;
    padding: 8px 0;
    transition: all 0.2s ease;
}

.bilgi-content p:last-child {
    border-bottom: none;
}

.bilgi-content p:hover {
    color: #dcddde;
    transform: translateX(4px);
}

.bilgi-content strong {
    color: #dcddde;
    margin-right: 6px;
}

.bilgi-content i {
    color: #b9bbbe;
    margin-right: 8px;
    transition: color 0.2s ease;
}

.bilgi-content p:hover i {
    color: #5865f2;
}

/* Yorumlar bölümü geliştirmeleri */
.yorumlar-section {
    display: flex;
    flex-direction: column;
    margin: 0 16px 16px;
    gap: 12px;
    scroll-margin-top: 90px;
    min-height: 260px;
}

.yorumlar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    margin-bottom: 12px;
}

.yorumlar-header h3 {
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.yorum-sayisi {
    background-color: #4f545c;
    color: #fff;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 12px;
}

.yorumlar-list {
    flex: 1;
    overflow-y: auto;
    min-height: 150px;
    max-height: 60vh;
    background-color: #2f3136;
    border-radius: 8px;
    padding: 8px;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #202225;
    border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #40444b;
}

/* Yorum kartı */
.yorum-item {
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 12px;
    background-color: #36393f;
    border: 1px solid #40444b;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: slideIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.yorum-item:not(:last-child) {
    border-bottom: 1px dashed #40444b;
}

.yorum-item:hover {
    background-color: #32353b;
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.yorum-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.yorum-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.yorum-avatar:hover {
    transform: scale(1.15) rotate(5deg);
}

.yorum-user-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.yorum-user-info strong {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}

.yorum-time {
    color: #72767d;
    font-size: 12px;
    font-weight: 400;
}

.yorum-content {
    color: #dcddde;
    font-size: 14px;
    line-height: 1.5;
    margin-left: 48px;
    word-wrap: break-word;
    padding: 8px 0;
}

/* Yorum formu */
.yorum-form {
    margin-top: auto;
    padding: 12px;
    background-color: #36393f;
    border-radius: 8px;
}

.yorum-input-container {
    display: flex;
    gap: 8px;
    align-items: center;
    background-color: #40444b;
    border-radius: 4px;
    padding: 8px;
    transition: background-color 0.2s ease;
}

.yorum-input-container textarea {
    flex: 1;
    background: none;
    border: none;
    color: #dcddde;
    font-size: 14px;
    resize: none;
    min-height: 20px;
    max-height: 60px;
    padding: 4px;
}

.yorum-input-container textarea:focus {
    outline: none;
}

.yorum-input-container button {
    background: none;
    border: none;
    color: #b9bbbe;
    padding: 4px;
    cursor: pointer;
    transition: color 0.2s;
}

.yorum-input-container button:hover {
    color: #fff;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .sag-grup {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 60vh;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .sag-grup.active {
        transform: translateY(0);
    }

    .discussion-bar {
        position: relative;
        width: 100%;
        padding: 10px;
    }

    .yorumlar-list {
        min-height: 300px;
        max-height: 500px;
    }

    .yorum-item {
        padding: 12px;
    }

    .yorum-content {
        margin-left: 40px;
        font-size: 13px;
    }
}

/* Like/Dislike butonları */
.like-dislike-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 16px 0;
    padding: 12px 0;
    border-top: 1px solid #40444b;
    border-bottom: 1px solid #40444b;
}

#like-button, #dislike-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: #4f545c;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

#like-button:hover {
    background-color: #3ba55c;
    transform: translateY(-2px);
}

#dislike-button:hover {
    background-color: #ed4245;
    transform: translateY(-2px);
}

#like-count, #dislike-count {
    color: #b9bbbe;
    font-size: 14px;
    font-weight: 500;
}

.ai-message > :last-child {
    color: #b9bbbe;
    font-size: 13px;
    margin-top: 16px;
    cursor: pointer;
    transition: color 0.2s;
}

.ai-message > :last-child:hover {
    color: #ed4245;
    text-decoration: underline;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .like-dislike-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    #like-button, #dislike-button {
        flex: 1;
        justify-content: center;
    }
}

/* Bildir butonu */
.report-section {
    margin-top: 16px;
}

.report-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #b9bbbe;
    padding: 0;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.2s;
}

.report-btn:hover {
    color: #ed4245;
}

.report-btn i {
    color: #ed4245;
}

/* Responsive düzenlemeler */
@media (max-width: 1024px) {
    .container1 {
        gap: 10px;
   

    }
}

@media (max-width: 768px) {
    .container1 {
        margin-right: 0;
        margin-bottom: 60px;
    }

    .sag-grup {
        position: fixed;
        top: auto;
        bottom: 60px;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 60vh;
        border-top: 1px solid #202225;
        border-left: none;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .sag-grup.active {
        transform: translateY(0);
    }

    /* Mobil toggle butonu */
    .mobile-toggle {
        display: block;
        position: fixed;
        bottom: 70px;
        right: 20px;
        background: #5865f2;
        color: white;
        border: none;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        z-index: 99;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
}

/* Custom Scrollbar güncellemesi */
.sag-grup::-webkit-scrollbar {
    width: 4px;
}

.sag-grup::-webkit-scrollbar-track {
    background: transparent;
}

.sag-grup::-webkit-scrollbar-thumb {
    background: #202225;
    border-radius: 4px;
}

.sag-grup::-webkit-scrollbar-thumb:hover {
    background: #40444b;
}

@media (max-width: 480px) {
    .sol-grup {
        padding: 10px;
    }

    .sol-grup h2 {
        font-size: 18px;
    }

    .profile-picture {
        width: 32px;
        height: 32px;
    }

    .message-container p {
        font-size: 14px;
    }

    .tartisma-bilgi p {
        font-size: 12px;
    
    }
}

/* Tartışma Ayarları Butonu */
.tartisma-ayarlari {
    margin-top: 24px;
    padding: 16px;
    background-color: #2f3136;
    border-radius: 8px;
}

.tartisma-ayarlari button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #4f545c;
    border: none;
    color: #fff;
    padding: 12px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
}

.tartisma-ayarlari button:hover {
    background-color: #5865f2;
    transform: translateY(-2px);
}

.tartisma-ayarlari button i {
    font-size: 16px;
}

/* Yanıt Verme Alanı */
.reply-container {
    position: sticky;
    bottom: 0;
    background-color: #36393f;
    padding: 16px;
    margin-top: auto;
    border-top: 1px solid #202225;
    animation: fadeIn 0.3s ease-out;
}

.reply-container form {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
}

.reply-container textarea {
    width: 100%;
    background-color: #40444b;
    border: none;
    border-radius: 8px;
    color: #dcddde;
    padding: 12px;
    padding-right: 100px;
    resize: none;
    font-size: 0.9375rem;
    line-height: 1.4;
    min-height: 44px;
    outline: none;
    transition: background-color 0.2s;
}

.reply-container textarea:focus {
    background-color: #484c52;
}

.reply-container button {
    position: absolute;
    right: 16px;
    bottom: 8px;
    background-color: #5865f2;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reply-container button:hover {
    background-color: #4752c4;
    transform: translateY(-2px);
}

/* AI Message Container Visibility */
.ai-message.visible {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

/* Additional Responsive Updates */
@media (max-width: 768px) {
    .reply-container {
        padding: 12px;
        margin: 0 -16px;
        width: calc(100% + 32px);
    }

    .reply-container form {
        padding: 0 16px;
    }

    .tartisma-ayarlari button {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .reply-container textarea {
        font-size: 14px;
        padding: 8px;
        padding-right: 90px;
    }

    .reply-container button {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* Ayırıcı çizgi stili */
.divider {
    height: 1px;
    background-color: #40444b;
    margin: 20px 0;
    width: 100%;
}

/* Yorumlar bölümü stilleri */
.yorumlar-section {
    display: flex;
    flex-direction: column;
    margin: 20px 0 16px;
    gap: 12px;
    min-height: 260px;
    scroll-margin-top: 90px;
}

.yorumlar-section h3 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0;
}

/* Yorum form container */
.yorum-form-container {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.yorum-form-container textarea {
    flex: 1;
    background-color: #40444b;
    border: none;
    border-radius: 8px;
    color: #dcddde;
    padding: 12px;
    resize: none;
    min-height: 44px;
    font-size: 14px;
}

.yorum-form-container textarea:focus {
    outline: none;
    background-color: #484c52;
}

.yorum-form-container button {
    background-color: #5865f2;
    color: white;
    border: none;
    border-radius: 4px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.yorum-form-container button:hover {
    background-color: #4752c4;
}

/* Yorum listesi */
.yorumlar-list {
    flex: 1;
    min-height: 150px;
    max-height: 60vh;
    overflow-y: auto;
    background-color: #2f3136;
    border-radius: 8px;
    padding: 8px;
}

.yorum-item {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 6px;
    transition: background-color 0.2s;
}

.yorum-item:hover {
    background-color: #32353b;
}

.yorum-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.yorum-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.yorum-user-info {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.yorum-user-info strong {
    color: #fff;
    font-size: 14px;
}

.yorum-time {
    color: #72767d;
    font-size: 12px;
}

.yorum-content {
    color: #dcddde;
    margin-left: 40px;
    margin-top: 4px;
    font-size: 14px;
}

.text-muted {
    color: #72767d !important;
}

/* Yapay zeka mesaj kutusu güncellemesi */
.ai-message {
    background-color: #2f3136;
    padding: 16px;
    margin: 16px 0;
    border-radius: 8px;
    border-left: 4px solid #5865f2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.ai-message.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .yorumlar-list {
        max-height: 300px;
    }
    
    .yorum-item {
        padding: 8px;
    }
    
    .yorum-content {
        margin-left: 32px;
        font-size: 13px;
    }
}

/* Custom Scrollbar geliştirmeleri */
.yorumlar-list::-webkit-scrollbar {
    width: 8px;
}

.yorumlar-list::-webkit-scrollbar-track {
    background: #2f3136;
    border-radius: 4px;
}

.yorumlar-list::-webkit-scrollbar-thumb {
    background: #202225;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.yorumlar-list::-webkit-scrollbar-thumb:hover {
    background: #40444b;
}

/* Geliştirilmiş animasyonlar */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hover efektleri */
.yorum-avatar {
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.yorum-avatar:hover {
    transform: scale(1.15) rotate(5deg);
}

.yorum-user-info strong:hover {
    color: #5865f2;
    cursor: pointer;
}

/* Tartışma bilgileri başlığı güncellemesi */
.bilgi-header {
    padding: 16px;
    border-bottom: 1px solid #40444b;
    margin-bottom: 16px;
    animation: fadeIn 0.3s ease;
}

.bilgi-header h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
}

.bilgi-header h3:hover {
    color: #5865f2;
}

.bilgi-header h3 i {
    transition: transform 0.3s ease;
}

.bilgi-header h3:hover i {
    transform: rotate(15deg);
}

/* Yorum form animasyonları */
.yorum-input-container {
    transition: background-color 0.2s ease;
}

.yorum-input-container:focus-within {
    background-color: #40444b;
    box-shadow: 0 0 0 2px rgba(88, 101, 242, 0.3);
}

/* Responsive düzenlemeler korundu */
@media (max-width: 768px) {
    .sag-grup {
        width: 100%;
        height: 100%;
        max-height: 70vh;
    }

    .bilgi-content {
        padding: 0 12px;
    }

    .yorum-item {
        padding: 12px;
    }
}

/* Tartışma Ayarları Modal */
.tartisma-ayarlari-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
}

.tartisma-ayarlari-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #36393f;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tartisma-ayarlari-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #40444b;
}

.tartisma-ayarlari-header h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: #b9bbbe;
    font-size: 20px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: #fff;
}

/* Form elemanları stilleri */
.tartisma-ayarlari-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #b9bbbe;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #40444b;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    color: #dcddde;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(88, 101, 242, 0.3);
}

.submit-button {
    background-color: #5865f2;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-button:hover {
    background-color: #4752c4;
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translate(-50%, -60%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

.tartisma-ayarlari-content {
    animation: slideIn 0.3s ease;
}

/* Ayarlar butonu stili */
.settings-button {
    background: none;
    border: none;
    color: #b9bbbe;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.settings-button:hover {
    color: #fff;
    background-color: #40444b;
}

.settings-button i {
    font-size: 16px;
}

.sticky-bar {
    position: sticky;
    top: 0;
    background-color: #5865f2;
    color: #fff;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    z-index: 1000;
}

.discussion-bar {
    position: relative;
    width: 100%;
    background-color: transparent;
    color: #fff;
    padding: 0;
    z-index: 1;
}

.discussion-bar.open {
    bottom: 0;
}

.bilgi-content {
    padding: 16px;
    color: #b9bbbe;
    max-height: none;
    overflow-y: visible;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot, .status-icon {
    font-size: 16px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .discussion-bar {
        padding: 15px;
    }
    
    .bilgi-content {
        padding: 10px;
    }
}

/* Beğeni butonları için icon stilleri */
#like-button i, #dislike-button i {
    font-size: 16px;
}

/* Butonların boyutunu ayarla */
#like-button, #dislike-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
}


.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.6s ease;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.text-muted {
    color: #72767d !important;
    font-size: 13px;
    margin-top: 8px;
}

.kalan-sure {
    background-color: #2f3136;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    margin: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.kalan-sure i {
    color: #5865f2;
}

.oy-form {
    margin-top: 20px;
}

.oy-form textarea {
    width: 100%;
    background-color: #40444b;
    border: none;
    border-radius: 8px;
    color: #dcddde;
    padding: 12px;
    margin-bottom: 16px;
    resize: vertical;
    min-height: 80px;
}

.oy-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(88, 101, 242, 0.3);
}

.oy-form button {
    background-color: #5865f2;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.oy-form button:hover {
    background-color: #4752c4;
    transform: translateY(-2px);
}

.oy-form button:active {
    transform: translateY(0);
}

.alert-info {
    background-color: #2f3136;
    border: 1px solid #4752c4;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-outline-secondary {
    background-color: transparent;
    border: 1px solid #b9bbbe;
    color: #b9bbbe;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.2s ease;
}

.btn-outline-secondary:hover {
    background-color: #b9bbbe;
    color: #2f3136;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .halk-karari-box {
        padding: 16px;
        margin: 16px 0;
    }

    .halk-karari-box h2 {
        font-size: 20px;
    }

    .halk-karari-box h4 {
        font-size: 16px;
    }

    .progress {
        height: 20px;
    }

    .progress-bar {
        font-size: 12px;
    }

    .kalan-sure {
        font-size: 14px;
        padding: 10px;
    }

    .oy-form button {
        width: 100%;
        margin-bottom: 8px;
    }
}

.tamamlanan-halk-karari {
    background-color: #2f3136;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border: 1px solid #40444b;
}

.halk-karari-baslik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #40444b;
}

.halk-karari-baslik h4 {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.bitis-tarihi {
    font-size: 0.9em;
    color: #b9bbbe;
    background: #202225;
    padding: 4px 8px;
    border-radius: 4px;
}

.oylama-sonucu {
    margin-bottom: 20px;
    background: #202225;
    padding: 16px;
    border-radius: 8px;
}

.progress-bar-container {
    margin: 15px 0;
}

.progress {
    height: 30px;
    background: #40444b;
    margin: 10px 0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

.progress-bar.bg-primary {
    background: linear-gradient(45deg, #5865f2, #4752c4);
}

.progress-bar.bg-success {
    background: linear-gradient(45deg, #3ba55c, #2d7d44);
}

.oy-detaylari {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding: 10px;
    background: #36393f;
    border-radius: 8px;
}

.kisi1-oy, .kisi2-oy {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: bold;
}

.kazanan-badge {
    background: #5865f2;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 8px;
}

/* Halk Kararı Yorumları */
.halk-karari-yorumlar {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #40444b;
}

.halk-karari-yorum {
    background: #36393f;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 12px;
    transition: transform 0.2s ease;
}

.halk-karari-yorum:hover {
    transform: translateX(5px);
    background: #32353b;
}

.yorum-profil {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.yorum-profil a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    gap: 10px;
}

.yorum-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #5865f2;
}

.kullanici-adi {
    font-weight: 600;
    color: #fff;
}

.yorum-icerik {
    color: #dcddde;
    margin: 8px 0;
    line-height: 1.4;
    font-size: 14px;
}

.yorum-tarih {
    color: #72767d;
    font-size: 12px;
}

.no-comments {
    text-align: center;
    color: #72767d;
    padding: 20px;
    font-style: italic;
}

/* Kazanan göstergesi için renk kodları */
.winner {
    border-left: 4px solid #3ba55c;
}

.loser {
    border-left: 4px solid #ed4245;
}

/* Sayfalama stilleri */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 15px;
    background: #2f3136;
    border-radius: 8px;
}

.page-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 4px;
    background: #40444b;
    color: #dcddde;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.page-btn:hover {
    background: #5865f2;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.page-btn.active {
    background: #5865f2;
    color: white;
    border-color: #fff;
}

.page-btn i {
    font-size: 12px;
}

/* Mobil görünüm için sayfalama düzenlemeleri */
@media (max-width: 768px) {
    .pagination {
        flex-wrap: wrap;
        padding: 10px;
    }

    .page-btn {
        padding: 6px 10px;
        font-size: 13px;
    }
}
.oylama-bar {
    background: #202225;
    border-radius: 16px;
    height: 32px;
    position: relative;
    margin: 15px 0;
    overflow: hidden;
}

.progress-side {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: white;
    font-weight: 500;
    font-size: 14px;
    transition: width 0.3s ease;
}

.progress-side.kisi1 {
    left: 0;
    background: #5865f2;
    padding-left: 15px;
    justify-content: flex-start;
    z-index: 2;
}

.progress-side.kisi2 {
    right: 0;
    background: #3ba55c;
    padding-right: 15px;
    justify-content: flex-end;
    text-align: right;
    z-index: 1;
}

.progress-side.winner::after {
    content: "👑";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
}

.oy-yuzde {
    font-weight: bold;
    margin: 0 4px;
}

.kullanici-adi {
    font-size: 13px;
    opacity: 0.9;
}

.oylama-detay {
    display: flex;
    justify-content: space-between;
    color: #b9bbbe;
    font-size: 13px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #40444b;
}

.oylama-yorumlar {
    margin-top: 20px;
}

.oylama-yorumlar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.oylama-yorumlar h5 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.oylama-yorumlar h5 i {
    color: #5865f2;
}

.yorum-count {
    background: rgba(88, 101, 242, 0.15);
    color: #b5bac1;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.oylama-yorum {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: #36393f;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    align-items: flex-start;
    flex-wrap: wrap;
}

.oylama-yorum:hover {
    background: #3e4249;
    border-color: rgba(255, 255, 255, 0.12);
}

.yorum-sol {
    position: relative;
}

.yorum-avatar-link {
    display: block;
    position: relative;
}

.yorum-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #40444b;
    transition: all 0.2s ease;
}

.oy-rozet {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: white;
    font-weight: bold;
    line-height: 1;
}

.oy-rozet.kisi1 {
    background: #5865f2;
}

.oy-rozet.kisi2 {
    background: #3ba55c;
}

.oy-rozet.neutral {
    background: #4f545c;
}

.oy-rozet::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    display: block;
}

.yorum-icerik {
    flex: 1;
    min-width: 0;
}

.yorum-baslik {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.kullanici-link {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
}

.kullanici-link:hover {
    color: #5865f2;
    text-decoration: underline;
}

.yorum-tarih {
    color: #72767d;
    font-size: 12px;
    margin-left: auto;
}

.vote-chip {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(79, 84, 92, 0.4);
    color: #dfe3e6;
}

.vote-chip.kisi1 {
    background: rgba(88, 101, 242, 0.2);
    color: #d1d5ff;
}

.vote-chip.kisi2 {
    background: rgba(59, 165, 92, 0.2);
    color: #c1f0d1;
}

.vote-chip.neutral {
    background: rgba(79, 84, 92, 0.5);
    color: #eef1f5;
}

.yorum-metin {
    color: #dcddde;
    font-size: 14px;
    line-height: 1.4;
    padding-right: 10px;
    margin: 0;
    word-break: break-word;
}

@media (max-width: 768px) {
    .oylama-bar {
        height: 40px;
    }

    .progress-side {
        font-size: 12px;
    }

    .oylama-yorum {
        padding: 10px;
    }

    .yorum-avatar {
        width: 32px;
        height: 32px;
    }

    .oy-rozet {
        width: 16px;
        height: 16px;
        font-size: 9px;
    }

    .oylama-yorum {
        flex-direction: row;
    }

    .yorum-baslik {
        flex-wrap: wrap;
    }

    .yorum-tarih {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .oylama-yorum {
        flex-direction: column;
    }

    .yorum-baslik {
        gap: 4px;
    }

    .vote-chip {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 4px;
    }

    .yorum-tarih {
        order: 2;
        text-align: right;
        font-size: 11px;
    }
}

@media (max-width: 600px) {
    .oylama-yorum {
        flex-direction: column;
        padding: 10px;
    }

    .yorum-baslik {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .yorum-tarih {
        margin-left: 0;
        width: 100%;
        order: 3;
        text-align: left;
        font-size: 11px;
    }

    .yorum-icerik {
        width: 100%;
    }
}

/* ...existing code... */

/* Halk Kararı Sonuç başlık alanı */


.sonuc-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.sonuc-title h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    display: block;
}

.user-vote {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-vote strong {
    display: flex;
    align-items: center;
    gap: 4px;
}

.winner-emoji {
    font-size: 16px;
    margin-left: 4px;
}

.progress-side.winner::after {
    content: "👑";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 8px;
    font-size: 16px;
}
/* ...existing code... */

/* Minimal Yorum Sayfalaması */
.comment-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 24px 0;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #40444b;
    background: transparent;
    color: #dcddde;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: monospace;
    transition: all 0.2s ease;
}

.pagination-btn:hover {
    background: #5865f2;
    border-color: #5865f2;
    color: white;
    transform: translateY(-2px);
}

.pagination-btn.active {
    background: #5865f2;
    border-color: #5865f2;
    color: white;
}

/* Tekli Yorum Kartı */
.single-comment {
    background: #2f3136;
    border: 1px solid #40444b;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #5865f2;
}

.comment-info {
    flex: 1;
}

.comment-author {
    color: white;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 4px;
}

.comment-time {
    color: #72767d;
    font-size: 12px;
}

.comment-content {
    color: #dcddde;
    font-size: 15px;
    line-height: 1.6;
    margin-left: 60px;
}

/* ...existing code... */

/* Yorum kartı ve sayfalama için yeni minimal stiller */
.yorum-card {
    background: #2f3136;
    border-radius: 4px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    position: relative;
}

.yorum-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: transparent;
}

.yorum-card[data-oy="kisi1"]::before {
    background: #5865f2;
}

.yorum-card[data-oy="kisi2"]::before {
    background: #3ba55c;
}

.yorum-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
}

.yorum-content {
    flex: 1;
}

.yorum-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.kullanici-adi {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.oy-verilen {
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 10px;
    color: #fff;
    opacity: 0.8;
}

.oy-verilen.kisi1 { background: #5865f2; }
.oy-verilen.kisi2 { background: #3ba55c; }

.yorum-tarih {
    color: #72767d;
    font-size: 11px;
    margin-left: auto;
}

.yorum-metin {
    color: #dcddde;
    font-size: 13px;
    line-height: 1.4;
}

/* Minimal sayfalama */
.pagination {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding: 10px 0;
    border-top: 1px solid #40444b;
}

.page-link {
    color: #72767d;
    font-size: 12px;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: color 0.2s;
}

.page-link:hover:not(.disabled) {
    color: #fff;
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modern Oylama Yorumları Tasarımı */
.oylama-yorumlar {
    max-width: 800px;
    margin: 20px auto;
    background: #1e1f22;
    border-radius: 12px;
    overflow: hidden;
}

.yorum-card {
    background: #2b2d31;
    margin: 0;
    padding: 16px;
    border-left: 0;
    position: relative;
    transition: all 0.2s ease;
}

.yorum-card:not(:last-child) {
    border-bottom: 1px solid #1e1f22;
}

.yorum-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: transparent;
    transition: all 0.2s ease;
}

.yorum-card[data-oy="kisi1"]::after {
    background: linear-gradient(45deg, #5865f2, #7289da);
}

.yorum-card[data-oy="kisi2"]::after {
    background: linear-gradient(45deg, #3ba55c, #57f287);
}

.yorum-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.yorum-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #1e1f22;
    transition: transform 0.2s ease;
}

.kullanici-adi {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.oy-verilen {
    display: inline-flex;
    align-items: center;
    height: 20px;
    padding: 0 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 8px;
}

.oy-verilen.kisi1 {
    background: rgba(88, 101, 242, 0.2);
    color: #7289da;
}

.oy-verilen.kisi2 {
    background: rgba(59, 165, 92, 0.2);
    color: #57f287;
}

.yorum-icerik {
    color: #dcddde;
    font-size: 14px;
    line-height: 1.6;
    margin-left: 52px;
}

/* Minimal Sayfalama */
.pagination {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    background: #2b2d31;
    border-top: 1px solid #1e1f22;
}

.page-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #b9bbbe;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
    background: #1e1f22;
}

.page-link:hover:not(.disabled) {
    background: #5865f2;
    color: #fff;
    transform: translateY(-1px);
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.page-link i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .oylama-yorumlar {
        margin: 10px;
        border-radius: 8px;
    }

    .yorum-card {
        padding: 15px;
    }

    .yorum-icerik {
        margin-left: 36px;
        font-size: 13px;
        max-height: 200px;
    }

    .page-link {
        min-width: 80px;
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Yeni Modern Yorum Sistemi */
.oylama-yorumlar {
    max-width: 800px;
    margin: 20px auto;
    background: #1e1f22;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
}

.yorum-card {
    padding: 20px;
    background: #2b2d31;
    margin: 0;
    border-bottom: 1px solid #1e1f22;
    position: relative;
    overflow: hidden;
}

.yorum-card:last-child {
    border-bottom: none;
}

.yorum-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.yorum-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.yorum-avatar[data-oy="kisi1"] {
    border-color: #5865f2;
}

.yorum-avatar[data-oy="kisi2"] {
    border-color: #3ba55c;
}

.yorum-info {
    flex: 1;
}

.yorum-info-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.kullanici-adi {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.yorum-oy-rozet {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.yorum-oy-rozet[data-oy="kisi1"] {
    background: rgba(88, 101, 242, 0.1);
    color: #5865f2;
}

.yorum-oy-rozet[data-oy="kisi2"] {
    background: rgba(59, 165, 92, 0.1);
    color: #3ba55c;
}

.yorum-tarih {
    color: #72767d;
    font-size: 12px;
    margin-left: auto;
}

.yorum-icerik {
    color: #dcddde;
    font-size: 14px;
    line-height: 1.6;
    margin-left: 48px;
    padding-right: 10px;
    max-height: 300px;
    overflow-y: auto;
    word-wrap: break-word;
}

.yorum-icerik::-webkit-scrollbar {
    width: 4px;
}

.yorum-icerik::-webkit-scrollbar-track {
    background: transparent;
}

.yorum-icerik::-webkit-scrollbar-thumb {
    background: #202225;
    border-radius: 4px;
}

/* Minimal Sayfalama */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background: #2b2d31;
    border-top: 1px solid #1e1f22;
    gap: 8px;
}

.page-link {
    min-width: 100px;
    padding: 8px 16px;
    border-radius: 20px;
    background: #1e1f22;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.page-link:hover:not(.disabled) {
    background: #5865f2;
    transform: translateY(-1px);
}

.page-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.page-link i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .oylama-yorumlar {
        margin: 10px;
        border-radius: 8px;
    }

    .yorum-card {
        padding: 15px;
    }

    .yorum-icerik {
        margin-left: 36px;
        font-size: 13px;
        max-height: 200px;
    }

    .page-link {
        min-width: 80px;
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ...existing code... */

/* Halk Seçimi Ana Container */
.public-vote-container {
    background: #1e1f22;
    padding: 20px;
    border-radius: 12px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Halk Seçimi Başlık */
.public-vote-title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #40444b;
}

/* Oy Durumu Kartı */
.vote-status-card {
    background: #2b2d31;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

/* Oy Bar Container */
.vote-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
}

/* Kullanıcı Oy Bilgisi */
.voter-info {
    width: 150px;
    text-align: center;
}

.voter-info.left { text-align: right; }
.voter-info.right { text-align: left; }

.voter-name {
    color: #fff;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.vote-count {
    color: #b9bbbe;
    font-size: 13px;
}

/* Oy Progress Bar */
.vote-progress {
    flex: 1;
    height: 24px;
    background: #1e1f22;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.vote-bar {
    height: 100%;
    transition: width 0.3s ease;
}

.vote-bar.user1 {
    background: linear-gradient(45deg, #5865f2, #7289da);
}

.vote-bar.user2 {
    background: linear-gradient(45deg, #3ba55c, #57f287);
}

/* Kalan Süre */
.time-remaining {
    text-align: center;
    padding: 12px;
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    margin-top: 16px;
}

.time-counter {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.total-votes {
    color: #72767d;
    font-size: 13px;
    margin-top: 8px;
}

/* Oy Verme Formu */
.vote-form {
    margin-top: 20px;
    padding: 16px;
    background: #2b2d31;
    border-radius: 8px;
}

.vote-comment {
    width: 100%;
    background: #1e1f22;
    border: none;
    border-radius: 8px;
    color: #dcddde;
    padding: 12px;
    margin-bottom: 12px;
    resize: vertical;
    min-height: 80px;
}

.vote-buttons {
    display: flex;
    gap: 12px;
}

.vote-button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.vote-button.user1 { background: #5865f2; }
.vote-button.user2 { background: #3ba55c; }

.vote-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Oy Durumu Bildirimi */
.vote-status-alert {
    background: #2b2d31;
    border: 1px solid #5865f2;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.change-vote-btn {
    background: transparent;
    border: 1px solid #b9bbbe;
    color: #b9bbbe;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.2s ease;
}

.change-vote-btn:hover {
    background: #b9bbbe;
    color: #2b2d31;
}
/* Public Vote New Design */
.rw-public-vote {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 24px 0;
}

.rw-vote-header {
    margin-bottom: 24px;
}

.rw-vote-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.rw-vote-title h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.rw-vote-icon {
    font-size: 1.5rem;
}

.rw-vote-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.rw-vote-stats {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.rw-vote-users {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.rw-user-left, .rw-user-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rw-user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.rw-user-name {
    font-weight: 600;
    color: #1a1a1a;
}

.rw-vote-count {
    color: #666;
    font-size: 0.9rem;
}

.rw-progress-container {
    margin: 20px 0;
}

.rw-progress-bar {
    height: 24px;
    background: #e9ecef;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
}

.rw-progress-left {
    background: #4a90e2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.3s ease;
}

.rw-progress-right {
    background: #50b45c;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.3s ease;
}

.rw-percentage {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.rw-vote-info {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
    color: #666;
    font-size: 0.9rem;
}

.rw-vote-actions {
    margin-top: 24px;
}

.rw-comment-box {
    margin-bottom: 16px;
}

.rw-comment-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    resize: vertical;
    min-height: 80px;
}

.rw-vote-buttons {
    display: flex;
    gap: 12px;
}

.rw-vote-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.rw-vote-left {
    background: #4a90e2;
    color: white;
}

.rw-vote-right {
    background: #50b45c;
    color: white;
}

.rw-vote-btn:hover {
    transform: translateY(-2px);
}

.rw-voted-info {
    text-align: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-top: 20px;
}

.rw-change-vote {
    background: #6c757d;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 8px;
}

.rw-change-vote:hover {
    background: #5a6268;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rw-vote-buttons {
        flex-direction: column;
    }
    
    .rw-vote-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .rw-user-left, .rw-user-right {
        flex-direction: column;
        text-align: center;
    }
}

/* Yorum bölümü için yeni stiller */
.oylama-yorumlar {
    margin-top: 30px;
    background: #36393f;
    border-radius: 8px;
    padding: 20px;
}

.yorum-listesi {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.yorum-card {
    background: #2f3136;
    border-radius: 8px;
    padding: 16px;
    transition: transform 0.2s ease;
}

.yorum-card:hover {
    transform: translateX(5px);
}

.yorum-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.yorum-avatar-container {
    position: relative;
}

.yorum-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #40444b;
}

.oy-rozeti {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: white;
}

.oy-rozeti.kisi1 { background: #5865f2; }
.oy-rozeti.kisi2 { background: #3ba55c; }

.yorum-content {
    color: #dcddde;
    font-size: 14px;
    line-height: 1.6;
    margin-left: 52px;
    word-break: break-word;
}

/* Sayfalama stillerini güncelle */
.yorum-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #40444b;
}

.sayfa-btn {
    background: #2f3136;
    border: none;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sayfa-btn:hover {
    background: #5865f2;
}

.sayfa-btn.active {
    background: #5865f2;
}

/* Mobil düzenlemeler */
@media (max-width: 768px) {
    .halk-karari-sonuc {
        padding: 16px;
        margin: 16px 0;
    }

    .oylama-progress {
        height: 32px;
    }

    .progress-side {
        padding: 0 12px;
        font-size: 12px;
    }

    .yorum-card {
        padding: 12px;
    }

    .yorum-content {
        margin-left: 44px;
        font-size: 13px;
    }
}

/* ...existing code... */

/* Yorum navigasyon linkleri stili */
.pagination {
    text-align: center;
    padding: 10px 0;
}
.pagination a {
    color: #72767d;
    font-size: 12px;
    padding: 5px 10px;
    margin: 0 5px;
    text-decoration: none;
    display: inline-block;
}
.pagination a:hover, .pagination a.active {
    color: #5865f2;
}

/* Örnek medya sorgusu kapanışı (eksik kapanan blokları tamamlayın) */
@media (max-width: 768px) {
    /* ...existing code... */
} /* <-- Eksik olan kapanışı ekleyin */

/* ...existing code... */

/* Önerilen Tartışmalar Kart Tasarımı */
/* ...existing code... */

/* Önerilen Tartışmalar Kartı - Discord Stili */
.similar-discussions-modern {
    background: #2f3136;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease;
}

.similar-discussions-modern:hover {
    transform: translateY(-2px);
}

.similar-discussions-modern .card-header {
    padding: 12px;
    margin: -16px -16px 16px -16px;
    background: #202225;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #40444b;
}

.similar-discussions-modern .card-header i {
    color: #5865f2;
}

.similar-discussions-modern .list-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.similar-discussions-modern .list-group-item {
    background: #36393f;
    border: 1px solid #2f3136;
    border-radius: 6px;
    padding: 12px;
    transition: all 0.2s ease;
}

.similar-discussions-modern .list-group-item:hover {
    background: #32353b;
    transform: translateX(4px);
    border-color: #5865f2;
}

.similar-discussions-modern .list-group-item a {
    color: #dcddde;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
}

.similar-discussions-modern .list-group-item a::before {
    content: "•";
    color: #5865f2;
    font-size: 18px;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .similar-discussions-modern {
        margin: 16px 0;
        padding: 12px;
    }

    .similar-discussions-modern .card-header {
        padding: 10px;
        font-size: 15px;
        margin: -12px -12px 12px -12px;
    }

    .similar-discussions-modern .list-group-item {
        padding: 10px;
    }

    .similar-discussions-modern .list-group-item a {
        font-size: 13px;
    }
}

/* ...existing code... */
.share-link-container {
    margin: 15px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #dee2e6;
}

.share-link-container p {
    margin-bottom: 8px;
    font-weight: 500;
    color: #495057;
}

.copy-link {
    display: flex;
    gap: 8px;
    align-items: center;
}

.copy-link input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    color: #495057;
    cursor: text;
    user-select: all;
}

.copy-link button {
    padding: 8px 16px;
    background: #0d6efd;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.copy-link button:hover {
    background: #0b5ed7;
}

.copy-link button i {
    font-size: 16px;
}

.copy-link .copied {
    background: #198754;
}

/* Tartışma hata kartı */
.discussion-error {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}

.discussion-error-card {
    background: #202225;
    border-radius: 16px;
    padding: 32px;
    max-width: 520px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.05);
}

.discussion-error-card h1 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 24px;
}

.discussion-error-card p {
    color: #b5bac1;
    margin-bottom: 24px;
    line-height: 1.6;
}

.discussion-error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(88, 101, 242, 0.2);
    color: #5865f2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 16px;
}

.page-btn.ghost {
    background: transparent;
    color: #dcddde;
    border: 1px solid rgba(255,255,255,0.2);
}

.page-btn.ghost:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

/* Halk kararı sonuç kartı */
.halk-karari-sonuc {
    background: #2f3136;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 20px;
    margin: 24px 0;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.hk-result-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.hk-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9fa5b4;
    margin: 0 0 4px;
}

.hk-date {
    font-size: 13px;
    color: #b5bac1;
}

.hk-pill {
    background: rgba(88,101,242,0.18);
    color: #cfd3ff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hk-pill-neutral {
    background: rgba(255,255,255,0.08);
    color: #dfe3ea;
}

.hk-result-people {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.hk-person {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid transparent;
}

.hk-person.winner {
    border-color: rgba(88,101,242,0.4);
    background: rgba(88,101,242,0.08);
}

.hk-avatar {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
}

.hk-person-name {
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hk-chip {
    background: rgba(67,181,129,0.18);
    color: #8fe0be;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hk-person-votes {
    display: block;
    color: #b5bac1;
    font-size: 13px;
    margin-top: 3px;
}

.hk-progress-track {
    --kisi1-rate: 50%;
    position: relative;
    height: 16px;
    border-radius: 999px;
    background: #11141b;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 10px;
}

.hk-progress-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #5865f2 var(--kisi1-rate), #3ba55c var(--kisi1-rate));
}

.hk-progress-labels {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255,255,255,0.8);
    padding: 0 10px;
    pointer-events: none;
}

.hk-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #9fa5b4;
}

@media (max-width: 640px) {
    .hk-result-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .hk-progress-labels {
        font-size: 10px;
    }

    .hk-result-people {
        grid-template-columns: 1fr;
    }
}

.oylama-yorumlar {
    margin-top: 18px;
    background: #2f3136;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    padding: 18px;
}

.oylama-yorumlar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.oylama-yorumlar-header h5 {
    color: #fff;
    margin: 0;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.yorum-count {
    background: rgba(88,101,242,0.2);
    color: #d5d9ff;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.oylama-yorum {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.03);
    margin-bottom: 10px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.oylama-yorum:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

.yorum-sol {
    position: relative;
}

.yorum-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.08);
}

.oy-rozet {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #5865f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oy-rozet.kisi2 {
    background: #3ba55c;
}

.yorum-icerik {
    flex: 1;
    min-width: 0;
}

.yorum-baslik {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.kullanici-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
}

.yorum-tarih {
    color: #7c818f;
    font-size: 12px;
}

.yorum-metin {
    margin: 0;
    color: #d6dae3;
    line-height: 1.5;
    word-wrap: break-word;
}

@media (max-width: 600px) {
    .oylama-yorum {
        flex-direction: column;
    }
    .yorum-baslik {
        flex-direction: column;
        align-items: flex-start;
    }
    .yorum-tarih {
        width: 100%;
        text-align: left;
    }
}

/* ---- Yorum paneli son düzen --- */
