/* === TEMA RENKLERİ - YEŞİL TEMA === */
:root {
    /* Ana renkler - Yeşil tonları */
    --primary: #1B7A4A;
    --primary-light: #2E9B5E;
    --primary-dark: #135A35;
    --secondary: #0D4A2A;
    --accent: #E8B35B;
    --accent-light: #FFD966;
    --light: #F0F7F2;
    --dark: #1A2A1E;
    --success: #2E7D32;
    --warning: #ED6C02;
    --danger: #D32F2F;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-accent: linear-gradient(135deg, var(--accent), #D4A017);
    --gradient-green: linear-gradient(135deg, #1B7A4A, #0D4A2A);
    --border-radius: 16px;
    --shadow: 0 4px 20px rgba(27, 122, 74, 0.15);
    --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

:root[data-theme="dark"] {
    --primary: #3AA86E;
    --primary-light: #4BC97F;
    --primary-dark: #1B7A4A;
    --secondary: #0D4A2A;
    --accent: #FFD166;
    --accent-light: #FFE299;
    --light: #0D1F12;
    --dark: #E8F0EA;
    --success: #4CAF50;
    --warning: #FF9800;
    --danger: #F44336;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-accent: linear-gradient(135deg, var(--accent), #FFB347);
    --gradient-green: linear-gradient(135deg, #1B7A4A, #0D4A2A);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-dark: 0 4px 20px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--light);
    color: var(--dark);
    max-width: 500px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    padding-bottom: 80px;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

/* === FOOTER === */
footer {
    background: var(--gradient-green);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

footer p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* === SPLASH SCREEN - YEŞİL === */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-green);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: splashFadeOut 2.8s ease forwards;
}

@keyframes splashFadeOut {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; pointer-events: none; }
}

.splash-content {
    text-align: center;
    color: white;
    animation: splashBounce 1.5s ease;
}

@keyframes splashBounce {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    70% { transform: scale(0.95); }
    100% { transform: scale(1); opacity: 1; }
}

.splash-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoPulse 1.5s ease infinite;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.splash-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.splash-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.splash-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.splash-loader {
    width: 200px;
    height: 4px;
    margin: 0 auto;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    background: var(--accent);
    border-radius: 4px;
    animation: loaderProgress 2.5s ease forwards;
}

@keyframes loaderProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* === LOADING OVERLAY === */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.loading-content {
    text-align: center;
    background: var(--light);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
    animation: fadeIn 0.3s ease;
}

.loading-content img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 4px solid var(--light);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loading-text {
    margin-top: 10px;
    color: var(--primary);
    font-weight: 500;
}

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

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

/* === LOGIN PAGE - YEŞİL === */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-green);
    padding: 20px;
}

.login-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    animation: fadeIn 0.5s ease;
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.login-logo h1 {
    font-size: 2rem;
    color: var(--secondary);
    margin-top: 10px;
}

.login-logo span {
    color: var(--primary);
    font-size: 0.9rem;
    display: block;
}

/* === FORM ELEMANLARI === */
.form-group {
    margin-bottom: 20px;
}

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

.remember-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.remember-group label {
    margin: 0;
    cursor: pointer;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e8e2;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
    color: var(--dark);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 122, 74, 0.1);
}

.form-control:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
}

.form-switch {
    margin-top: 15px;
    text-align: center;
    color: var(--dark);
}

.form-switch a {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.form-switch a:hover {
    text-decoration: underline;
}

.form-error {
    color: var(--danger);
    text-align: center;
    margin-top: 10px;
    font-size: 0.9rem;
}

.btn-submit {
    background: var(--gradient-green);
    color: white;
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(27, 122, 74, 0.3);
}

/* === HEADER - YEŞİL === */
header {
    background: var(--gradient-green);
    color: white;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(27, 122, 74, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text h1 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-text span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.hamburger-menu {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 8px;
    transition: var(--transition);
}

.hamburger-menu:hover {
    background: rgba(255,255,255,0.1);
}

/* === MAIN === */
main {
    padding: 15px;
    min-height: calc(100vh - 140px);
}

#pageFrame {
    width: 100%;
    min-height: 75vh;
    border: none;
    background: transparent;
}

/* === BOTTOM NAV === */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    display: flex;
    justify-content: space-around;
    padding: 10px 0 12px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 100;
    max-width: 500px;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #888;
    text-decoration: none;
    font-size: 0.7rem;
    transition: var(--transition);
    padding: 5px 12px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.nav-item.active {
    color: var(--primary);
    background: rgba(27, 122, 74, 0.08);
}

.nav-item i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: 0;
    background: var(--danger);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
}

/* === VİRD İTEM === */
.vird-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vird-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 16px 18px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.vird-item.completed {
    border-left-color: var(--success);
    opacity: 0.85;
}

.vird-item:hover {
    transform: translateY(-2px);
}

.vird-info {
    flex: 1;
    min-width: 0;
}

.vird-info h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 3px;
    word-break: break-word;
}

.vird-info .type {
    font-size: 0.7rem;
    color: var(--primary);
    background: rgba(27, 122, 74, 0.1);
    padding: 2px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 5px;
}

.counter-text {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.vird-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
    margin-left: 10px;
}

.vird-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-green);
    color: white;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.vird-btn:hover {
    transform: scale(1.1);
}

.vird-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* === TAMAMLANMAYAN SAYAÇ === */
#incompleteNotification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--danger);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.4);
    animation: pulse 2s infinite;
}

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

.nav-item.active #incompleteNotification {
    animation: pulse 1.5s infinite;
}

/* === TAMAMLANMAYAN SAYFA ÖZEL === */
.incomplete-empty .btn-submit {
    max-width: 250px;
    margin: 20px auto 0;
}

/* === KARANLIK MOD - YEŞİL === */
:root[data-theme="dark"] .vird-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

:root[data-theme="dark"] .bottom-nav {
    background: #0D1F12;
    border-top: 1px solid rgba(255,255,255,0.05);
}

:root[data-theme="dark"] .nav-item.active {
    background: rgba(58, 168, 110, 0.15);
}

:root[data-theme="dark"] .login-container {
    background: #0D1F12;
    border: 1px solid rgba(255,255,255,0.08);
}

:root[data-theme="dark"] .form-control {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.15);
    color: var(--dark);
}

:root[data-theme="dark"] .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(58, 168, 110, 0.2);
}

:root[data-theme="dark"] .form-control:disabled {
    background: rgba(255,255,255,0.02);
}

:root[data-theme="dark"] .login-logo h1 {
    color: white;
}

:root[data-theme="dark"] .login-logo span {
    color: var(--accent);
}

:root[data-theme="dark"] .loading-content {
    background: #0D1F12;
    border: 1px solid rgba(255,255,255,0.05);
}

:root[data-theme="dark"] .setting-item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

:root[data-theme="dark"] .modal-content {
    background: #0D1F12;
}

:root[data-theme="dark"] .btn-cancel {
    background: #1a2a1e;
    color: white;
}

:root[data-theme="dark"] .btn-cancel:hover {
    background: #2a3a2e;
}

:root[data-theme="dark"] .hamburger-panel {
    background: #0D1F12;
    border-left: 1px solid rgba(255,255,255,0.05);
}

:root[data-theme="dark"] .hamburger-nav a:hover {
    background: rgba(255,255,255,0.05);
}

:root[data-theme="dark"] .hamburger-header {
    border-bottom-color: rgba(255,255,255,0.05);
}

:root[data-theme="dark"] .hamburger-user {
    border-bottom-color: rgba(255,255,255,0.05);
}

:root[data-theme="dark"] .hamburger-nav hr {
    border-top-color: rgba(255,255,255,0.05);
}

:root[data-theme="dark"] .hamburger-footer {
    border-top-color: rgba(255,255,255,0.05);
}

:root[data-theme="dark"] .date-display {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

:root[data-theme="dark"] .takvim-widget {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.08);
    filter: brightness(0.85);
}

:root[data-theme="dark"] footer {
    background: var(--gradient-green);
}

:root[data-theme="dark"] .splash-screen {
    background: var(--gradient-green);
}

/* === SETTINGS === */
.settings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.setting-item {
    background: white;
    border-radius: var(--border-radius);
    padding: 18px 20px;
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.setting-item:hover {
    transform: translateY(-2px);
}

.setting-info h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.setting-info h3 i {
    color: var(--primary);
    width: 20px;
}

.setting-info p {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 28px;
    flex-shrink: 0;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .3s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: var(--primary);
}

input:checked + .toggle-slider:before {
    transform: translateX(22px);
}

/* === MODAL === */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--light);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--secondary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark);
    opacity: 0.5;
    transition: var(--transition);
}

.modal-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(0,0,0,0.1);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* İşlem Butonları - Zaten varsa ekleme */
.btn-action {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-width: 32px;
    justify-content: center;
}

.btn-action:hover {
    transform: scale(1.05);
}

.btn-view {
    background: rgba(27, 122, 74, 0.12);
    color: var(--admin-primary);
}

.btn-view:hover {
    background: rgba(27, 122, 74, 0.2);
}

.btn-delete {
    background: rgba(211, 47, 47, 0.12);
    color: var(--admin-danger);
}

.btn-delete:hover {
    background: rgba(211, 47, 47, 0.2);
}

.btn-reset {
    background: rgba(27, 122, 74, 0.12);
    color: var(--admin-primary);
}

.btn-reset:hover {
    background: rgba(27, 122, 74, 0.2);
}

.btn-status {
    background: rgba(237, 108, 2, 0.12);
    color: var(--admin-warning);
}

.btn-status:hover {
    background: rgba(237, 108, 2, 0.2);
}

.action-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.btn-cancel {
    background: #eee;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
}

.btn-cancel:hover {
    background: #ddd;
}

/* === PROFİL === */
.profile-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent);
    padding: 10px;
    background: var(--light);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.profile-info h3 {
    font-size: 1.4rem;
    color: var(--secondary);
}

.profile-info p {
    color: #888;
    font-size: 0.9rem;
}

.profile-joined {
    margin-top: 5px;
    font-size: 0.8rem !important;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.stat-box {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* === TESBİH === */
.tesbih-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.tesbih-display {
    margin: 20px 0 30px;
}

.tesbih-counter {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: 'Amiri', serif;
}

.tesbih-bead {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(27, 122, 74, 0.3);
    cursor: pointer;
    user-select: none;
    transition: all 0.2s;
    position: relative;
}

.tesbih-bead:active {
    transform: scale(0.92);
}

.tesbih-hint {
    color: #888;
    font-size: 0.9rem;
    margin-top: 10px;
}

.tesbih-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 25px 0;
}

.tesbih-btn {
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tesbih-btn:hover {
    transform: translateY(-3px);
}

.tesbih-btn.reset {
    background: #f0f0f0;
    color: var(--dark);
}

.tesbih-btn.reset:hover {
    background: #e0e0e0;
}

.tesbih-btn.complete {
    background: var(--gradient-accent);
    color: white;
}

.tesbih-btn.complete:hover {
    box-shadow: 0 4px 15px rgba(232,179,91,0.4);
}

.tesbih-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.stat-item {
    background: var(--light);
    padding: 15px;
    border-radius: 12px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

/* === HAMBURGER MENÜ === */
.hamburger-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    animation: fadeIn 0.25s ease;
}

.hamburger-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 290px;
    height: 100%;
    background: var(--light);
    padding: 20px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    animation: slideInRight 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.hamburger-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.hamburger-header h3 {
    color: var(--primary);
    flex: 1;
    margin: 0;
    font-size: 1.2rem;
}

.hamburger-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--dark);
    opacity: 0.5;
    transition: var(--transition);
    padding: 0 5px;
}

.hamburger-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.hamburger-user {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.hamburger-user i {
    font-size: 2rem;
    color: var(--primary);
}

.hamburger-user span {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
}

.hamburger-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.hamburger-nav a {
    padding: 12px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.hamburger-nav a:hover {
    background: rgba(27, 122, 74, 0.08);
}

.hamburger-nav a i {
    width: 22px;
    color: var(--primary);
    font-size: 1.1rem;
}

.hamburger-nav hr {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin: 6px 0;
}

.hamburger-badge {
    position: absolute;
    right: 15px;
    background: var(--danger);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.hamburger-footer {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 0.7rem;
    color: #888;
    flex-shrink: 0;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

/* === RESPONSIVE === */
@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .splash-logo {
        width: 100px;
        height: 100px;
    }
    
    .splash-content h1 {
        font-size: 2rem;
    }
    
    .login-container {
        padding: 30px 20px;
    }
    
    .vird-item {
        padding: 14px 15px;
    }
    
    .vird-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .nav-item span {
        font-size: 0.6rem;
    }
    
    .nav-item i {
        font-size: 1.2rem;
    }
    
    #incompleteNotification {
        width: 18px;
        height: 18px;
        font-size: 0.55rem;
        top: -3px;
        right: -3px;
    }
    
    .tesbih-counter {
        font-size: 3rem;
    }
    
    .tesbih-bead {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }
    
    .profile-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hamburger-panel {
        width: 260px;
    }
}

/* === TOAST ANİMASYONLARI === */
@keyframes slideDown {
    from {
        transform: translate(-50%, -100%);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

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

/* === SAYFA HEADER === */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.page-header h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.badge-count {
    background: var(--danger);
    color: white;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
}

/* === TAMAMLANMAYAN ÖZEL === */
.incomplete-summary {
    margin-bottom: 15px;
}

.summary-text {
    padding: 14px 18px;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    background: var(--warning);
    color: white;
    margin: 0;
}

.summary-text i {
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.summary-text small {
    opacity: 0.9;
    font-size: 0.85rem;
    display: block;
    margin-top: 4px;
}

.incomplete-item {
    border-left-color: var(--warning) !important;
    animation: slideInLeft 0.3s ease;
}

.incomplete-item .remaining-badge {
    background: var(--warning);
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
}

.progress-label {
    font-size: 0.7rem;
    color: #888;
    margin-top: 4px;
}

.complete-all-btn {
    background: var(--gradient-accent) !important;
    font-size: 1.1rem;
    padding: 16px;
}

.complete-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(232,179,91,0.4);
}

.empty-state.incomplete-empty {
    padding: 60px 20px;
    text-align: center;
}

.empty-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 20px;
}

.empty-state h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.empty-state p {
    color: #888;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

.empty-sub {
    font-size: 0.9rem;
    margin-top: 8px;
    opacity: 0.8;
}

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

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(50px);
    }
}

/* === ANA SAYFA WIDGET'LARI === */
.date-display {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 5px solid var(--accent);
}

.date-display h2 {
    font-size: 1.1rem;
    color: var(--dark);
}

.hijri-date {
    color: var(--primary);
    font-weight: 600;
    margin-top: 5px;
    font-family: 'Amiri', serif;
    font-size: 1.1rem;
}

.greeting {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
    text-align: center;
}

.takvim-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 15px 0 20px;
}

.widget-label {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: -5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.takvim-widget {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.1);
    background: white;
    min-height: 80px;
}

/* === PAGE CONTAINER === */
.page-container {
    padding: 0 5px;
}