.modern-threads {
    padding: 2rem 0;
    background: #f8fafc;
}

.threads-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.threads-header {
    display: grid;
    grid-template-columns: 180px 1fr 140px 140px 120px;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
    color: #64748b;
}

.thread {
    display: grid;
    grid-template-columns: 180px 1fr 140px 140px 120px;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    align-items: center;
    transition: all 0.2s ease;
}

.thread:hover {
    background: #f8fafc;
}

.thread-author {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.author-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
}

.author-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.online { background: #22c55e; }
.offline { background: #94a3b8; }

.author-name {
    font-size: 0.9rem;
    color: #6366f1;
    font-weight: 500;
}

.thread-title h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
}

.thread-title p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.thread-stats {
    display: flex;
    gap: 1rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.category-tag {
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
}

.exam { background: linear-gradient(135deg, #3b82f6, #6366f1); }
.campus { background: linear-gradient(135deg, #f59e0b, #f97316); }

.thread-last {
    font-size: 0.875rem;
    color: #64748b;
}

@media (max-width: 1024px) {
    .threads-header {
        display: none;
    }

    .thread {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .thread-author {
        flex-direction: row;
        align-items: center;
    }

    .thread-stats {
        justify-content: flex-start;
    }

    .thread-last {
        color: #94a3b8;
    }
}

@media (max-width: 640px) {
    .thread-title p {
        display: none;
    }

    .thread {
        padding: 0.75rem;
    }

    .category-tag {
        padding: 0.3rem 0.75rem;
        font-size: 0.75rem;
    }
}



    .forum-activity-stream {
        background: linear-gradient(120deg, #F8F6FF 0%, #E9F7FE 100%);
        padding: 48px 0 32px 0;
    }
    .forum-activity-header {
        margin-bottom: 18px;
    }
    .forum-activity-title {
        font-family: 'Rubik', 'Poppins', sans-serif;
        font-size: 2rem;
        font-weight: 700;
        color: #2D3436;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .forum-activity-title .activity-icon {
        font-size: 1.7rem;
        color: #FF6B6B;
        filter: drop-shadow(0 2px 4px rgba(255,107,107,0.15));
    }
    .activity-scroll-wrapper {
        overflow-x: auto;
        padding-bottom: 8px;
    }
    .activity-cards {
        display: flex;
        gap: 24px;
        min-width: 700px;
    }
    .activity-card {
        min-width: 280px;
        max-width: 320px;
        background: linear-gradient(135deg, #FFF 60%, #F3F0FF 100%);
        border-radius: 28px;
        box-shadow: 0 6px 24px 0 rgba(108,99,255,0.08), 0 1.5px 6px 0 rgba(44,62,80,0.04);
        padding: 24px 22px 18px 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: box-shadow 0.2s, transform 0.2s;
        position: relative;
    }
    .activity-card:hover {
        box-shadow: 0 12px 32px 0 rgba(108,99,255,0.16), 0 3px 12px 0 rgba(44,62,80,0.08);
        transform: translateY(-4px) scale(1.025);
    }
    .activity-category {
        display: inline-block;
        font-size: 0.95rem;
        font-weight: 600;
        padding: 6px 18px;
        border-radius: 999px;
        margin-bottom: 12px;
        background: linear-gradient(90deg, #6C63FF 0%, #FFD93D 100%);
        color: #fff;
        box-shadow: 0 2px 8px 0 rgba(108,99,255,0.08);
        letter-spacing: 0.02em;
    }
    .category-bogazici {
        background: linear-gradient(90deg, #6C63FF 0%, #5EE7DF 100%);
    }
    .category-yurtlar {
        background: linear-gradient(90deg, #FF6B6B 0%, #FFD93D 100%);
    }
    .category-burslar {
        background: linear-gradient(90deg, #FFD93D 0%, #6C63FF 100%);
    }
    .category-istanbul {
        background: linear-gradient(90deg, #5EE7DF 0%, #6C63FF 100%);
    }
    .category-erasmus {
        background: linear-gradient(90deg, #A3A1FF 0%, #FFD6E0 100%);
    }
    .activity-title {
        font-size: 1.15rem;
        font-weight: 700;
        color: #2D3436;
        margin-bottom: 16px;
        line-height: 1.3;
        max-height: 2.6em;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .activity-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 14px;
    }
    .activity-author {
        display: flex;
        align-items: center;
        gap: 7px;
    }
    .author-avatar {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #F3F0FF;
        box-shadow: 0 1px 4px 0 rgba(108,99,255,0.10);
    }
    .author-name {
        font-size: 0.98rem;
        font-weight: 500;
        color: #6C63FF;
    }
    .activity-date {
        font-size: 0.92rem;
        color: #A0A0A0;
        font-weight: 400;
    }
    .activity-actions {
        display: flex;
        gap: 18px;
        margin-top: 2px;
    }
    .action-item {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 1.05rem;
        color: #636E72;
        background: #F8F6FF;
        border-radius: 999px;
        padding: 4px 12px;
        transition: background 0.15s, color 0.15s;
        cursor: pointer;
    }
    .action-item:hover {
        background: linear-gradient(90deg, #FFD93D 0%, #6C63FF 100%);
        color: #fff;
    }
    .action-item i {
        font-size: 1.1rem;
        color: #FFD93D;
        margin-right: 2px;
        transition: color 0.15s;
    }
    .action-item:hover i {
        color: #fff;
    }
    @media (max-width: 900px) {
        .activity-cards {
            min-width: 520px;
            gap: 16px;
        }
        .activity-card {
            min-width: 220px;
            max-width: 260px;
            padding: 18px 12px 14px 14px;
        }
    }
    @media (max-width: 600px) {
        .forum-activity-title {
            font-size: 1.2rem;
        }
        .activity-cards {
            min-width: 340px;
            gap: 10px;
        }
        .activity-card {
            min-width: 170px;
            max-width: 200px;
            padding: 12px 8px 10px 10px;
        }
        .activity-title {
            font-size: 0.98rem;
        }
    }



                    /* Modern Üniversite Avatarı Stili */
                    .university-avatar.modern-avatar {
                        width: 48px;
                        height: 48px;
                        border-radius: 12px;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        box-shadow: 0 2px 8px rgba(44,62,80,0.10);
                        margin-right: 14px;
                        font-family: 'Rubik', 'Poppins', sans-serif;
                    }
                    .university-avatar .avatar-letter {
                        color: #fff;
                        font-size: 2rem;
                        font-weight: 700;
                        letter-spacing: 1px;
                        text-shadow: 0 2px 8px rgba(44,62,80,0.10);
                        user-select: none;
                    }
                    .university-info {
                        display: flex;
                        align-items: center;
                    }
                


/* Hero Section Styles */
.hero-section {
position: relative;
background: linear-gradient(135deg, #E0F7FA 0%, #E8EAF6 100%);
padding: 60px 0;
overflow: hidden;
}

.hero-content {
display: flex;
align-items: center;
justify-content: space-between;
gap: 30px;
margin-bottom: 40px;
}

.hero-text {
flex: 1;
max-width: 600px;
}

.hero-title {
font-size: 3rem;
font-weight: 800;
line-height: 1.2;
margin-bottom: 20px;
font-family: 'Rubik', sans-serif;
}

.gradient-text {
display: block;
background: linear-gradient(135deg, #6C63FF 0%, #FF6B6B 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.hero-subtitle {
font-size: 1.1rem;
color: #4A4A4A;
margin-bottom: 30px;
line-height: 1.6;
}

/* Search Box */
.search-container {
margin-bottom: 40px;
}

.search-box {
display: flex;
align-items: center;
background: white;
padding: 8px;
border-radius: 50px;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
margin-bottom: 16px;
}

.search-icon {
color: #6C63FF;
font-size: 1.2rem;
margin: 0 16px;
}

.search-input {
flex: 1;
border: none;
padding: 12px;
font-size: 1.1rem;
outline: none;
background: transparent;
}

.search-button {
background: linear-gradient(135deg, #6C63FF 0%, #FF6B6B 100%);
color: white;
border: none;
padding: 12px 32px;
border-radius: 25px;
font-weight: 600;
cursor: pointer;
transition: transform 0.3s ease;
}

.search-button:hover {
transform: translateY(-2px);
}

/* Search Tags */
.search-tags {
display: flex;
gap: 12px;
flex-wrap: wrap;
}

.tag {
background: rgba(108, 99, 255, 0.1);
color: #6C63FF;
padding: 6px 16px;
border-radius: 20px;
font-size: 0.9rem;
cursor: pointer;
transition: all 0.3s ease;
}

.tag:hover {
background: #6C63FF;
color: white;
transform: translateY(-2px);
}

/* Stats */
.hero-stats {
display: flex;
gap: 40px;
margin-top: 40px;
}

.stat-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
}

.stat-item i {
font-size: 2rem;
color: #6C63FF;
}

.stat-number {
font-size: 1.5rem;
font-weight: 700;
color: #2D3436;
}

.stat-text {
font-size: 0.9rem;
color: #636E72;
}

/* Hero Image */
.hero-image {
flex: 1;
position: relative;
max-width: 500px;
}

.hero-image img {
width: 100%;
height: auto;
position: relative;
z-index: 2;
}

.floating {
animation: float 6s ease-in-out infinite;
}

/* Decoration Circles */
.decoration-circle {
position: absolute;
border-radius: 50%;
background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
z-index: 1;
}

.circle-1 {
width: 200px;
height: 200px;
top: -50px;
right: -50px;
}

.circle-2 {
width: 150px;
height: 150px;
bottom: 50px;
left: -30px;
}

.circle-3 {
width: 100px;
height: 100px;
bottom: -20px;
right: 100px;
}


/* Responsive Design */
@media (max-width: 992px) {
.hero-section {
    min-height: auto;
    padding: 40px 0;
}

.hero-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.hero-title {
    font-size: 2.2rem;
}

.hero-subtitle {
    font-size: 1rem;
}

}

@media (max-width: 768px) {
.hero-section {
    padding: 30px 0;
}

.hero-title {
    font-size: 1.8rem;
}

}

/* Animations */
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-20px); }
100% { transform: translateY(0px); }
}

/* Adventure Section - Modern Gen-Z Tasarım */
.adventure-section {
position: relative;
padding: 80px 0;
background: linear-gradient(135deg, #FFE5D9 0%, #FEC5BB 100%);
overflow: hidden;
}

/* Dekoratif elementler */
.adventure-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: 
    radial-gradient(circle at 10% 20%, rgba(108, 99, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 217, 61, 0.1) 0%, transparent 50%);
pointer-events: none;
}

.adventure-container {
position: relative;
max-width: 1200px;
margin: 0 auto;
min-height: 600px;
}

/* Welcome Screen */
.welcome-screen {
text-align: center;
padding: 40px 20px;
display: none;
position: relative;
}

.welcome-screen.active {
display: block;
animation: fadeIn 0.5s ease;
}

.mascot {
position: relative;
width: 200px;
height: 200px;
margin: 0 auto 30px;
filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

.mascot-image {
width: 100%;
height: 100%;
object-fit: contain;
animation: float 3s ease-in-out infinite;
}

.speech-bubble {
position: absolute;
top: -60px;
right: -20px;
background: white;
padding: 15px 20px;
border-radius: 20px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
max-width: 250px;
transform: rotate(-2deg);
animation: wobble 2s ease-in-out infinite;
}

.speech-bubble:after {
content: '';
position: absolute;
bottom: -10px;
right: 30px;
border-width: 10px 10px 0;
border-style: solid;
border-color: white transparent;
}

.speech-bubble p {
margin: 0;
font-size: 0.9rem;
color: #4A4A4A;
font-family: 'Comic Sans MS', cursive;
}

.adventure-title {
font-size: 3.5rem;
font-weight: 800;
color: #2D3436;
margin-bottom: 15px;
font-family: 'Rubik', sans-serif;
background: linear-gradient(135deg, #6C63FF 0%, #FF6B6B 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.adventure-subtitle {
font-size: 1.4rem;
color: #636E72;
margin-bottom: 40px;
font-family: 'Quicksand', sans-serif;
}

/* Interest Options */
.interest-options {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
max-width: 800px;
margin: 0 auto;
}

.interest-btn {
background: white;
border: none;
padding: 25px;
border-radius: 20px;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
position: relative;
overflow: hidden;
}

.interest-btn::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
opacity: 0;
transition: opacity 0.3s ease;
}

.interest-btn:hover::before {
opacity: 1;
}

.interest-btn i {
font-size: 2.5rem;
color: #6C63FF;
transition: transform 0.3s ease;
}

.interest-btn:hover i {
transform: scale(1.2) rotate(5deg);
}

.interest-btn span {
font-size: 1.2rem;
font-weight: 600;
color: #2D3436;
font-family: 'Quicksand', sans-serif;
}

.interest-btn:hover {
transform: translateY(-5px) scale(1.02);
box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Discovery Screen */
.discovery-screen {
display: none;
padding: 20px;
position: relative;
}

.discovery-screen.active {
display: block;
animation: fadeIn 0.5s ease;
}

.progress-bar {
position: relative;
height: 6px;
background: rgba(255,255,255,0.3);
border-radius: 3px;
margin-bottom: 40px;
overflow: hidden;
}

.progress-fill {
position: absolute;
height: 100%;
background: linear-gradient(90deg, #6C63FF 0%, #FF6B6B 100%);
border-radius: 3px;
transition: width 0.5s ease;
}

.progress-steps {
display: flex;
justify-content: space-between;
margin-top: 15px;
}

.step {
font-size: 1rem;
color: #636E72;
position: relative;
padding-top: 25px;
font-family: 'Quicksand', sans-serif;
}

.step:before {
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 15px;
height: 15px;
background: #D1D1D1;
border-radius: 50%;
transition: all 0.3s ease;
}

.step.active {
color: #6C63FF;
font-weight: 600;
}

.step.active:before {
background: #6C63FF;
box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.2);
}

/* Map Container */
.map-container {
position: relative;
height: 400px;
background: #F8F9FA;
border-radius: 30px;
overflow: hidden;
margin-bottom: 30px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.map-background {
position: absolute;
width: 100%;
height: 100%;
background-image: url('/assets/images/map-bg.svg');
background-size: cover;
opacity: 0.15;
}

.university-markers {
position: absolute;
width: 100%;
height: 100%;
}

.marker {
position: absolute;
left: var(--x);
top: var(--y);
transform: translate(-50%, -50%);
cursor: pointer;
transition: all 0.3s ease;
}

.marker:hover {
transform: translate(-50%, -50%) scale(1.1);
}

.marker-pulse {
position: absolute;
width: 50px;
height: 50px;
background: rgba(108, 99, 255, 0.2);
border-radius: 50%;
animation: pulse 2s ease-in-out infinite;
}

.marker-icon {
position: relative;
width: 40px;
height: 40px;
background: white;
border-radius: 50%;
padding: 8px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.marker-icon img {
width: 100%;
height: 100%;
object-fit: contain;
}

/* Discovery Info */
.discovery-info {
background: white;
border-radius: 30px;
padding: 40px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
transform: translateY(0);
transition: all 0.3s ease;
}

.discovery-info:hover {
transform: translateY(-5px);
}

.university-name {
font-size: 2.2rem;
font-weight: 700;
color: #2D3436;
margin-bottom: 25px;
font-family: 'Rubik', sans-serif;
background: linear-gradient(135deg, #6C63FF 0%, #FF6B6B 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.university-stats {
display: flex;
gap: 40px;
margin-bottom: 30px;
}

.stat {
display: flex;
align-items: center;
gap: 10px;
color: #636E72;
font-family: 'Quicksand', sans-serif;
}

.stat i {
font-size: 1.5rem;
color: #FFD93D;
filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.university-desc {
font-size: 1.1rem;
line-height: 1.8;
color: #4A4A4A;
margin-bottom: 35px;
font-family: 'Quicksand', sans-serif;
}

.explore-btn {
background: linear-gradient(135deg, #6C63FF 0%, #FF6B6B 100%);
color: white;
border: none;
padding: 15px 40px;
border-radius: 30px;
font-weight: 600;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Quicksand', sans-serif;
text-transform: uppercase;
letter-spacing: 1px;
}

.explore-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(108,99,255,0.3);
}

/* Achievements */
.achievements {
position: fixed;
bottom: 30px;
right: 30px;
display: flex;
flex-direction: column;
gap: 15px;
z-index: 1000;
}

.achievement-badge {
width: 60px;
height: 60px;
background: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
cursor: pointer;
transition: all 0.3s ease;
position: relative;
}

.achievement-badge i {
font-size: 1.8rem;
color: #6C63FF;
transition: all 0.3s ease;
}

.achievement-badge span {
position: absolute;
right: 70px;
background: white;
padding: 8px 15px;
border-radius: 20px;
font-size: 0.9rem;
white-space: nowrap;
opacity: 0;
transform: translateX(10px);
transition: all 0.3s ease;
font-family: 'Quicksand', sans-serif;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.achievement-badge:hover {
transform: scale(1.1);
}

.achievement-badge:hover i {
transform: rotate(10deg);
}

.achievement-badge:hover span {
opacity: 1;
transform: translateX(0);
}

/* Animations */
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
0% { transform: scale(1); opacity: 1; }
100% { transform: scale(2); opacity: 0; }
}

@keyframes wobble {
0%, 100% { transform: rotate(-2deg); }
50% { transform: rotate(2deg); }
}

/* Responsive Design */
@media (max-width: 992px) {
.adventure-title {
    font-size: 2.5rem;
}

.interest-options {
    grid-template-columns: repeat(2, 1fr);
}

.map-container {
    height: 300px;
}

.university-name {
    font-size: 1.8rem;
}
}

@media (max-width: 768px) {
.adventure-section {
    padding: 60px 0;
}

.mascot {
    width: 150px;
    height: 150px;
}

.speech-bubble {
    max-width: 200px;
}

.interest-options {
    grid-template-columns: 1fr;
}

.university-stats {
    flex-direction: column;
    gap: 15px;
}

.achievements {
    bottom: 20px;
    right: 20px;
}
}

@media (max-width: 480px) {
.adventure-title {
    font-size: 2rem;
}

.adventure-subtitle {
    font-size: 1.1rem;
}

.map-container {
    height: 250px;
}

.discovery-info {
    padding: 25px;
}

.university-name {
    font-size: 1.5rem;
}

.explore-btn {
    width: 100%;
    text-align: center;
}
}

/* Chatbot Section Styles */
.chatbot-section {
position: relative;
background: #f8f9fa;
padding: 20px 0;
overflow: hidden;
}

.chatbot-wrapper {
position: relative;
max-width: 900px;
margin: 0 auto;
}

.chatbot-content {
background: white;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
overflow: hidden;
position: relative;
z-index: 2;
}

/* Chatbot Header */
.chatbot-header {
display: flex;
align-items: center;
padding: 12px 16px;
background: #6C63FF;
color: white;
}

.chatbot-avatar {
position: relative;
width: 32px;
height: 32px;
margin-right: 12px;
}

.avatar-image {
width: 100%;
height: 100%;
object-fit: contain;
}

.chatbot-info {
flex: 1;
}

.chatbot-info h3 {
margin: 0;
font-size: 0.95rem;
font-weight: 600;
font-family: 'Rubik', sans-serif;
}

.chatbot-info p {
margin: 2px 0 0;
font-size: 0.8rem;
opacity: 0.9;
font-family: 'Quicksand', sans-serif;
}

.restart-btn {
background: rgba(255,255,255,0.2);
border: none;
width: 28px;
height: 28px;
border-radius: 50%;
color: white;
cursor: pointer;
transition: all 0.2s ease;
}

.restart-btn:hover {
background: rgba(255,255,255,0.3);
}

/* Chat Container */
.chat-container {
display: flex;
height: 180px;
}

/* Chat Messages */
.chat-messages {
flex: 1;
overflow-y: auto;
padding: 12px;
background: #f8f9fa;
}

.message {
display: flex;
margin-bottom: 12px;
}

.bot-message {
flex-direction: row;
}

.user-message {
flex-direction: row-reverse;
}

.message-content {
max-width: 85%;
padding: 10px 14px;
border-radius: 12px;
position: relative;
}

.bot-message .message-content {
background: white;
margin-left: 8px;
box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.user-message .message-content {
background: #6C63FF;
color: white;
margin-right: 8px;
}

.message-content p {
margin: 0;
line-height: 1.4;
font-size: 0.9rem;
font-family: 'Quicksand', sans-serif;
}

/* Chat Actions */
.chat-actions {
width: 280px;
padding: 12px;
background: white;
border-left: 1px solid #eee;
display: flex;
flex-direction: column;
gap: 12px;
}

/* Quick Replies */
.quick-replies {
display: flex;
flex-direction: column;
gap: 8px;
}

.quick-reply-btn {
background: #f8f9fa;
border: none;
padding: 8px 12px;
border-radius: 8px;
color: #495057;
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
gap: 8px;
font-family: 'Quicksand', sans-serif;
font-size: 0.85rem;
font-weight: 500;
}

.quick-reply-btn:hover {
background: #e9ecef;
transform: translateY(-1px);
}

.quick-reply-btn i {
color: #6C63FF;
font-size: 0.9rem;
}

/* Chat Input */
.chat-input {
margin-top: auto;
}

.input-wrapper {
display: flex;
gap: 8px;
margin-bottom: 8px;
}

.message-input {
flex: 1;
padding: 8px 12px;
border: 1px solid #e9ecef;
border-radius: 8px;
font-size: 0.9rem;
transition: all 0.2s ease;
font-family: 'Quicksand', sans-serif;
}

.message-input:focus {
outline: none;
border-color: #6C63FF;
box-shadow: 0 0 0 2px rgba(108, 99, 255, 0.1);
}

.send-btn {
background: #6C63FF;
border: none;
width: 32px;
height: 32px;
border-radius: 8px;
color: white;
cursor: pointer;
transition: all 0.2s ease;
}

.send-btn:hover {
background: #5a52d5;
}

/* Suggestion Chips */
.suggestion-chips {
display: flex;
gap: 6px;
flex-wrap: wrap;
}

.chip {
background: #f8f9fa;
padding: 4px 10px;
border-radius: 6px;
font-size: 0.8rem;
color: #495057;
cursor: pointer;
transition: all 0.2s ease;
font-family: 'Quicksand', sans-serif;
}

.chip:hover {
background: #e9ecef;
}

/* Responsive Design */
@media (max-width: 768px) {
.chat-container {
    flex-direction: column;
    height: auto;
}

.chat-actions {
    width: 100%;
    border-left: none;
    border-top: 1px solid #eee;
}

.chat-messages {
    height: 180px;
}

.quick-replies {
    flex-direction: row;
    flex-wrap: wrap;
}

.quick-reply-btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
}
}

@media (max-width: 480px) {
.chatbot-section {
    padding: 15px 0;
}

.chatbot-header {
    padding: 10px 12px;
}

.chatbot-avatar {
    width: 28px;
    height: 28px;
}

.chatbot-info h3 {
    font-size: 0.9rem;
}

.chatbot-info p {
    font-size: 0.75rem;
}

.message-content {
    max-width: 90%;
}

.quick-reply-btn {
    min-width: 100px;
    font-size: 0.8rem;
}

.chip {
    padding: 4px 8px;
    font-size: 0.75rem;
}
}

/* Trends Dashboard Styles */
.trends-dashboard {
background: #f8f9fa;
padding: 40px 0;
position: relative;
overflow: hidden;
}

.trends-header {
text-align: center;
margin-bottom: 40px;
}

.trends-title {
font-size: 2rem;
font-weight: 700;
color: #2D3436;
margin-bottom: 10px;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
font-family: 'Rubik', sans-serif;
}

.trend-icon {
font-size: 1.8rem;
animation: bounce 2s infinite;
}

.trends-subtitle {
font-size: 1.1rem;
color: #636E72;
font-family: 'Quicksand', sans-serif;
}

.trends-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.trend-card {
background: white;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trend-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.card-header {
padding: 20px;
background: #6C63FF;
color: white;
display: flex;
justify-content: space-between;
align-items: center;
}

.card-header h3 {
margin: 0;
font-size: 1.2rem;
font-weight: 600;
font-family: 'Rubik', sans-serif;
}

.live-indicator {
display: flex;
align-items: center;
gap: 6px;
font-size: 0.9rem;
font-family: 'Quicksand', sans-serif;
}

.pulse {
width: 8px;
height: 8px;
background: #4CAF50;
border-radius: 50%;
position: relative;
}

.pulse::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
background: #4CAF50;
border-radius: 50%;
animation: pulse 2s infinite;
}

.trend-list {
padding: 15px;
}

.trend-item {
display: flex;
align-items: center;
padding: 12px;
border-radius: 12px;
text-decoration: none;
color: inherit;
transition: background 0.2s ease;
margin-bottom: 8px;
}

.trend-item:last-child {
margin-bottom: 0;
}

.trend-item:hover {
background: #f8f9fa;
}

.trend-rank {
width: 24px;
height: 24px;
background: #6C63FF;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
font-weight: 600;
margin-right: 12px;
font-family: 'Rubik', sans-serif;
}

.trend-icon {
width: 32px;
height: 32px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
margin-right: 12px;
}

.trend-content {
flex: 1;
}

.trend-content h4 {
margin: 0 0 4px;
font-size: 1rem;
font-weight: 600;
color: #2D3436;
font-family: 'Rubik', sans-serif;
}

.trend-content p {
margin: 0;
font-size: 0.85rem;
color: #636E72;
font-family: 'Quicksand', sans-serif;
}

.trend-stats {
display: flex;
align-items: center;
gap: 8px;
}

.trend-badge {
padding: 4px 8px;
border-radius: 6px;
font-size: 0.8rem;
font-weight: 500;
font-family: 'Quicksand', sans-serif;
}

.trend-badge.hot {
background: #FFE5D9;
color: #FF6B6B;
}

.trend-badge.rising {
background: #E0F7FA;
color: #00BCD4;
}

.trend-badge.new {
background: #E8EAF6;
color: #6C63FF;
}

.trend-badge.stable {
background: #F1F8E9;
color: #8BC34A;
}

.view-count {
font-size: 0.85rem;
color: #6C63FF;
font-weight: 600;
font-family: 'Rubik', sans-serif;
}

.user-avatar {
width: 32px;
height: 32px;
border-radius: 50%;
overflow: hidden;
margin-right: 12px;
}

.user-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
}

.time-ago {
font-size: 0.8rem;
color: #636E72;
font-family: 'Quicksand', sans-serif;
}

/* Animations */
@keyframes pulse {
0% {
    transform: scale(1);
    opacity: 1;
}
100% {
    transform: scale(2);
    opacity: 0;
}
}

@keyframes bounce {
0%, 100% {
    transform: translateY(0);
}
50% {
    transform: translateY(-5px);
}
}

/* Responsive Design */
@media (max-width: 992px) {
.trends-grid {
    grid-template-columns: 1fr;
}

.trends-title {
    font-size: 1.8rem;
}
}

@media (max-width: 768px) {
.trends-dashboard {
    padding: 30px 0;
}

.trends-header {
    margin-bottom: 30px;
}

.trends-title {
    font-size: 1.5rem;
}

.trends-subtitle {
    font-size: 1rem;
}

.card-header {
    padding: 15px;
}

.card-header h3 {
    font-size: 1.1rem;
}

.trend-item {
    padding: 10px;
}

.trend-content h4 {
    font-size: 0.95rem;
}

.trend-content p {
    font-size: 0.8rem;
}
}

@media (max-width: 480px) {
.trends-dashboard {
    padding: 20px 0;
}

.trends-title {
    font-size: 1.3rem;
}

.trends-subtitle {
    font-size: 0.9rem;
}

.trends-grid {
    padding: 0 15px;
}

.card-header {
    padding: 12px;
}

.card-header h3 {
    font-size: 1rem;
}

.trend-list {
    padding: 10px;
}

.trend-item {
    padding: 8px;
}

.trend-rank {
    width: 20px;
    height: 20px;
    font-size: 0.8rem;
}

.trend-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
}

.trend-content h4 {
    font-size: 0.9rem;
}

.trend-content p {
    font-size: 0.75rem;
}

.trend-badge {
    padding: 3px 6px;
    font-size: 0.75rem;
}

.view-count {
    font-size: 0.75rem;
}
}

/* Scores Section Styles */
.scores-section {
background: #f8f9fa;
padding: 40px 0;
position: relative;
overflow: hidden;
}

.scores-header {
text-align: center;
margin-bottom: 40px;
}

.scores-title {
font-size: 2rem;
font-weight: 700;
color: #2D3436;
margin-bottom: 10px;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
font-family: 'Rubik', sans-serif;
}

.scores-icon {
font-size: 1.8rem;
animation: bounce 2s infinite;
}

.scores-subtitle {
font-size: 1.1rem;
color: #636E72;
font-family: 'Quicksand', sans-serif;
}

/* Controls */
.scores-controls {
max-width: 1200px;
margin: 0 auto 30px;
padding: 0 20px;
display: flex;
gap: 20px;
flex-wrap: wrap;
}

.search-box {
flex: 1;
min-width: 300px;
position: relative;
}

.search-box i {
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
color: #6C63FF;
}

.search-input {
width: 100%;
padding: 12px 15px 12px 45px;
border: 2px solid #E0E0E0;
border-radius: 12px;
font-size: 1rem;
transition: all 0.3s ease;
font-family: 'Quicksand', sans-serif;
}

.search-input:focus {
outline: none;
border-color: #6C63FF;
box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.filter-group {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.filter-item {
position: relative;
}

.filter-select {
padding: 12px 35px 12px 15px;
border: 2px solid #E0E0E0;
border-radius: 12px;
font-size: 1rem;
background: white;
cursor: pointer;
appearance: none;
transition: all 0.3s ease;
font-family: 'Quicksand', sans-serif;
}

.filter-select:focus {
outline: none;
border-color: #6C63FF;
box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.filter-item::after {
content: '\f107';
font-family: 'Font Awesome 5 Free';
font-weight: 900;
position: absolute;
right: 15px;
top: 50%;
transform: translateY(-50%);
color: #6C63FF;
pointer-events: none;
}

/* Table */
.scores-table-wrapper {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
overflow-x: auto;
background: white;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.scores-table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
}

.scores-table th {
background: #6C63FF;
color: white;
padding: 15px;
text-align: left;
font-weight: 600;
font-size: 0.95rem;
font-family: 'Rubik', sans-serif;
position: sticky;
top: 0;
z-index: 10;
}

.scores-table th:first-child {
border-top-left-radius: 16px;
}

.scores-table th:last-child {
border-top-right-radius: 16px;
}

.scores-table td {
padding: 15px;
border-bottom: 1px solid #E0E0E0;
font-size: 0.95rem;
font-family: 'Quicksand', sans-serif;
}

.scores-table tbody tr {
transition: all 0.3s ease;
}

.scores-table tbody tr:hover {
background: #f8f9fa;
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* University Info */
.university-info {
display: flex;
align-items: center;
gap: 12px;
}

.university-logo {
width: 40px;
height: 40px;
border-radius: 8px;
object-fit: cover;
}

.university-info h4 {
margin: 0 0 4px;
font-size: 1rem;
font-weight: 600;
color: #2D3436;
font-family: 'Rubik', sans-serif;
}

.university-type {
font-size: 0.8rem;
padding: 2px 8px;
border-radius: 4px;
font-weight: 500;
}

.university-type.devlet {
background: #E3F2FD;
color: #1976D2;
}

.university-type.vakif {
background: #F3E5F5;
color: #7B1FA2;
}

/* Department Info */
.department-info {
display: flex;
align-items: center;
gap: 8px;
}

.department-icon {
font-size: 1.2rem;
}

/* City Badge */
.city-badge {
padding: 4px 12px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 500;
}

.city-badge.istanbul {
background: #E8EAF6;
color: #3F51B5;
}

.city-badge.ankara {
background: #E0F7FA;
color: #0097A7;
}

.city-badge.izmir {
background: #FFF3E0;
color: #F57C00;
}

/* Score Info */
.score-info, .rank-info {
display: flex;
align-items: center;
gap: 8px;
}

.score-value, .rank-value {
font-weight: 600;
color: #2D3436;
}

.score-change, .rank-change {
font-size: 0.8rem;
padding: 2px 6px;
border-radius: 4px;
}

.score-change.up, .rank-change.down {
background: #E8F5E9;
color: #2E7D32;
}

.score-change.down, .rank-change.up {
background: #FFEBEE;
color: #C62828;
}

/* Action Buttons */
.action-buttons {
display: flex;
gap: 8px;
}

.action-btn {
padding: 6px 12px;
border: none;
border-radius: 8px;
font-size: 0.85rem;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
gap: 6px;
font-family: 'Quicksand', sans-serif;
}

.action-btn.reviews {
background: #E3F2FD;
color: #1976D2;
}

.action-btn.compare {
background: #F3E5F5;
color: #7B1FA2;
}

.action-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Pagination */
.scores-footer {
max-width: 1200px;
margin: 30px auto 0;
padding: 0 20px;
}

.pagination {
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}

.page-numbers {
display: flex;
align-items: center;
gap: 5px;
}

.page-number, .page-btn {
width: 35px;
height: 35px;
border: none;
border-radius: 8px;
background: white;
color: #2D3436;
font-size: 0.95rem;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Quicksand', sans-serif;
}

.page-number.active {
background: #6C63FF;
color: white;
}

.page-number:hover:not(.active), .page-btn:hover {
background: #f8f9fa;
transform: translateY(-2px);
}

.page-dots {
color: #636E72;
}

/* Mobile Styles */
@media (max-width: 992px) {
.scores-controls {
    flex-direction: column;
}

.search-box {
    width: 100%;
}

.filter-group {
    width: 100%;
}

.filter-item {
    flex: 1;
}
}

@media (max-width: 768px) {
.scores-section {
    padding: 30px 0;
}

.scores-title {
    font-size: 1.8rem;
}

.scores-subtitle {
    font-size: 1rem;
}

.scores-table th {
    font-size: 0.9rem;
    padding: 12px;
}

.scores-table td {
    font-size: 0.9rem;
    padding: 12px;
}

.university-logo {
    width: 35px;
    height: 35px;
}

.university-info h4 {
    font-size: 0.95rem;
}

.action-buttons {
    flex-direction: column;
}

.action-btn {
    width: 100%;
    justify-content: center;
}
}

@media (max-width: 480px) {
.scores-section {
    padding: 20px 0;
}

.scores-title {
    font-size: 1.5rem;
}

.scores-subtitle {
    font-size: 0.9rem;

}

.scores-controls {
    padding: 0 15px;
}

.search-input, .filter-select {
    font-size: 0.9rem;
    padding: 10px 15px 10px 40px;
}

.scores-table-wrapper {
    padding: 0 15px;
}

.scores-table th {
    font-size: 0.85rem;
    padding: 10px;
}

.scores-table td {
    font-size: 0.85rem;
    padding: 10px;
}

.university-logo {
    width: 30px;
    height: 30px;
}

.university-info h4 {
    font-size: 0.9rem;
}

.city-badge {
    padding: 3px 8px;
    font-size: 0.8rem;
}

.score-value, .rank-value {
    font-size: 0.9rem;
}

.page-number, .page-btn {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
}
}



/* FAQ Section Styles */
.faq-section {
background: linear-gradient(135deg, #F8F9FA 0%, #E8EAF6 100%);
padding: 60px 0;
position: relative;
overflow: hidden;
}

.faq-header {
text-align: center;
margin-bottom: 40px;
}

.faq-title {
font-size: 2rem;
font-weight: 700;
color: #2D3436;
margin-bottom: 10px;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
font-family: 'Rubik', sans-serif;
}

.faq-icon {
font-size: 1.8rem;
animation: bounce 2s infinite;
}

.faq-subtitle {
font-size: 1.1rem;
color: #636E72;
font-family: 'Quicksand', sans-serif;
}

.faq-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.faq-category {
background: white;
border-radius: 20px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
overflow: hidden;
transition: transform 0.3s ease;
}

.faq-category:hover {
transform: translateY(-5px);
}

.category-header {
background: #6C63FF;
color: white;
padding: 20px;
display: flex;
align-items: center;
gap: 10px;
}

.category-icon {
font-size: 1.5rem;
}

.category-header h3 {
margin: 0;
font-size: 1.2rem;
font-weight: 600;
font-family: 'Rubik', sans-serif;
}

.faq-list {
padding: 20px;
}

.faq-item {
margin-bottom: 20px;
border-radius: 12px;
background: #F8F9FA;
overflow: hidden;
}

.faq-item:last-child {
margin-bottom: 0;
}

.faq-question {
padding: 15px;
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;
transition: background 0.3s ease;
}

.faq-question:hover {
background: #F1F3F9;
}

.question-icon {
width: 24px;
height: 24px;
background: #6C63FF;
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
font-weight: 600;
font-family: 'Rubik', sans-serif;
}

.faq-question h4 {
margin: 0;
flex: 1;
font-size: 1rem;
font-weight: 600;
color: #2D3436;
font-family: 'Rubik', sans-serif;
}

.toggle-icon {
font-size: 1.2rem;
color: #6C63FF;
transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
transform: rotate(45deg);
}

.faq-answer {
padding: 15px;
display: none;
background: white;
border-top: 1px solid #E0E0E0;
}

.faq-item.active .faq-answer {
display: flex;
gap: 10px;
}

.answer-icon {
width: 24px;
height: 24px;
background: #FFD93D;
color: #2D3436;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
font-weight: 600;
font-family: 'Rubik', sans-serif;
}

.faq-answer p {
margin: 0;
font-size: 0.95rem;
color: #636E72;
line-height: 1.5;
font-family: 'Quicksand', sans-serif;
}

.faq-footer {
text-align: center;
margin-top: 40px;
}

.faq-footer p {
margin-bottom: 15px;
font-size: 1.1rem;
color: #2D3436;
font-family: 'Quicksand', sans-serif;
}

.ask-question-btn {
display: inline-flex;
align-items: center;
gap: 8px;
background: #6C63FF;
color: white;
padding: 12px 25px;
border-radius: 25px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
font-family: 'Quicksand', sans-serif;
}

.ask-question-btn:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(108,99,255,0.3);
}

.btn-icon {
font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
.faq-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.faq-section {
    padding: 40px 0;
}

.faq-title {
    font-size: 1.8rem;
}

.faq-subtitle {
    font-size: 1rem;
}

.faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}
}

@media (max-width: 480px) {
.faq-section {
    padding: 30px 0;
}

.faq-title {
    font-size: 1.5rem;
}

.faq-subtitle {
    font-size: 0.9rem;
}

.category-header {
    padding: 15px;
}

.category-header h3 {
    font-size: 1.1rem;
}

.faq-list {
    padding: 15px;
}

.faq-question {
    padding: 12px;
}

.faq-question h4 {
    font-size: 0.95rem;
}

.faq-answer {
    padding: 12px;
}

.faq-answer p {
    font-size: 0.9rem;
}
}



/* View All Button Styles */
.view-all-container {
text-align: center;
margin-top: 30px;
padding: 0 20px;
}

.view-all-btn {
display: inline-flex;
align-items: center;
gap: 10px;
background: linear-gradient(135deg, #6C63FF 0%, #FF6B6B 100%);
color: white;
padding: 14px 28px;
border-radius: 30px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(108,99,255,0.2);
font-family: 'Quicksand', sans-serif;
}

.view-all-btn:hover {
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(108,99,255,0.3);
}

.view-all-btn .btn-icon {
font-size: 1.3rem;
}

.view-all-btn i {
transition: transform 0.3s ease;
}

.view-all-btn:hover i {
transform: translateX(5px);
}

@media (max-width: 768px) {
.view-all-btn {
    padding: 12px 24px;
    font-size: 1rem;
}
}

@media (max-width: 480px) {
.view-all-btn {
    width: 100%;
    justify-content: center;
}
}
/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f9fafb;
    color: #111827;
    line-height: 1.6;
}



.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 3rem;
}

.trending-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #dbeafe;
    border: 1px solid #bfdbfe;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    color: #1d4ed8;
    font-size: 0.875rem;
    font-weight: 600;
}

.trending-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto;
}

/* Table Styles */
.table-container {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.forum-table {
    width: 100%;
    border-collapse: collapse;
}

.forum-table thead {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.forum-table th {
    text-align: left;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.topic-row {
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s;
    cursor: pointer;
}

.topic-row:hover {
    background: #f9fafb;
}

.topic-row.sticky {
    background: rgba(239, 246, 255, 0.5);
}

.forum-table td {
    padding: 1rem 1.5rem;
    vertical-align: middle;
}

/* Author Info */
.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info span {
    color: #374151;
    font-weight: 500;
}

/* Topic Content */
.topic-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
}

.sticky-badge {
    background: #3b82f6;
    color: white;
}

.hot-badge {
    background: #ef4444;
    color: white;
}

.topic-title {
    font-weight: 600;
    color: #111827;
    transition: color 0.2s;
}

.topic-row:hover .topic-title {
    color: #2563eb;
}

/* Date and Comments */
.date-info, .comments-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.clock-icon, .message-icon {
    width: 1rem;
    height: 1rem;
    color: #9ca3af;
}

.date-info span {
    color: #6b7280;
    font-size: 0.875rem;
}

.comments-info span {
    color: #374151;
    font-weight: 600;
    font-size: 0.875rem;
}

/* Categories */
.category {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 500;
}

.category.yks {
    background: #dbeafe;
    color: #1e40af;
}

.category.universite {
    background: #dcfce7;
    color: #166534;
}

.category.yasam {
    background: #fef3c7;
    color: #92400e;
}

.category.hazirlik {
    background: #ede9fe;
    color: #7c3aed;
}

.category.karsilastirma {
    background: #fce7f3;
    color: #be185d;
}

/* Mobile Cards */
.mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.topic-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    padding: 1.25rem;
    transition: all 0.2s;
    cursor: pointer;
}

.topic-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.topic-card.sticky {
    border: 1px solid #bfdbfe;
    background: rgba(239, 246, 255, 0.3);
}

.card-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.card-author .avatar {
    width: 3rem;
    height: 3rem;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.author-name {
    color: #1f2937;
    font-weight: 600;
}

.card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.card-title {
    font-weight: 600;
    color: #111827;
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.topic-card:hover .card-title {
    color: #2563eb;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.card-meta {
    display: flex;
    gap: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.meta-item span {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Load More Button */
.load-more {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    background: #2563eb;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.load-more-btn:hover {
    background: #1d4ed8;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .forum-section {
        padding: 2rem 1rem;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .card-meta {
        width: 100%;
    }
}

    


.welcome-bar {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #f8fafc 60%, #a18fff11 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px #a18fff11;
  padding: 1.1rem 2rem;
  margin-bottom: 1.5rem;
  gap: 1.2rem;
  position: relative;
}
.welcome-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid #a18fff44;
  box-shadow: 0 2px 8px #a18fff22;
  object-fit: cover;
}
.welcome-info {
  flex: 1;
  min-width: 0;
}
.welcome-msg {
  font-size: 1.18rem;
  font-weight: 700;
  color: #4f46e5;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.user-badge {
  font-size: 0.93rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.1rem 0.7rem;
  margin-left: 0.3rem;
  display: inline-block;
  background: #ececff;
  color: #6366f1;
}
.user-badge.new { background: #a18fff; color: #fff; }
.user-badge.active { background: #22c55e; color: #fff; }
.user-badge.popular { background: #ffb86c; color: #fff; }
.live-stats {
  font-size: 1rem;
  color: #888;
  margin-top: 0.2rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.welcome-actions {
  display: flex;
  gap: 0.5rem;
}
.welcome-btn {
  background: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-size: 1.1rem;
  color: #6366f1;
  font-weight: 700;
  box-shadow: 0 2px 8px #a18fff11;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.welcome-btn:hover, .welcome-btn.new-topic {
  background: linear-gradient(90deg, #a18fff 60%, #6366f1 100%);
  color: #fff;
}
.welcome-btn.new-topic {
  font-weight: 800;
  padding: 0.6rem 1.3rem;
}
.typing-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.97rem;
  color: #22c55e;
  margin-left: 0.7rem;
  font-weight: 700;
  animation: fadeIn 0.7s;
}
.typing-indicator .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e; display: inline-block; margin-right: 2px;
  animation: bounce 1s infinite alternate;
}
.typing-indicator .dot:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator .dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { to { transform: translateY(-5px); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.new-reply-badge {
  background: #a18fff;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 0.1rem 0.7rem;
  margin-left: 0.5rem;
  animation: fadeIn 0.7s;
}
@media (max-width: 600px) {
  .welcome-bar { flex-direction: column; align-items: flex-start; padding: 1rem 0.7rem; gap: 0.7rem; }
  .welcome-avatar { width: 40px; height: 40px; }
  .welcome-actions { width: 100%; justify-content: flex-end; }
}