@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {

    --primary-color: #F59E0B;
    --primary-color: #F59E0B;

    --primary-hover: #D97706;
    --primary-glow: rgba(245, 158, 11, 0.4);
    --secondary-color: #EA580C;


    --bg-base: #0F172A;
    --card-bg: rgba(30, 41, 59, 0.4);

    --border-color: rgba(255, 255, 255, 0.08);

    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-full: 999px;

    --shadow-glass: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px -1px rgba(0, 0, 0, 0.05);

    --bg-gradient: radial-gradient(circle at 10% 10%, rgba(245, 158, 11, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(234, 88, 12, 0.15) 0%, transparent 40%);
}

html {
    font-size: 14.5px;
    -webkit-tap-highlight-color: transparent;
}

a,
button,
[onclick],
.clickable {
    cursor: pointer;
}

body.light-mode {
    --bg-base: #F8FAFC;
    --bg-gradient: radial-gradient(circle at 10% 10%, rgba(245, 158, 11, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(234, 88, 12, 0.05) 0%, transparent 40%);

    --card-bg: rgba(255, 255, 255, 0.7);

    --border-color: rgba(0, 0, 0, 0.05);

    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;

    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-base);
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--text-secondary);
}

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

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

i[data-lucide],
.fa-solid {
    display: inline-block;
    vertical-align: middle;
}

.glass {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glass);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modal-box {
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.app-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.app-modal-box {
    padding: 32px;
    width: 90%;
    max-width: 380px;
    text-align: center;
}

.app-modal-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.app-modal-icon-wrap i {
    width: 26px;
    height: 26px;
}

.app-modal-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.app-modal-message {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre-line;
}

.app-modal-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    margin-bottom: 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
}

.app-modal-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.app-modal-actions {
    display: flex;
    gap: 10px;
}

.app-modal-actions .btn {
    flex: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    padding: 0 24px;

    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    text-decoration: none;
    font-family: inherit;
    white-space: nowrap;
    line-height: 1;
}

.btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--bg-base), 0 0 0 5px var(--primary-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #FFF;
    box-shadow: 0 4px 15px var(--primary-glow);

    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.btn-primary-small {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #FFF;
    height: 36px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px var(--primary-glow);
    border: none;

}

.btn-primary-small:hover {
    transform: translateY(-2px);
}

.btn-primary-small:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--bg-base), 0 0 0 5px var(--primary-color);
}

.btn-large {
    height: 54px;
    padding: 0 32px;
    font-size: 1.15rem;
}

.btn-sm {
    height: 38px;
    padding: 0 18px;
    font-size: 0.9rem;
    gap: 6px;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--card-bg);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--card-bg), 0 0 0 5px var(--primary-color);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    height: 38px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.btn-ghost:hover {
    background: var(--card-bg);
    color: var(--text-primary);
}

.btn-ghost:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--card-bg), 0 0 0 5px var(--primary-color);
}

.auth-container {
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
}

.auth-card {
    max-width: 450px;
    width: 100%;
    padding: 40px;
}

.auth-card.register-card {
    max-width: 550px;
}

.auth-logo {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -0.05em;
}

.auth-logo i {
    color: var(--primary-color);
}

.auth-logo a {
    color: var(--text-primary);
    text-decoration: none;
}

.form-group {
    margin-bottom: 10px;
    text-align: left;
}

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

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);

    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.light-mode .form-control {
    background: rgba(255, 255, 255, 0.5);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--bg-base);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.auth-links {
    text-align: center;
    margin-top: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.glass-nav {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.logo i {
    color: var(--primary-color);
    margin-right: 5px;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a:not(.btn-primary-small):not(.btn-outline) {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover:not(.btn-primary-small):not(.btn-outline) {
    color: var(--primary-color);
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
    margin-right: 12px;
}

.theme-toggle:hover {
    color: var(--primary-color);
}

.nav-auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-auth-icon {
    display: none;
}

@media (max-width: 768px) {
    .nav-auth-buttons {
        display: none;
    }

    .nav-auth-icon {
        display: flex;
    }
}

.public-shell-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 24px 60px;
    min-height: 70vh;
}

.public-shell-footer {
    text-align: center;
    padding: 30px 20px 50px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.public-shell-footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 768px) {
    .public-shell-main {
        padding-top: 100px;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 50px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge-pill {
    display: inline-block;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-graphic {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    position: absolute;
    width: 260px;
    padding: 20px;
    animation: float 6s ease-in-out infinite;
}

.fc-header {
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.fc-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 5%;
    animation-delay: 2s;
    z-index: 2;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

.timer {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.light-mode .progress-bar {
    background: rgba(0, 0, 0, 0.1);
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
}

.list-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.list-item .xp {
    color: var(--primary-color);
}

.avatars {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border-color);
    border: 2px solid var(--bg-base);
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
    background: var(--primary-color);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.features-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px var(--primary-glow);
}

.icon-box {
    width: 64px;
    height: 64px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.community-section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.community-content {
    flex: 1;
}

.community-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.community-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.community-list li {
    margin-bottom: 20px;
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
}

.community-list li i {
    font-size: 1.3rem;
}

.community-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.badge-showcase {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 320px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.light-mode .badge-item {
    background: rgba(255, 255, 255, 0.5);
}

.badge-item i {
    font-size: 1.6rem;
}

.history-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    gap: 10px;
}

.light-mode .history-list-item {
    background: rgba(0, 0, 0, 0.02);
}

.history-item-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.history-list-item .history-item-left,
.history-list-item .history-item-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pomo-toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

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

.pomo-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: .3s;
    border-radius: 24px;
}

.pomo-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

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

.history-list-item .topic-name {
    font-weight: 600;
    color: var(--text-primary);
}

.history-list-item .history-item-right {
    color: var(--text-secondary);
}

.history-list-item .duration {
    font-weight: 700;
    color: var(--text-primary);
}

.history-list-item .time {
    font-size: 0.75rem;
    opacity: 0.7;
}

footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
}

.footer-logo {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.site-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
    font-size: 0.85rem;
}

.site-footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
}

.site-footer-links a:hover {
    color: var(--primary-color);
}

.site-footer-dot {
    color: var(--text-muted);
}

.app-footer {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.app-footer-copy {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-logo i {
    color: var(--primary-color);
}

.card {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.dashboard-body {
    display: flex;
    min-height: 100dvh;
}

.desktop-sidebar {
    width: 265px;
    background: var(--card-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-right: 1px solid var(--border-color);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 100;
    overflow-y: auto;
}

.desktop-sidebar::-webkit-scrollbar {
    width: 4px;
}

.desktop-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.light-mode .desktop-sidebar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
}

.desktop-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 25px;
    padding: 0 5px;
    flex-shrink: 0;
}

.sidebar-logo img {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-glass);
}

.logo-highlight {
    color: var(--primary-color);
    margin-left: -2px;
}

.logo-badge {
    font-size: 0.65rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #FFF;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    vertical-align: top;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
    box-shadow: 0 2px 5px rgba(245, 158, 11, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(2px);
}

.sidebar-logo span:not(.logo-badge):not(.logo-highlight) {
    color: inherit;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.sidebar-nav .nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sidebar-nav .nav-item i {
    width: 18px;
    height: 18px;
}

.sidebar-nav .nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.light-mode .sidebar-nav .nav-item:hover {
    background: rgba(0, 0, 0, 0.05);
}

.sidebar-nav .nav-item.active {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(234, 88, 12, 0.2));
    color: var(--primary-color);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.sidebar-footer {
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    margin-bottom: 10px;
}

.dashboard-main {
    flex: 1;
    min-width: 0;
    margin-left: 265px;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.user-info h2 {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.user-info p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.xp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: var(--shadow-glass);
    backdrop-filter: blur(10px);
}

.xp-badge i {
    color: var(--primary-color);
    width: 18px;
    height: 18px;
}

.mobile-logout {
    display: none;
}

.dashboard-grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.dash-col-left {
    flex: 2;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dash-col-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dash-section-title {
    font-size: 1.3rem;
    margin: 0;
    color: var(--text-primary);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.exam-countdown {
    text-align: right;
}

.exam-countdown-row {
    justify-content: flex-end;
}

.exam-countdown strong {
    font-size: 2rem;
    color: var(--text-primary);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.exam-countdown span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    font-weight: 700;
}

.exam-countdown span .exam-name {
    background: linear-gradient(135deg, #3b38a4, #a0328c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.prog-track {
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.light-mode .prog-track {
    background: rgba(255, 255, 255, 0.5);
}

.prog-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--primary-glow);
}

.prog-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

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

@media (max-width: 1430px) {
    .action-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 16px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
}

.action-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px var(--primary-glow);
}

.action-card i {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.action-card:hover i {
    transform: scale(1.1);
}

.action-card-streak-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #F59E0B, #EA580C);
    color: #fff;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.45);
    animation: streak-flame-pulse 1.8s ease-in-out infinite;
}

.action-card-streak-badge i {
    width: 9px;
    height: 9px;
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.widget-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.widget-header i {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.todo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.todo-list li {
    margin-bottom: 12px;
}

.todo-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s ease;
}

.todo-list label:hover {
    color: var(--text-primary);
}

.todo-checkbox {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid var(--text-muted);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.2);
}

.light-mode .todo-checkbox {
    background: rgba(255, 255, 255, 0.5);
}

.todo-checkbox:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}

.todo-checkbox:checked::before {
    content: "";
    width: 12px;
    height: 12px;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    background: #FFF;
    transform: scale(0.9);
}

.todo-checkbox:checked+span {
    text-decoration: line-through;
    color: var(--text-muted);
}

.leaderboard-mini .list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    margin-bottom: 8px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.leaderboard-mini .lb-row-main {
    min-width: 0;
    flex: 1;
}

.leaderboard-mini .lb-row-rank {
    width: 18px !important;
    font-size: 0.8rem;
}

.leaderboard-mini .lb-row-avatar {
    width: 26px !important;
    height: 26px !important;
    font-size: 0.68rem !important;
}

.leaderboard-mini .lb-row-name {
    margin-left: 6px !important;
}

.leaderboard-mini .lb-row-level {
    display: none;
}

.leaderboard-mini .xp {
    font-size: 0.82rem;
    white-space: nowrap;
}

.leaderboard-mini .list-item:hover {
    transform: translateX(5px);
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.light-mode .leaderboard-mini .list-item:hover {
    background: rgba(255, 255, 255, 0.8);
}

.light-mode .leaderboard-mini .list-item {
    background: rgba(255, 255, 255, 0.5);
}

.leaderboard-mini .rank-1 {
    background: linear-gradient(90deg, rgba(251, 191, 36, 0.1), transparent);
    border-color: rgba(251, 191, 36, 0.3);
}

.leaderboard-mini .rank-2 {
    background: linear-gradient(90deg, rgba(156, 163, 175, 0.1), transparent);
    border-color: rgba(156, 163, 175, 0.3);
}

.leaderboard-mini .rank-3 {
    background: linear-gradient(90deg, rgba(180, 83, 9, 0.1), transparent);
    border-color: rgba(180, 83, 9, 0.3);
}

.leaderboard-mini .leaderboard-me {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
}

.quote-widget {
    text-align: center;
    padding: 30px;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.quote-author {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ad-slot {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
	padding: 15px;
    border: 1px solid var(--border-color);
}

.ad-slot-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.ad-slot-placeholder.ad-slot-rectangle {
    min-height: 100px;
}

.ad-slot-placeholder.ad-slot-square {
    aspect-ratio: 1 / 1;
    min-height: 200px;
    max-height: 300px;
}

.ad-slot-placeholder i {
    width: 22px;
    height: 22px;
    opacity: 0.6;
}

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

.streak-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 6px;
}

.streak-flame-wrap {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: var(--radius-full);
    display: grid;
    place-items: center;
    background: rgba(148, 163, 184, 0.14);
    color: var(--text-muted);
}

.streak-flame-icon {
    width: 30px;
    height: 30px;
}

.streak-flame-active {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(245, 158, 11, 0.22));
    color: #F97316;
    animation: streak-flame-pulse 1.8s ease-in-out infinite;
}

@keyframes streak-flame-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 4px rgba(249, 115, 22, 0.35));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 12px rgba(249, 115, 22, 0.7));
    }
}

.streak-count {
    text-align: left;
}

.streak-count-num {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #F59E0B, #EA580C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.streak-count-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 2px;
}

.streak-message {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0 0 18px;
}

.streak-message-warn {
    color: #F59E0B;
}

.streak-week-strip {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.streak-week-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.streak-week-dot {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    display: grid;
    place-items: center;
    color: #fff;
}

.streak-week-dot i {
    width: 14px;
    height: 14px;
}

.streak-week-dot.studied {
    background: linear-gradient(135deg, #F59E0B, #EA580C);
    border-color: transparent;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.45);
}

.streak-week-dot.today {
    box-shadow: 0 0 0 2px var(--primary-color);
}

.streak-week-dot.studied.today {
    box-shadow: 0 0 0 2px var(--primary-color), 0 0 8px rgba(245, 158, 11, 0.45);
}

.streak-week-label {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--text-muted);
}

.streak-best-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    font-size: 0.78rem;
    font-weight: 700;
    color: #FBBF24;
}

.daily-question-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.35);
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.08), 0 8px 24px rgba(6, 182, 212, 0.12);
}

.daily-question-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(6, 182, 212, 0.16), transparent 55%);
    pointer-events: none;
}

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

.dq-icon-wrap {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: var(--radius-full);
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.22), rgba(8, 145, 178, 0.22));
    color: #06B6D4;
    animation: dq-icon-pulse 2.4s ease-in-out infinite;
}

.dq-icon {
    width: 22px;
    height: 22px;
}

@keyframes dq-icon-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 3px rgba(6, 182, 212, 0.4));
    }

    50% {
        transform: scale(1.12);
        filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.75));
    }
}

.dq-heading h3 {
    font-size: 1.05rem;
    margin: 0;
}

.dq-badge {
    display: inline-block;
    margin-top: 3px;
    padding: 2px 9px;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #06B6D4;
    background: rgba(6, 182, 212, 0.14);
}

.dq-badge-done {
    color: #10B981;
    background: rgba(16, 185, 129, 0.14);
}

.dq-preview {
    position: relative;
    color: var(--text-primary);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 14px;
    overflow-wrap: anywhere;
}

.dq-stat-bar-track {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.2);
    overflow: hidden;
}

.dq-stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981, #34D399);
    transition: width 0.4s ease;
}

.dq-stat-label {
    position: relative;
    margin: 8px 0 0;
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--text-muted);
}

.dq-cta {
    position: relative;
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.35);
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 18px;
    padding: 12px;
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
}

.cta-btn:hover {
    transform: translateY(-1px);
}

.cta-btn-secondary {
    background: var(--bg-base) !important;
    color: var(--text-secondary);
    box-shadow: none !important;
    border: 1px solid var(--border-color);
}

.cta-btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
}

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

.btn-inline-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: btn-spin 0.7s linear infinite;
    vertical-align: -3px;
    margin-right: 6px;
    opacity: 0.85;
}

.sidebar-pomodoro {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;


    position: fixed;
    left: 16px;
    width: 233px;
    bottom: 114px;
    z-index: 101;
}

.sidebar-pomodoro.active {
    display: block;
}

.sidebar-pomodoro::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.light-mode .sidebar-pomodoro {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pomo-mini-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.pomo-mini-time {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.sidebar-pomodoro #miniStatusDisplay {
    position: relative;
    z-index: 1;
}

.pomo-bg-watermark {
    position: absolute;
    right: -10px;
    bottom: -10px;
    transform: rotate(-15deg);
    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
    transition: all 0.4s ease;
}

.pomo-bg-watermark i,
.pomo-bg-watermark svg {
    width: 60px;
    height: 60px;
    stroke-width: 1.5;
}

.pomo-mini-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.pomo-mini-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.pomo-mini-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-mini-play {
    background: var(--primary-color);
    color: #FFF;
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px var(--primary-glow);
}

.btn-mini-play:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    color: #FFF;
}

.pomo-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 30px 40px;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    z-index: 10;
}

body.timer-fullscreen-mode .desktop-sidebar {
    display: none !important;
}

body.timer-fullscreen-mode .pomo-nav {
    display: flex !important;
}

body.timer-fullscreen-mode .pomo-page-wrapper,
body.timer-fullscreen-mode .dashboard-main {
    margin-left: 0 !important;
    padding: 0 !important;
    height: 100dvh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

.pomo-page-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100dvh - 80px);
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.pomo-page-watermark {
    position: fixed;
    right: 4%;
    bottom: -30px;
    transform: rotate(-15deg);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    transition: all 0.6s ease;
}

.pomo-page-watermark i,
.pomo-page-watermark svg {
    width: 420px;
    height: 420px;
    stroke-width: 1.2;
    color: var(--primary-color);
}

body.break-mode .pomo-page-watermark i,
body.break-mode .pomo-page-watermark svg {
    color: #3B82F6 !important;
}

.pomo-card {
    padding: 10px 20px;
    width: 100%;
    max-width: 620px;
    text-align: center;
    position: relative;
    margin: 0 auto;

}

.pomo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.light-mode .pomo-card::before {
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.1) 0%, transparent 60%);
}

.pomo-large-time {
    font-size: 11.5rem;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    margin-bottom: 24px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pomo-large-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.btn-pomo-main {
    width: 84px;
    height: 84px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #FFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-pomo-main:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-pomo-main i {
    width: 36px;
    height: 36px;
}

.btn-pomo-main:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--bg-base), 0 0 0 5px var(--primary-color);
}

.btn-pomo-sec {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--card-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.btn-pomo-sec:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

.btn-pomo-sec:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--bg-base), 0 0 0 5px var(--primary-color);
}

body.break-mode {
    --primary-color: #3B82F6;
    --primary-glow: rgba(59, 130, 246, 0.4);
    --secondary-color: #2563EB;
}

body.break-mode .pomo-card::before,
body.break-mode .pomo-page-wrapper::before {
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.25) 0%, transparent 60%) !important;
}

body.break-mode .pomo-large-time {
    color: var(--text-primary) !important;
    text-shadow: 0 4px 25px rgba(59, 130, 246, 0.3) !important;
}

body.break-mode .btn-pomo-main {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8) !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4) !important;
}

body.break-mode .btn-pomo-main:hover {
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6) !important;
}

body.break-mode .btn-pomo-sec:hover {
    border-color: #3B82F6 !important;
    color: #3B82F6 !important;
}

body.break-mode .btn-primary {
    background: linear-gradient(135deg, #3B82F6, #1D4ED8) !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3) !important;
}

body.break-mode .study-topic-display {
    color: #3B82F6 !important;
}

.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;

    background: var(--bg-base);
    border-top: 1px solid var(--border-color);
    padding: 10px 20px;
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
}

.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
}

.bottom-nav .nav-item.active {
    color: var(--primary-color);
}

.fab {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #FFF;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px var(--primary-glow);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.2s;
}

.global-toast {
    position: fixed;
    top: -100px;
    right: 20px;
    bottom: auto;
    z-index: 9999;
    padding: 20px 28px;
    border-radius: var(--radius-md);
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-left: 6px solid #10B981;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    pointer-events: none;
    text-decoration: none;
    transform: translateY(-20px) scale(0.9);
}

.global-toast.show {
    top: 30px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.global-toast:hover {
    transform: translateY(5px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.toast-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-icon i {
    width: 24px;
    height: 24px;
}

.toast-content h4 {
    margin: 0 0 6px 0;
    font-size: 1.1rem;
    color: #10B981;
    font-weight: 800;
}

.toast-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.15);
}

.cookie-consent-banner p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-secondary);
    max-width: 640px;
}

.cookie-consent-banner a {
    color: var(--primary-color);
    font-weight: 700;
}

.cookie-consent-banner button {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.88rem;
    font-family: inherit;
    cursor: pointer;
}

.pomo-result-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pomo-result-card .result-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981, #059669);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.pomo-result-card h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pomo-result-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.pomo-result-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.result-stat-item h3 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    font-variant-numeric: tabular-nums;
}

.result-stat-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.xp-text {
    background: linear-gradient(135deg, #F59E0B, #EA580C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    }

    50% {
        box-shadow: 0 4px 30px rgba(16, 185, 129, 0.6);
    }

    100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
    }
}

@keyframes pulseGlowBlue {
    0% {
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    }

    50% {
        box-shadow: 0 4px 30px rgba(59, 130, 246, 0.6);
    }

    100% {
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    }
}

.active-session.running-focus {
    animation: pulseGlow 2s infinite;
}

.active-session.running-mola {
    animation: pulseGlowBlue 2s infinite;
}

@keyframes scaleInCheck {
    0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
    }

    50% {
        transform: scale(1.6) rotate(10deg);
        opacity: 1;
    }

    100% {
        transform: scale(1.4) rotate(0deg);
        opacity: 1;
    }
}

.finish-check-anim {
    animation: scaleInCheck 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    color: #10B981;
}

@media (max-width: 1024px) {
    .dashboard-grid {
        flex-direction: column;
    }

    .dash-col-left,
    .dash-col-right {
        width: 100%;
        min-width: 0;
        flex: none;
        box-sizing: border-box;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-graphic {
        margin-top: 40px;
        width: 100%;
        height: 450px;
    }

    .community-section {
        flex-direction: column;
        padding: 50px 20px;
        gap: 40px;
    }

    .hero-stats,
    .hero-buttons {
        justify-content: center;
    }
}

.mobile-topbar {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 900;
    width: 100%;
}

.mobile-topbar .sidebar-logo {
    margin-bottom: 0;
    padding: 0;
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
}

.hamburger-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

.hamburger-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

.light-mode .hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hamburger-btn:focus-visible,
.theme-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px var(--card-bg), 0 0 0 5px var(--primary-color);
    border-radius: var(--radius-sm);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {


    .hide-on-mobile {
        display: none !important;
    }


    .nav-links a[href="#ozellikler"],
    .nav-links a[href="#topluluk"] {
        display: none;
    }


    .nav-public-link {
        display: none;
    }

    .nav-links {
        gap: 8px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .btn-outline,
    .btn-primary-small {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .hero-graphic {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-top: 30px;
    }

    .floating-card {
        position: relative;
        width: 100%;
        max-width: 300px;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        padding: 20px;
        animation: float 6s ease-in-out infinite;
    }

    .community-section {
        padding: 30px 20px;
    }

    .features-section {
        padding: 50px 20px;
    }

    .dashboard-body {
        flex-direction: column;
    }


    .desktop-sidebar {
        width: 300px;
        left: -300px;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        display: flex;

        bottom: 60px;


        padding-top: 14px;

        background: var(--bg-base);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }


    .desktop-sidebar .sidebar-logo {
        padding-bottom: 15px;
        margin-bottom: 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .desktop-sidebar.open {
        left: 0;
    }


    body.menu-open-lock {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }


    .auth-container {
        padding: 15px;
        min-height: 100dvh;
    }

    .auth-card {
        padding: 30px 20px;
    }

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

    .mobile-topbar {
        display: flex;
    }


    .sidebar-pomodoro {
        display: none;
    }

    .sidebar-pomodoro.active {
        position: fixed;
        bottom: 80px;

        left: 50%;
        transform: translateX(-50%);
        width: auto;
        min-width: 280px;
        z-index: 990;
        border-radius: 50px;
        background: var(--card-bg);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        padding: 10px 25px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        margin: 0;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .light-mode .sidebar-pomodoro.active {
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .sidebar-pomodoro .pomo-bg-watermark {
        display: flex;
        position: relative;
        right: auto;
        bottom: auto;
        transform: rotate(-15deg);
        opacity: 0.9;
        margin-right: -5px;

        color: var(--primary-color);
        align-items: center;
        justify-content: center;
    }

    .sidebar-pomodoro .pomo-bg-watermark i,
    .sidebar-pomodoro .pomo-bg-watermark svg {
        width: 22px;
        height: 22px;
    }

    .sidebar-pomodoro .pomo-mini-title {
        margin: 0;
        font-size: 0.8rem;
    }

    .sidebar-pomodoro #miniStatusDisplay {
        display: none;
    }

    .sidebar-pomodoro .pomo-mini-time {
        margin: 0;
        font-size: 1.3rem;
        margin-top: 2px;
    }

    .sidebar-pomodoro .pomo-mini-progress {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 3px;
        border-radius: 0 0 50px 50px;
        width: 100%;
    }


    .timer-fullscreen-mode .pomo-card {
        padding: 30px 15px;
    }


    .setup-tab-btn {
        padding: 10px 4px;
        font-size: 0.85rem;
        gap: 4px;
    }

    .setup-tab-btn i {
        width: 14px !important;
        height: 14px !important;
    }


    .history-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px;
    }

    .history-item-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .history-list-item .history-item-right {
        width: 100%;
        justify-content: space-between;
        margin-top: 2px;
    }

    .dashboard-main {
        margin-left: 0;
        padding: 20px;
        padding-bottom: 90px;
    }

    .dash-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 30px;
    }

    .mobile-logout {
        display: inline-flex;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
        border-radius: var(--radius-sm);
    }

    .progress-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .exam-countdown {
        text-align: left;
    }

    .exam-countdown-row {
        justify-content: flex-start;
    }

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

    .bottom-nav {
        display: flex;
    }

    .fab {
        display: flex;
    }

    .pomo-large-time {
        font-size: 5rem !important;
    }

    .pomo-large-controls {
        gap: 16px;
    }

    .btn-pomo-main {
        width: 72px;
        height: 72px;
    }

    .btn-pomo-sec {
        width: 50px;
        height: 50px;
    }

    .pomo-card {
        padding: 30px 15px;
    }

    .pomo-nav {
        padding: 14px 16px !important;
    }
}

.setup-tab-btn {
    flex: 1;
    padding: 10px;
    border-radius: var(--radius-full);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 0.9rem;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    align-items: start;
}

.note-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: var(--radius-md);
    transition: all 0.3s;
    border-left: 4px solid var(--border-color);
}

.note-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.note-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.note-content-preview {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.note-content-preview img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 4px 0;
}

.note-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin-top: auto;
}

.note-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.note-actions {
    display: flex;
    gap: 8px;
}

.note-actions button {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s;
}

.note-actions button:hover {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.1);
}

.note-pin-icon {
    position: absolute;
    top: -12px;
    right: 20px;
    color: #F59E0B;
    background: var(--card-bg);
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.note-card.color-red {
    border-left-color: #ef4444;
}

.note-card.color-yellow {
    border-left-color: #F59E0B;
}

.note-card.color-green {
    border-left-color: #10B981;
}

.note-card.color-blue {
    border-left-color: #3B82F6;
}

.note-card.color-purple {
    border-left-color: #8B5CF6;
}

.color-picker {
    display: flex;
    gap: 8px;
}

.color-option {
    cursor: pointer;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
}

.color-option input {
    display: none;
}

.color-option.color-default {
    background: var(--border-color);
}

.color-option.color-red {
    background: #ef4444;
}

.color-option.color-yellow {
    background: #F59E0B;
}

.color-option.color-green {
    background: #10B981;
}

.color-option.color-blue {
    background: #3B82F6;
}

.color-option.color-purple {
    background: #8B5CF6;
}

.color-option:has(input:checked) {
    border-color: var(--text-primary);
    transform: scale(1.1);
    box-shadow: 0 0 0 2px var(--card-bg);
}

.notes-split-container {
    display: flex;
    gap: 20px;
    height: calc(100vh - 120px);
    min-height: 600px;
    width: 100%;
}

.notes-sidebar {
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    padding-right: 10px;
}

.notes-editor-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.notes-editor-area .ql-toolbar {
    border: none;
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.1);
}

.notes-editor-area .ql-container {
    border: none;
    flex: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: var(--text-primary);
}

.notes-editor-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notes-editor-header input {
    font-size: 1.4rem;
    font-weight: 700;
    border: none;
    background: transparent;
    color: var(--text-primary);
    outline: none;
    width: 100%;
}

@media (max-width: 768px) {
    .notes-split-container {
        flex-direction: column;
        height: auto;
    }

    .notes-sidebar {
        width: 100%;
        max-height: 300px;
    }

    .notes-editor-area {
        min-height: 500px;
    }
}

.notif-bell-btn {
    position: relative;
}

.notif-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 0 0 2px var(--card-bg);
}

@keyframes notif-bell-shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(16deg);
    }

    30% {
        transform: rotate(-14deg);
    }

    45% {
        transform: rotate(11deg);
    }

    60% {
        transform: rotate(-8deg);
    }

    75% {
        transform: rotate(5deg);
    }

    90% {
        transform: rotate(-2deg);
    }
}

.notif-bell-btn.notif-bell-shake i {
    display: inline-block;
    transform-origin: top center;
    animation: notif-bell-shake 0.7s ease-in-out;
}

.notif-dropdown {
    display: none;
    position: fixed;
    width: 340px;
    max-width: calc(100vw - 24px);
    max-height: 440px;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--bg-base);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 950;
}

.notif-dropdown.open {
    display: block;
}

@media (min-width: 769px) {
    .notif-dropdown {
        left: 20px;
        bottom: 76px;
    }
}

@media (max-width: 768px) {
    .notif-dropdown {
        top: 62px;
        right: 12px;
    }
}

.notif-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: var(--bg-base);
    z-index: 2;
}

.notif-dropdown-header h4 {
    margin: 0;
    font-size: 0.92rem;
}

.notif-dropdown-mark-all {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0;
}

.notif-dropdown-mark-all:disabled {
    opacity: 0.5;
    cursor: default;
}

.notif-dropdown-footer {
    display: block;
    text-align: center;
    padding: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    border-top: 1px solid var(--border-color);
    position: sticky;
    bottom: 0;
    background: var(--bg-base);
    z-index: 2;
    transition: background 0.15s;
}

.notif-dropdown-footer:hover {
    background: var(--card-bg);
}

.notif-dropdown-empty {
    padding: 24px 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.notif-list {
    display: flex;
    flex-direction: column;
}

.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    transition: background 0.15s;
}

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

.notif-item:hover {
    background: var(--card-bg);
}

.notif-item-unread {
    background: rgba(99, 102, 241, 0.06);
}

.notif-item-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    color: var(--primary-color);
}

.notif-item-icon i {
    width: 15px;
    height: 15px;
}

.notif-item-body {
    flex: 1;
    min-width: 0;
}

.notif-item-message {
    margin: 0 0 3px;
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.notif-item-time {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.notif-item-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary-color);
    margin-top: 6px;
}

.tag-picker-label {
    display: block;
    margin: 20px 0 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.tag-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border: 1px solid var(--border-color);
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.15s;
    user-select: none;
}

.tag-chip:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
}

.tag-chip input {
    display: none;
}

.tag-chip.checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.tag-chip-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.tag-chip-disabled:hover {
    border-color: var(--border-color);
    color: var(--text-secondary);
}

.gruplar-card .notif-list .notif-item,
.settings-panel .notif-list .notif-item {
    padding: 14px 4px;
}