/*
  Çevre Günü Yarışması Ana Stil Dosyası
*/

/* Temel Resetleme */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Değişkenler */
:root {
    --color-primary: #4CAF50;
    --color-primary-dark: #388E3C;
    --color-primary-light: #A5D6A7;
    --color-primary-background: #E8F5E9;

    --color-secondary: #FF9800;
    --color-secondary-dark: #F57C00;
    --color-secondary-light: #FFE0B2;

    --color-text: #333333;
    --color-text-light: #757575;
    --color-text-white: #FFFFFF;

    --color-background: #FAFAFA;
    --color-card: #FFFFFF;
    --color-border: #E0E0E0;

    --color-success: #4CAF50;
    --color-warning: #FF9800;
    --color-error: #F44336;
    --color-info: #2196F3;

    --shadow-small: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 25px rgba(0, 0, 0, 0.15);

    --border-radius-small: 4px;
    --border-radius-medium: 8px;
    --border-radius-large: 12px;
    --border-radius-extra: 20px;

    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-xxl: 32px;

    --animation-speed-fast: 0.2s;
    --animation-speed-normal: 0.3s;
    --animation-speed-slow: 0.5s;
}

/* Temel HTML Elementleri */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-md);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    background-image: url('/assets/images/backgrounds/eco_pattern.svg');
    background-size: 200px;
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: center;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

h1 {
    font-size: var(--font-size-xxl);
}

h2 {
    font-size: var(--font-size-xl);
}

h3 {
    font-size: var(--font-size-lg);
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--animation-speed-fast);
}

a:hover {
    color: var(--color-primary-dark);
}

button {
    cursor: pointer;
    font-family: var(--font-family);
}

img {
    max-width: 100%;
    height: auto;
}

/* Yükleniyor Uygulaması */
.loading-app {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary-background);
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(76, 175, 80, 0.3);
    border-radius: 50%;
    border-top-color: var(--color-primary);
    animation: spin 1s linear infinite;
    margin-bottom: var(--spacing-md);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Ana Uygulama Konteyner */
.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Başlık */
.app-header {
    background-color: var(--color-card);
    box-shadow: var(--shadow-small);
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.app-logo {
    cursor: pointer;
}

.app-logo img {
    height: 40px;
}

.app-nav {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-link {
    color: var(--color-text);
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius-medium);
    transition: all var(--animation-speed-fast);
}

.nav-link:hover {
    background-color: var(--color-primary-background);
    color: var(--color-primary);
}

.nav-link.router-link-active {
    color: var(--color-primary);
    font-weight: 600;
}

/* Ana İçerik */
.app-content {
    flex: 1;
    padding: var(--spacing-xl) var(--spacing-md);
}

/* Altbilgi */
.app-footer {
    background-color: var(--color-card);
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
    padding: var(--spacing-lg);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

/* Bilgi Modalı */
.info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background-color: var(--color-card);
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-large);
    overflow: hidden;
}

.modal-header {
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: var(--color-primary-background);
    color: var(--color-primary-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: var(--font-size-lg);
}

.close-button {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--color-text-light);
    cursor: pointer;
}

.modal-body {
    padding: var(--spacing-lg);
    max-height: 70vh;
    overflow-y: auto;
}

.modal-body p {
    margin-bottom: var(--spacing-md);
}

.modal-body ul {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-lg);
}

/* Genel Bileşenler */
.eco-button {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-medium);
    font-weight: 600;
    font-size: var(--font-size-md);
    transition: background-color var(--animation-speed-fast), transform var(--animation-speed-fast);
    display: inline-block;
    text-align: center;
    box-shadow: var(--shadow-small);
}

.eco-button:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-text-white);
}

.eco-button:active {
    transform: scale(0.98);
}

.eco-button.secondary {
    background-color: #78909C;
}

.eco-button.secondary:hover {
    background-color: #607D8B;
}

.eco-button:disabled {
    background-color: var(--color-border);
    cursor: not-allowed;
}

/* 404 Sayfası */
.not-found {
    text-align: center;
    padding: var(--spacing-xl);
    background-color: var(--color-card);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    max-width: 600px;
    margin: 0 auto;
}

.not-found h1 {
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.not-found p {
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-light);
}

/* Sayfa Geçiş Animasyonları */
.fade-enter-active,
.fade-leave-active {
    transition: opacity var(--animation-speed-normal);
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}

/* Duyarlı Tasarım */
@media (max-width: 768px) {

    :root {
        --font-size-xxl: 28px;
        --font-size-xl: 22px;
        --font-size-lg: 18px;
    }

    .app-header {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .app-nav {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 24px;
        --spacing-lg: 16px;
        --spacing-md: 12px;
    }

    .app-content {
        padding: var(--spacing-md);
    }

    .modal-content {
        width: 95%;
    }

    .modal-header {
        padding: var(--spacing-md);
    }

    .modal-body {
        padding: var(--spacing-md);
    }
}
.question-manager {
    padding: 20px;
}

.section-title {
    color: #2E7D32;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

/* Eylem Çubuğu */
.action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-container label {
    margin-right: 5px;
    font-weight: bold;
    color: #555;
}

.filter-container select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
}

/* Yükleniyor Göstergesi */
.loading-indicator {
    text-align: center;
    padding: 30px;
}

.spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    border: 4px solid rgba(76, 175, 80, 0.3);
    border-top: 4px solid #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Sorular Tablosu */
.questions-table {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.table-header {
    display: flex;
    background-color: #f5f5f5;
    font-weight: bold;
    padding: 12px 15px;
    border-bottom: 2px solid #e0e0e0;
}

.table-row {
    display: flex;
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background-color: #f9f9f9;
}

.id-column {
    width: 50px;
    text-align: center;
}

.question-column {
    flex: 1;
    min-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 10px;
}

.category-column {
    width: 120px;
}

.difficulty-column {
    width: 80px;
    text-align: center;
}

.status-column {
    width: 80px;
    text-align: center;
}

.actions-column {
    width: 120px;
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}

/* Rozetler */
.difficulty-badge,
.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.difficulty-badge.easy {
    background-color: #e8f5e9;
    color: #2E7D32;
}

.difficulty-badge.medium {
    background-color: #fff8e1;
    color: #FF8F00;
}

.difficulty-badge.hard {
    background-color: #ffebee;
    color: #c62828;
}

.status-badge.active {
    background-color: #e8f5e9;
    color: #2E7D32;
}

.status-badge.inactive {
    background-color: #f5f5f5;
    color: #757575;
}

/* İşlem Butonları */
.action-button {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.action-button:hover {
    background-color: #f0f0f0;
}

.action-button.edit:hover {
    background-color: #e3f2fd;
}

.action-button.toggle:hover {
    background-color: #fff8e1;
}

.action-button.delete:hover {
    background-color: #ffebee;
}

.icon {
    width: 18px;
    height: 18px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.add-icon {
    background-image: url('/assets/images/ui/add_icon.svg');
}

.edit-icon {
    background-image: url('/assets/images/ui/edit_icon.svg');
}

.delete-icon {
    background-image: url('/assets/images/ui/delete_icon.svg');
}

.enable-icon {
    background-image: url('/assets/images/ui/enable_icon.svg');
}

.disable-icon {
    background-image: url('/assets/images/ui/disable_icon.svg');
}

/* Admin Butonları */
.admin-button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.admin-button.primary {
    background-color: #4CAF50;
    color: white;
}

.admin-button.primary:hover {
    background-color: #388E3C;
}

.admin-button.secondary {
    background-color: #f5f5f5;
    color: #333;
}

.admin-button.secondary:hover {
    background-color: #e0e0e0;
}

.admin-button.danger {
    background-color: #f44336;
    color: white;
}

.admin-button.danger:hover {
    background-color: #d32f2f;
}

/* Veri Yoksa */
.no-data {
    text-align: center;
    padding: 30px;
    color: #757575;
    background-color: #f9f9f9;
    border-radius: 5px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-container {
    background-color: white;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.delete-modal {
    max-width: 400px;
}

.modal-header {
    padding: 15px 20px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #333;
}

.close-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #757575;
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
}

/* Form */
.question-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.form-group.half {
    width: 48%;
}

.form-row {
    display: flex;
    gap: 4%;
}

.form-group label {
    font-weight: bold;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
}

.delete-question-text {
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin: 10px 0;
    font-style: italic;
}

/* Mobil Görünüm */
@media (max-width: 768px) {
    .action-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-container label {
        margin-top: 10px;
    }

    .questions-table {
        overflow-x: auto;
    }

    .table-header,
    .table-row {
        min-width: 700px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-group.half {
        width: 100%;
    }
}

.dashboard-container {
    padding: 20px;
}

.page-title {
    margin-bottom: 30px;
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* İstatistik Kartları */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 20px;
}

.users-icon {
    background-image: url('/assets/images/ui/users_icon.svg');
}

.questions-icon {
    background-image: url('/assets/images/ui/questions_icon.svg');
}

.answers-icon {
    background-image: url('/assets/images/ui/answers_icon.svg');
}

.trees-icon {
    background-image: url('/assets/images/ui/trees_icon.svg');
}

.stat-info {
    flex: 1;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.stat-label {
    font-size: 14px;
    color: #777;
}

/* Grafikler */
.charts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.chart-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    height: 100%;
}

.chart-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: #555;
    font-size: 18px;
}

.chart-content {
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Pasta Grafik */
.pie-chart {
    position: relative;
    width: 180px;
    height: 180px;
}

.pie {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
}

.pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pie-center span {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.pie-center .pie-label {
    font-size: 14px;
    color: #777;
}

.chart-legend {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    margin-right: 8px;
}

.legend-color.correct {
    background-color: #4CAF50;
}

.legend-color.incorrect {
    background-color: #f44336;
}

.legend-label {
    font-size: 14px;
    color: #666;
}

/* Çubuk Grafik */
.bar-chart {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 30px;
}

.bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 12%;
}

.bar-value {
    margin-bottom: 5px;
    font-size: 12px;
    color: #666;
}

.bar {
    width: 100%;
    background-color: #4CAF50;
    border-radius: 3px 3px 0 0;
    transition: height 1s;
}

.bar-label {
    margin-top: 8px;
    font-size: 12px;
    color: #777;
}

/* Son Etkinlikler */
.recent-activity {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
}

.section-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: #555;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.activity-list {
    max-height: 300px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    padding: 15px 10px;
    border-bottom: 1px solid #f5f5f5;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 15px;
}

.user-icon {
    background-image: url('/assets/images/ui/user_icon.svg');
}

.question-icon {
    background-image: url('/assets/images/ui/question_icon.svg');
}

.answer-icon {
    background-image: url('/assets/images/ui/answer_icon.svg');
}

.admin-icon {
    background-image: url('/assets/images/ui/admin_icon.svg');
}

.info-icon {
    background-image: url('/assets/images/ui/info_icon.svg');
}

.activity-content {
    flex: 1;
}

.activity-message {
    margin-bottom: 5px;
}

.activity-time {
    font-size: 12px;
    color: #999;
}

/* Hızlı Eylemler */
.quick-actions {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    margin-bottom: 30px;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.action-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f9f9f9;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.action-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
}

.action-icon {
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 10px;
}

.question-icon {
    background-image: url('/assets/images/ui/question_icon.svg');
}

.scoreboard-icon {
    background-image: url('/assets/images/ui/scoreboard_icon.svg');
}

.export-icon {
    background-image: url('/assets/images/ui/export_icon.svg');
}

.settings-icon {
    background-image: url('/assets/images/ui/settings_icon.svg');
}

.action-button span {
    font-weight: 500;
}

/* Yükleniyor Göstergesi */
.loading-indicator {
    text-align: center;
    padding: 30px;
}

.spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    border: 3px solid rgba(76, 175, 80, 0.3);
    border-top: 3px solid #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.no-data {
    text-align: center;
    padding: 30px;
    color: #999;
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .charts-container {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 15px;
    }

    .chart-card,
    .recent-activity,
    .quick-actions {
        padding: 15px;
    }
}


/* Enhanced CSS for the Home Component */
.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}



.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    color: #2E7D32;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(46, 125, 50, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 30px;
}
.hero-image {
    flex: 1;
    height: 200px;
    background-image: url('/assets/images/backgrounds/Remondis_logo.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.desk{display:none;}
.mobil{display:block;}


.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.3) 0%, rgba(165, 214, 167, 0.1) 100%);
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
/* Animasyonlar için genel stil */
.info-card, .step {

    transform: translateY(20px);
    transition: opacity 0.8s, transform 0.8s;
}
.info-card:nth-child(1) { transition-delay: 0.2s; }
.info-card:nth-child(2) { transition-delay: 0.4s; }
.info-card:nth-child(3) { transition-delay: 0.6s; }

.step:nth-child(1) { transition-delay: 0.2s; }
.step:nth-child(2) { transition-delay: 0.4s; }
.step:nth-child(3) { transition-delay: 0.6s; }
.step:nth-child(4) { transition-delay: 0.8s; }

.info-card.shown, .step.shown {
    opacity: 1;
    transform: translateY(0);
}
/* Info section */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 4px solid #4CAF50;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s;
}

.info-card:hover .info-icon {
    transform: scale(1.1);
}

.tree-icon {
    background-image: url('/assets/images/ui/tree_icon.svg');
}

.badge-icon {
    background-image: url('/assets/images/ui/badge_icon.svg');
}

.learn-icon {
    background-image: url('/assets/images/ui/learn_icon.svg');
}

.info-card h3 {
    color: #2E7D32;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* Fun facts section */
.fun-facts-section {
    margin-bottom: 60px;
    text-align: center;
}

.fun-facts-section h2 {
    color: #2E7D32;
    margin-bottom: 30px;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.fun-facts-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4CAF50;
    border-radius: 3px;
}

.fact-card {
    background-color: #E8F5E9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    min-height: 100px;
    transition: all 0.3s;
}

.fact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background-color: #dff3e1;
}

.fact-icon {
    width: 50px;
    height: 50px;
    background-image: url('/assets/images/ui/fact_icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 20px;
    flex-shrink: 0;
}

.fact-text {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
    text-align: left;
    transition: opacity 0.5s;
}

/* How it works section */
.how-it-works {
    margin-bottom: 60px;
    text-align: center;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.how-it-works h2 {
    color: #2E7D32;
    margin-bottom: 30px;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.how-it-works h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4CAF50;
    border-radius: 3px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    width: 45%;
    min-width: 250px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: background-color 0.3s, transform 0.3s;
}

.step:hover {
    background-color: #f0f9f0;
    transform: translateY(-3px);
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.3);
}

.step-content h3 {
    color: #2E7D32;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    line-height: 1.5;
}

.cta-button {
    padding: 15px 40px;
    font-size: 1.2rem;
    margin-top: 20px;
}

/* Buttons */
.eco-button {
    padding: 12px 25px;
    border-radius: 30px; /* More rounded corners */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.eco-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s;
}

.eco-button:hover::after {
    opacity: 1;
}

.primary-button {
    background-color: #4CAF50;
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.primary-button:hover {
    background-color: #388E3C;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.secondary-button {
    background-color: #FF9800;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.secondary-button:hover {
    background-color: #F57C00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

/* Animations */
.animate-on-load {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s, transform 0.8s;
}

.animate-on-load.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Delay animations for staggered effect */
.animate-on-load:nth-child(2) {
    transition-delay: 0.2s;
}

.animate-on-load:nth-child(3) {
    transition-delay: 0.4s;
}

.animate-on-load:nth-child(4) {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-image {
        width: 100%;
        height: 300px;
    }

    .step {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
        gap: 10px;
    }

    .eco-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-image {
        height: 200px;
    }

    .info-card {
        padding: 20px;
    }

    .how-it-works {
        padding: 20px;
    }
}

/* Enhanced CSS for Results Component */
.results-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px;
}

.loading-indicator {
    text-align: center;
    padding: 50px 0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(76, 175, 80, 0.3);
    border-top: 4px solid #4CAF50;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    text-align: center;
    padding: 30px;
    background-color: #FFF3E0;
    border-radius: 15px;
    margin-bottom: 30px;
    color: #E65100;
    box-shadow: 0 5px 15px rgba(230, 81, 0, 0.1);
}

.results-content {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.results-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.results-header h1 {
    color: #2E7D32;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(46, 125, 50, 0.2);
}

.results-header p {
    color: #666;
    font-size: 1.2rem;
}

.results-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #4CAF50;
    border-radius: 3px;
}

.score-summary {
    margin-bottom: 40px;
}

.main-score {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.main-score::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-image: url('/assets/images/ui/trophy.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.main-score .score-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2E7D32;
    text-shadow: 0 2px 5px rgba(46, 125, 50, 0.2);
}

.main-score .score-label {
    font-size: 1.2rem;
    color: #666;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.score-card {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid transparent;
}

.score-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.score-card:nth-child(1) {
    border-top-color: #4CAF50;
}

.score-card:nth-child(2) {
    border-top-color: #00BCD4;
}

.score-card:nth-child(3) {
    border-top-color: #FF9800;
}

.score-card:nth-child(4) {
    border-top-color: #9C27B0;
}

.score-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s;
}

.score-card:hover .score-icon {
    transform: scale(1.1);
}

.trees-icon {
    background-image: url('/assets/images/ui/tree_icon.svg');
}

.correct-icon {
    background-image: url('/assets/images/ui/correct_icon.svg');
}

.streak-icon {
    background-image: url('/assets/images/ui/streak_icon.svg');
}

.time-icon {
    background-image: url('/assets/images/ui/time_icon.svg');
}

.score-card .score-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.score-card .score-label {
    font-size: 0.9rem;
    color: #777;
}

.completion-section {
    margin-bottom: 40px;
    text-align: center;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
}

.completion-section h2 {
    color: #2E7D32;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.completion-bar-container {
    height: 24px;
    background-color: #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.completion-bar {
    height: 100%;
    background: linear-gradient(90deg, #81C784 0%, #4CAF50 100%);
    border-radius: 12px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.completion-percentage {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2E7D32;
}

.badges-section {
    margin-bottom: 40px;
}

.badges-section h2 {
    color: #2E7D32;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.badges-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #4CAF50;
    border-radius: 3px;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.badge-card {
    background-color: #FFF8E1;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.badge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.badge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.badge-card.active {
    height: auto;
}

.badge-icon {
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.badge-card:hover .badge-icon {
    transform: scale(1.1);
}

.badge-name {
    font-weight: 600;
    color: #333;
    text-align: center;
}

.badge-details {
    margin-top: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #555;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.badge-date {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #999;
    text-align: right;
}

.next-badge-section {
    margin-bottom: 40px;
    text-align: center;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
}

.next-badge-section h2 {
    color: #2E7D32;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.next-badge-progress-container {
    height: 12px;
    background-color: #E0E0E0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.next-badge-progress {
    height: 100%;
    background: linear-gradient(90deg, #FFB74D 0%, #FF9800 100%);
    border-radius: 6px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.next-badge-percentage {
    font-size: 1rem;
    color: #FF9800;
    font-weight: 600;
}

.eco-tips-section {
    margin-bottom: 40px;
}

.eco-tips-section h2 {
    color: #2E7D32;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
}

.eco-tip-card {
    background-color: #E8F5E9;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border-left: 4px solid #4CAF50;
}

.eco-tip-card:hover {
    transform: translateY(-3px);
}

.tip-icon {
    width: 40px;
    height: 40px;
    background-image: url('/assets/images/ui/tip_icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 15px;
    flex-shrink: 0;
}

.eco-tip-card p {
    color: #333;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.eco-button {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.eco-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.eco-button:hover::before {
    transform: scaleX(1);
}

.primary-button {
    background-color: #4CAF50;
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.primary-button:hover {
    background-color: #388E3C;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.secondary-button {
    background-color: #FF9800;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
}

.secondary-button:hover {
    background-color: #F57C00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.tertiary-button {
    background-color: #78909C;
    color: white;
    box-shadow: 0 4px 15px rgba(120, 144, 156, 0.3);
}

.tertiary-button:hover {
    background-color: #607D8B;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(120, 144, 156, 0.4);
}

.no-results {
    text-align: center;
    padding: 50px 0;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.no-results p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-score .score-value {
        font-size: 3rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .eco-button {
        width: 100%;
    }

    .results-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .results-header h1 {
        font-size: 2rem;
    }

    .main-score {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .badges-grid {
        grid-template-columns: 1fr;
    }

    .eco-tip-card {
        flex-direction: column;
        text-align: center;
    }

    .tip-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}


/* Enhanced CSS for Registration Form */
.registration-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    animation: slide-up 0.6s forwards;
}

@keyframes slide-up {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.title {
    color: #2E7D32;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(46, 125, 50, 0.2);
    animation: fade-in 0.8s;
}

.subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    animation: fade-in 1s;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.eco-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.growing-tree {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-image: url('/assets/images/tree_grow.gif');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.flying-birds {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 150px;
    height: 80px;
    background-image: url('/assets/images/birds.gif');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: fade-in 1.2s;
}

.form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.form-group:nth-child(3) {
    animation-delay: 0.4s;
}

.form-group:nth-child(4) {
    animation-delay: 0.6s;
}

.form-group label {
    font-weight: 600;
    color: #2E7D32;
    font-size: 1.05rem;
    margin-left: 5px;
}

.form-group input {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.8);
}

.form-group input:focus {
    border-color: #4CAF50;
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
    background-color: white;
}

.form-group input::placeholder {
    color: #bbb;
}

.error-message {
    color: #F44336;
    font-size: 0.85rem;
    margin-top: 5px;
    margin-left: 5px;
    display: flex;
    align-items: center;
}

.error-message::before {
    content: '⚠️';
    margin-right: 5px;
    font-size: 0.9rem;
}

.kvkk-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
    animation: fade-in 1.4s;
}

.kvkk-consent input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    border: 2px solid #4CAF50;
    accent-color: #4CAF50;
}

.kvkk-consent label {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
}

.kvkk-link {
    color: #4CAF50;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s;
}

.kvkk-link:hover {
    color: #2E7D32;
}

.eco-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    animation: fade-in 1.6s;
}

.eco-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.eco-button:hover {
    background-color: #388E3C;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

.eco-button:hover::after {
    transform: translateX(0);
}

.eco-button:active {
    transform: translateY(-1px);
}

.eco-button:disabled {
    background-color: #A5D6A7;
    cursor: not-allowed;
    box-shadow: none;
}

.loader {
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 3px solid #ffffff;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.kvkk-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fade-in 0.3s;
    backdrop-filter: blur(5px);
}

.kvkk-modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 650px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modal-zoom 0.3s;
}

@keyframes modal-zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.kvkk-modal-content h2 {
    color: #2E7D32;
    margin-bottom: 25px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

.kvkk-modal-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #4CAF50;
    border-radius: 3px;
}

.kvkk-text {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #444;
    font-size: 1rem;
}

.close-button {
    min-width: 120px;
    margin: 0 auto;
    display: block;
}

.feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.feedback-content {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: bounce-in 0.5s;
}

@keyframes bounce-in {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-tree-animation {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    background-image: url('/assets/images/tree_success.gif');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.error-animation {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background-image: url('/assets/images/error.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.feedback-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.start-button {
    background-color: #4CAF50;
    min-width: 180px;
    margin: 0 auto;
    font-size: 1.2rem;
    padding: 15px 25px;
}

.success {
    color: #2E7D32;
}

.error {
    color: #F44336;
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.5s, transform 0.5s;
}

.fade-enter,
.fade-leave-to {
    opacity: 0;
    transform: scale(0.9);
}

/* Responsive tasarım */
@media (max-width: 700px) {
    .registration-container {
        max-width: 100%;
        padding: 30px 20px;
        border-radius: 15px;
        margin: 10px;
    }

    .title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .form-group input {
        padding: 12px;
    }

    .eco-button {
        padding: 14px;
        font-size: 1rem;
    }

    .kvkk-modal-content {
        width: 95%;
        padding: 25px;
        border-radius: 15px;
    }

    .kvkk-modal-content h2 {
        font-size: 1.5rem;
    }

    .feedback-content {
        width: 95%;
        padding: 25px;
        max-width: none;
    }

    .success-tree-animation,
    .error-animation {
        margin-bottom: 20px;
    }

    .feedback-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .registration-container {
        padding: 20px 15px;
    }

    .title {
        font-size: 1.8rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input {
        padding: 10px;
        font-size: 0.95rem;
    }

    .kvkk-consent {
        gap: 8px;
    }

    .kvkk-consent label {
        font-size: 0.85rem;
    }

    .kvkk-consent input {
        width: 16px;
        height: 16px;
    }
}


/* Enhanced CSS for Quiz Component */
.quiz-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: fade-in 0.5s;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Üst Bilgi Çubuğu */
.quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 20px;
    position: relative;
}

.quiz-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.5), transparent);
}

.user-info {
    display: flex;
    gap: 20px;
}

.user-score,
.streak-counter,
.trees-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: #f5f5f5;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.user-score:hover,
.streak-counter:hover,
.trees-counter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.score-label,
.streak-label {
    font-weight: 500;
    color: #666;
    font-size: 0.9rem;
}

.score-value {
    font-weight: 700;
    color: #4CAF50;
    font-size: 1.1rem;
}

.streak-counter.active {
    background-color: #FFF3E0;
}

.streak-counter.active .streak-value {
    color: #FF9800;
    font-weight: 700;
    font-size: 1.1rem;
}

.streak-flame {
    width: 16px;
    height: 16px;
    background-image: url('/assets/images/ui/flame.gif');
    background-size: contain;
    background-repeat: no-repeat;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.question-counter {
    padding: 8px 15px;
    background-color: #E8F5E9;
    border-radius: 30px;
    font-weight: 600;
    color: #2E7D32;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.trees-counter {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4CAF50;
    font-weight: 700;
    background-color: #E8F5E9;
    font-size: 1.1rem;
}

.tree-icon {
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 15px;
    transition: transform 0.3s;
    background-image: url('/assets/images/ui/tree_icon.svg');

}

/* Zamanlayıcı */
.timer-container {
    position: relative;
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
}

.timer-bar {
    height: 100%;
    background: linear-gradient(90deg, #81C784, #4CAF50);
    transition: width 0.1s linear;
    border-radius: 4px;
}

.timer-bar.warning {
    background: linear-gradient(90deg, #FFAB91, #F44336);
}

.timer-value {
    position: absolute;
    top: 12px;
    right: 5px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Soru Bölümü */
.question-section {
    margin-bottom: 40px;
    animation: slide-in 0.5s;
}

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

.question-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
    padding: 20px;
    background-color: #E8F5E9;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.question-text::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: rgba(76, 175, 80, 0.2);
    font-family: Georgia, serif;
}

.question-text::after {
    content: '"';
    position: absolute;
    bottom: 0;
    right: 15px;
    font-size: 3rem;
    color: rgba(76, 175, 80, 0.2);
    font-family: Georgia, serif;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.option-button {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border: 2px solid #E0E0E0;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.option-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.option-button:hover {
    background-color: #F1F8E9;
    border-color: #A5D6A7;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.option-button.selected {
    background-color: #E8F5E9;
    border-color: #4CAF50;
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.2);
}

.option-button:disabled {
    opacity: 0.8;
    cursor: default;
    transform: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.option-letter {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.3);
    flex-shrink: 0;
    z-index: 2;
}

.option-text {
    flex: 1;
    font-size: 1.1rem;
    color: #444;
    line-height: 1.4;
    z-index: 2;
}

/* Geri Bildirim Bölümü */
.feedback-section {
    padding: 30px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: fade-scale 0.5s;
}

@keyframes fade-scale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.feedback-result {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}



.feedback-result.correct {
    background-color: #E8F5E9;
    color: #2E7D32;
    border: 2px solid #A5D6A7;
    animation: correct-pulse 1s;
}

@keyframes correct-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

.feedback-result.incorrect {
    background-color: #FFEBEE;
    color: #C62828;
    border: 2px solid #FFCDD2;
    animation: incorrect-shake 0.5s;
}

@keyframes incorrect-shake {
    0%, 100% {
        transform: translateX(0);
    }
    20%, 60% {
        transform: translateX(-5px);
    }
    40%, 80% {
        transform: translateX(5px);
    }
}

.feedback-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: icon-drop 0.5s;
}

@keyframes icon-drop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback-result.correct .feedback-icon {
    background-image: url('/assets/images/ui/correct_icon.svg');
}

.feedback-result.incorrect .feedback-icon {
    background-image: url('/assets/images/ui/incorrect_icon.svg');
}

.feedback-result h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.points-earned {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0;
    animation: scale-bounce 1s;
}

@keyframes scale-bounce {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.correct-answer {
    font-weight: 600;
    margin-top: 10px;
    font-size: 1.2rem;
}

.feedback-info,
.eco-tip {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    background-color: #F9F9F9;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.feedback-info h3,
.eco-tip h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.feedback-info h3::after,
.eco-tip h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4CAF50;
    border-radius: 2px;
}

.feedback-info p,
.eco-tip p {
    line-height: 1.7;
    font-size: 1.1rem;
    color: #444;
}

.eco-tip {
    background-color: #E8F5E9;
    border-left: 4px solid #4CAF50;
}

.tree-planting-animation {
    text-align: center;
    margin: 30px 0;
    animation: fade-up 1s;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tree-grow {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    background-image: url('/assets/images/tree_grow.gif');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Tamamlama Bölümü */
.completion-section {
    text-align: center;
    animation: confetti 0.5s;
}

@keyframes confetti {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.completion-section h2 {
    color: #2E7D32;
    margin-bottom: 40px;
    font-size: 2.2rem;
    position: relative;
    display: inline-block;
}

.completion-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #4CAF50;
    border-radius: 3px;
}

.completion-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 40px;
}

.stat-item {
    width: 22%;
    min-width: 120px;
    padding: 25px 15px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid transparent;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-item:nth-child(1) {
    border-top-color: #4CAF50;
}

.stat-item:nth-child(2) {
    border-top-color: #00BCD4;
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    border-top-color: #FF9800;
    animation-delay: 0.4s;
}

.stat-item:nth-child(4) {
    border-top-color: #9C27B0;
    animation-delay: 0.6s;
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s;
}

.stat-item:hover .stat-icon {
    transform: scale(1.2);
}

.score-icon {
    background-image: url('/assets/images/ui/score_icon.svg');
}

.correct-icon {
    background-image: url('/assets/images/ui/correct_icon.svg');
}

.streak-icon {
    background-image: url('/assets/images/ui/streak_icon.svg');
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.stat-label {
    color: #777;
    font-size: 0.9rem;
}

/* Rozetler Bölümü */
.badges-section {
    margin: 40px 0;
    animation: slide-up 0.6s;
}

.badges-section h3 {
    color: #2E7D32;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.badges-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.badge-item {
    display: flex;
    align-items: center;
    width: 45%;
    min-width: 280px;
    padding: 15px;
    background-color: #FFF8E1;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-color: #FFF3E0;
}

.badge-image {
    width: 70px;
    height: 70px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 15px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.badge-item:hover .badge-image {
    transform: scale(1.1) rotate(5deg);
}

.badge-info {
    flex: 1;
}

.badge-name {
    font-weight: 600;
    color: #FF9800;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.badge-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Sosyal Paylaşım */
.social-share {
    margin: 40px 0;
    animation: slide-up 0.8s;
}

.social-share h3 {
    color: #2E7D32;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-button {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.share-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.share-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
}

.share-button:hover::after {
    transform: translateX(0);
}

.twitter {
    background-color: #1DA1F2;
}

.facebook {
    background-color: #4267B2;
}

.whatsapp {
    background-color: #25D366;
}

/* Aksiyon Butonları */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    animation: slide-up 1s;
}

.eco-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eco-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.eco-button:hover {
    background-color: #388E3C;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(76, 175, 80, 0.4);
}

.eco-button:hover::after {
    transform: translateX(0);
}

.eco-button:active {
    transform: translateY(-1px);
}

.eco-button.secondary {
    background-color: #78909C;
    box-shadow: 0 4px 15px rgba(120, 144, 156, 0.3);
}

.eco-button.secondary:hover {
    background-color: #607D8B;
    box-shadow: 0 7px 20px rgba(120, 144, 156, 0.4);
}

/* Rastgele İpucu Modalı */
.random-tip-modal {
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 350px;
    z-index: 1000;
    animation: slide-in-right 0.5s;
}

@keyframes slide-in-right {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.tip-content {
    background-color: #E8F5E9;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    border-left: 4px solid #4CAF50;
}

.tip-icon {
    width: 30px;
    height: 30px;
    background-image: url('/assets/images/ui/tip_icon.svg');
    background-size: contain;
    background-repeat: no-repeat;
    float: left;
    margin-right: 15px;
}

.tip-content p {
    color: #333;
    line-height: 1.6;
    font-size: 1rem;
}

.close-tip-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-tip-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #555;
}

/* Ses Kontrolü */
.sound-control {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.sound-button {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sound-button:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.05);
}

.sound-button.muted {
    opacity: 0.5;
}

/* Animasyonlar */
.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.5s, transform 0.5s;
}

.fade-enter,
.fade-leave-to {
    opacity: 0;
    transform: scale(0.9);
}

.slide-enter-active {
    transition: all 0.3s ease;
}

.slide-leave-active {
    transition: all 0.3s cubic-bezier(1.0, 0.5, 0.8, 1.0);
}

.slide-enter,
.slide-leave-to {
    transform: translateX(20px);
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
    .quiz-container {
        margin: 0 15px;
        padding: 20px;
        border-radius: 20px;
    }

    .question-text {
        font-size: 1.3rem;
        padding: 15px;
    }

    .options-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .option-button {
        padding: 15px;
    }

    .option-letter {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .option-text {
        font-size: 1rem;
    }

    .completion-stats {
        gap: 15px;
    }

    .stat-item {
        width: 45%;
    }

    .feedback-result {
        padding: 20px;
    }

    .feedback-icon {
        width: 60px;
        height: 60px;
    }

    .feedback-result h2 {
        font-size: 1.8rem;
    }

    .badge-item {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .quiz-header {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .user-info {
        justify-content: space-between;
    }

    .question-counter,
    .trees-counter {
        align-self: center;
    }

    .feedback-section,
    .completion-section {
        padding: 20px 15px;
    }

    .completion-section h2 {
        font-size: 1.8rem;
    }

    .stat-item {
        width: 100%;
        margin-bottom: 15px;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-button {
        width: 100%;
    }

    .action-buttons {
        flex-direction: column;
    }

    .random-tip-modal {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .quiz-container {
        padding: 15px;
        border-radius: 15px;
    }

    .user-score,
    .streak-counter,
    .trees-counter {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .score-value,
    .streak-counter.active .streak-value {
        font-size: 1rem;
    }

    .question-text {
        font-size: 1.1rem;
    }

    .option-button {
        padding: 12px;
    }

    .option-letter {
        width: 30px;
        height: 30px;
    }

    .feedback-result h2 {
        font-size: 1.5rem;
    }

    .points-earned {
        font-size: 1.2rem;
    }

    .badge-image {
        width: 50px;
        height: 50px;
    }
}


/* Enhanced CSS for Leaderboard Component */
.leaderboard-container {
    min-height: 100vh;
    background-color: #f9f9f9;
    position: relative;
    padding: 40px 20px;
    animation: fade-in 0.5s;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.eco-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.trees-decoration {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 200px;
    background-image: url('/assets/images/backgrounds/trees_silhouette.svg');
    background-size: contain;
    background-repeat: repeat-x;
    background-position: bottom;
    opacity: 0.15;
    animation: sway 20s infinite alternate ease-in-out;
}

@keyframes sway {
    0% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(5px);
    }
}

.birds-decoration {
    position: absolute;
    top: 100px;
    left: 50px;
    width: 200px;
    height: 100px;
    background-image: url('/assets/images/backgrounds/birds_flying.svg');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
    animation: fly 30s infinite linear;
}

@keyframes fly {
    0% {
        transform: translateX(-100%) translateY(0);
    }
    100% {
        transform: translateX(100vw) translateY(-50px);
    }
}

.leaderboard-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.leaderboard-title {
    color: #2E7D32;
    text-align: center;
    margin-bottom: 10px;
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(46, 125, 50, 0.2);
    position: relative;
    animation: title-slide 0.8s;
}

@keyframes title-slide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.leaderboard-subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
    position: relative;
    animation: subtitle-slide 1s;
}

@keyframes subtitle-slide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.leaderboard-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #4CAF50;
    border-radius: 3px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    animation: fade-up 1.2s;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-button {
    padding: 12px 25px;
    background-color: #f0f0f0;
    border: none;
    cursor: pointer;
    margin: 0 8px;
    border-radius: 30px;
    transition: all 0.3s;
    font-weight: 600;
    color: #666;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.tab-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.tab-button:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-button:hover::after {
    transform: translateX(0);
}

.tab-button.active {
    background-color: #4CAF50;
    color: white;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.loading-indicator {
    text-align: center;
    padding: 50px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

.spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border: 4px solid rgba(76, 175, 80, 0.3);
    border-top: 4px solid #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    text-align: center;
    padding: 30px;
    color: #C62828;
    background-color: #FFEBEE;
    border-radius: 15px;
    margin-bottom: 30px;
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    20%, 60% {
        transform: translateX(-5px);
    }
    40%, 80% {
        transform: translateX(5px);
    }
}

.leaderboard-table {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: fade-up 1.4s;
}

.table-header {
    display: flex;
    background-color: #4CAF50;
    color: white;
    font-weight: 700;
    padding: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.table-body {
    max-height: 500px;
    overflow-y: auto;
    background-color: white;
}

.table-row {
    display: flex;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.table-row::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.table-row:hover::after {
    transform: translateX(100%);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background-color: #f9f9f9;
}

.table-row.current-user {
    background-color: #E8F5E9;
    animation: highlight-pulse 2s infinite;
}

@keyframes highlight-pulse {
    0%, 100% {
        background-color: #E8F5E9;
    }
    50% {
        background-color: #C8E6C9;
    }
}

.table-row.top-three {
    background-color: #F9FBE7;
    font-weight: 600;
}

.table-row.top-three:hover {
    background-color: #F0F4C3;
}

.rank-column {
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.name-column {
    flex: 1;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #333;
}

.score-column,
.trees-column {
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.rank-medal {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: medal-shine 3s infinite;
}

@keyframes medal-shine {
    0%, 100% {
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    }
}

.gold {
    background: linear-gradient(135deg, #FFD700, #FFA000);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.5);
}

.silver {
    background: linear-gradient(135deg, #E0E0E0, #9E9E9E);
    box-shadow: 0 3px 10px rgba(192, 192, 192, 0.5);
}

.bronze {
    background: linear-gradient(135deg, #CD7F32, #8D6E63);
    box-shadow: 0 3px 10px rgba(205, 127, 50, 0.5);
}

.rank-number {
    font-weight: 600;
    color: #666;
    font-size: 1.1rem;
}

.score-value,
.trees-value {
    font-weight: 700;
    font-size: 1.2rem;
    color: #4CAF50;
}

.score-label,
.trees-label {
    font-size: 0.8rem;
    color: #999;
    margin-top: 2px;
}

.no-data {
    text-align: center;
    padding: 50px;
    color: #888;
    background-color: #f9f9f9;
    border-radius: 15px;
    font-size: 1.1rem;
}

.current-user-rank {
    background-color: #E8F5E9;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    animation: fade-up 1.6s;
}

.current-user-rank h3 {
    color: #2E7D32;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.current-user-rank h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4CAF50;
    border-radius: 2px;
}

.user-rank-info {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.rank-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50, #388E3C);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    position: relative;
}

.rank-badge::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 2px solid rgba(76, 175, 80, 0.2);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.user-stats {
    flex: 1;
}

.user-name {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #333;
}

.user-scores {
    display: flex;
    gap: 20px;
}

.user-score,
.user-trees {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background-color: #f5f5f5;
    border-radius: 20px;
    font-size: 0.9rem;
}

.user-score .score-label,
.user-trees .trees-label {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0;
}

.user-score .score-value,
.user-trees .trees-value {
    font-weight: 700;
    color: #4CAF50;
    font-size: 1rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fade-up 1.8s;
}

.eco-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.eco-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s;
}

.eco-button:hover {
    background-color: #388E3C;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.eco-button:hover::after {
    transform: translateX(0);
}

.eco-button:active {
    transform: translateY(-1px);
}

.eco-button.secondary {
    background-color: #78909C;
    box-shadow: 0 5px 15px rgba(120, 144, 156, 0.3);
}

.eco-button.secondary:hover {
    background-color: #607D8B;
    box-shadow: 0 8px 20px rgba(120, 144, 156, 0.4);
}

/* Scrollbar customization */
.table-body::-webkit-scrollbar {
    width: 8px;
}

.table-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.table-body::-webkit-scrollbar-thumb {
    background: #A5D6A7;
    border-radius: 10px;
}

.table-body::-webkit-scrollbar-thumb:hover {
    background: #81C784;
}

/* Responsive design */
@media (max-width: 900px) {
    .leaderboard-content {
        padding: 30px;
        border-radius: 20px;
    }

    .leaderboard-title {
        font-size: 2rem;
    }

    .rank-badge {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .leaderboard-container {
        padding: 20px 15px;
    }

    .tabs {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .tab-button {
        width: 80%;
        margin: 0;
    }

    .table-header,
    .table-row {
        padding: 15px 10px;
    }

    .rank-column {
        width: 50px;
    }

    .score-column,
    .trees-column {
        width: 90px;
    }

    .current-user-rank {
        padding: 20px;
    }

    .user-rank-info {
        flex-direction: column;
        text-align: center;
    }

    .rank-badge {
        margin: 0 auto 15px;
    }

    .user-scores {
        justify-content: center;
    }

    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .eco-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .leaderboard-content {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .leaderboard-title {
        font-size: 1.8rem;
    }

    .leaderboard-subtitle {
        font-size: 1rem;
    }

    .tab-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
    }

    .rank-medal {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .name-column {
        font-size: 0.9rem;
    }

    .score-value,
    .trees-value {
        font-size: 1rem;
    }

    .score-label,
    .trees-label {
        font-size: 0.7rem;
    }

    .user-name {
        font-size: 1.1rem;
    }

    .user-scores {
        flex-direction: column;
        gap: 8px;
    }

    .user-score,
    .user-trees {
        justify-content: center;
    }
}

/* Quiz Header İçin */
.quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
}

.logout-section {
    margin-left: auto;
    margin-right: 20px;
}

.logout-button {
    background: #ff6b6b;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.logout-button:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Ses Kontrolü Yanına Alternatif Eklenecekse */
.sound-control {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.sound-button.logout-button {
    background: #ff6b6b;
    padding: 12px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sound-button.logout-button:hover {
    background: #ff5252;
}
/* assets/css/style.css dosyasına ekleyin ya da mevcut stil dosyanıza dahil edin */

/* Ana EcoEffects konteynerini düzelt */
.eco-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    overflow: hidden;
}

/* Ağaç büyüme efekti */
.tree-growth-effect {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    text-align: center;
    pointer-events: none;
}

.tree-growth-animation {
    width: 150px;
    height: 150px;
    margin: 0 auto 10px;
    background-image: url('/assets/images/tree_grow.gif');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.effect-message {
    font-size: 1.2rem;
    color: #4CAF50;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

/* Puan efekti */
.points-effect {
    position: fixed;
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9);
    pointer-events: none;
    z-index: 1000;
    animation: float-up 2s ease-out forwards;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-50px);
    }
}

/* Streak efekti */
.streak-effect {
    position: fixed;
    top: 100px;
    right: 50px;
    z-index: 1000;
    text-align: center;
    pointer-events: none;
}

.streak-flame {
    width: 60px;
    height: 60px;
    margin: 0 auto 5px;
    background-image: url('/assets/images/ui/flame.gif');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.streak-message {
    font-size: 1.2rem;
    color: #FF9800;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

/* Arka plan efektleri */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Düşen yapraklar */
.falling-leaf {
    position: fixed;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    animation: leaf-fall linear forwards;
    top: -30px; /* Başlangıçta ekranın dışında */
}

@keyframes leaf-fall {
    0% {
        top: -30px;
        transform: translateX(0) rotate(0deg);
    }
    100% {
        top: calc(100vh + 30px); /* Ekranın altına kadar */
        transform: translateX(100px) rotate(360deg);
    }
}

/* Uçan kuşlar */
.flying-bird {
    position: fixed;
    width: 50px;
    height: 30px;
    background-image: url('/assets/images/ui/bird.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    animation: bird-fly linear forwards;
    left: -50px; /* Başlangıçta ekranın dışında */
}

@keyframes bird-fly {
    0% {
        left: -50px;
    }
    100% {
        left: calc(100vw + 50px); /* Ekranın sağ tarafına kadar */
    }
}

/* Rozet efekti */
.badge-earned-effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    pointer-events: auto; /* Bu modal için tıklamalara izin ver */
}

.badge-effect-content {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.badge-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.badge-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 10px;
}

.badge-description {
    color: #666;
    margin-bottom: 20px;
}

.close-badge-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

/* Animasyon geçişleri */
.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.5s;
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}

.points-animation-enter-active {
    animation: float-up 2s ease-out forwards;
}

.streak-animation-enter-active,
.streak-animation-leave-active {
    transition: all 0.5s;
}

.streak-animation-enter-from,
.streak-animation-leave-to {
    opacity: 0;
    transform: scale(0.8);
}

/* Soru içerik düzeni */
.question-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.question-image {
    max-width: 100%;
    max-height: 300px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Şık içerik düzeni */
.option-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    gap: 8px;
}

.option-image {
    max-width: 100%;
    max-height: 150px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    align-self: center;
}

/* Evet/Hayır türü sorular için şıkların düzeni */
.yes-no-options {
    max-width: 500px;
    margin: 0 auto;
}

.yes-no-options .option-button {
    padding: 25px 20px;
    justify-content: center;
}

.yes-no-options .option-letter {
    font-size: 1.3rem;
    width: 45px;
    height: 45px;
}

.yes-no-options .option-text {
    font-size: 1.3rem;
    font-weight: 600;
}

/* Grid düzeni, şık sayısına göre ayarlanabilir */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* 5-8 şık olduğunda daha küçük kutular */
@media (min-width: 768px) {
    .options-grid.many-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .options-grid.many-options .option-button {
        padding: 15px;
    }

    .options-grid.many-options .option-letter {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        margin-right: 10px;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
    }

    .question-image, .option-image {
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .question-content {
        gap: 10px;
    }

    .question-image, .option-image {
        max-height: 150px;
    }

    .option-button {
        padding: 12px;
    }
}

/*
Bu CSS kodunu assets/css/style.css dosyasının içine ekleyin
veya <style> etiketleri içinde views/Leaderboard.js dosyasına dahil edin
*/

/* Yeni skor tablosu stilleri */
.participant-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.participant-stats {
    font-size: 0.8rem;
    color: #666;
}

.correct-count {
    color: #2ca73c;
    background: rgba(44, 167, 60, 0.1);
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
}

/* Mevcut kullanıcı bilgisi stilleri */
.user-scores {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.user-correct .score-value {
    color: #2ca73c;
    font-weight: 600;
}

/* Mobil uyumluluk için */
@media (max-width: 768px) {
    .user-scores {
        flex-direction: column;
        gap: 2px;
    }

    .participant-name {
        font-size: 0.9rem;
    }

    .participant-stats {
        font-size: 0.75rem;
    }
}

/*
Bu CSS kodlarını assets/css/style.css dosyasına ekleyin veya
bir <style> etiketi içinde QuizComponent.js dosyasının içine dahil edin
*/

/* Puan hesaplama detayları için stiller */
.score-details {
    margin-top: 10px;
}

.score-calculation {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    padding: 12px 15px;
    margin-top: 10px;
    font-size: 0.9rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.score-calculation h4 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #3ca370;
    font-size: 1rem;
    text-align: center;
}

.score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 3px 0;
}

.score-factor {
    font-weight: 600;
    color: #2c7ba7;
    text-align: right;
    margin-right: 10px;
}

.score-explanation {
    color: #2ca73c;
    font-weight: 500;
    min-width: 50px;
    text-align: right;
}

/* Mobil uyumluluk için */
@media (max-width: 768px) {
    .score-calculation {
        padding: 10px;
        font-size: 0.85rem;
    }

    .score-factor {
        min-width: 100px;
    }
}

/* Doğru cevap alanı için yeşil arka plan */
.correct-answer {
    background-color: rgba(44, 167, 60, 0.15);
    border-radius: 8px;
    padding: 12px;
    margin: 10px 0;
    line-height: 1.5;
    border-left: 4px solid #2ca73c;
}

/* Doğru cevap kutusu içindeki paragraf */
.correct-answer p {
    background-color: #e8f5e9;
    padding: 10px;
    border-radius: 6px;
    margin: 0;
}

.answer-option {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2ca73c;
    background: white;
    border-radius: 4px;
    padding: 2px 8px;
    margin: 0 5px;
}

/* Cevap metni için beyaz yazı, yeşil arka plan */
.answer-text {
    font-weight: 500;
    display: inline;
    color: white; /* Beyaz yazı rengi */
    background-color: #2ca73c; /* Yeşil arka plan */
    padding: 3px 8px;
    border-radius: 4px;
}

/* Doğru cevap etiketini daha belirgin yap */
.correct-answer p::before {
    content: "Doğru cevap:";
    color: #2ca73c;
    font-weight: bold;
    margin-right: 5px;
}

/* Mobil uyumluluk için */
@media (max-width: 768px) {
    .correct-answer {
        padding: 10px;
    }

    .correct-answer p {
        padding: 8px;
    }

    .answer-option {
        font-size: 1.1rem;
        padding: 1px 6px;
    }

    .answer-text {
        padding: 2px 6px;
    }
}


@media (min-width: 1024px) {
.desk{display:block !important;}
.mobil{display:none !important;}
    
}
    