:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --secondary: #ec4899;
    --accent: #14b8a6;
    --background: #f8fafc;
    --surface: rgba(255, 255, 255, 0.85);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --math-color: #f43f5e;
    --hebrew-color: #3b82f6;
    --science-color: #10b981;
    --english-color: #f59e0b;
    --bible-color: #a855f7;
    --moledet-color: #84cc16;
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

body.dark-mode {
    --bg-color: #0f172a;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --card-bg: rgba(30, 41, 59, 0.95);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body.dark-mode .subject-card {
    background: var(--card-bg);
    color: var(--text);
}

body.dark-mode .header-secondary { background: rgba(0,0,0,0.3) !important; border-color: rgba(255,255,255,0.1); }
body.dark-mode .circle-btn { background: var(--card-bg); color: #94a3b8; }
body.dark-mode .circle-btn:hover { background: var(--primary); color: white; }
body.dark-mode .pet-health-wrapper span { color: var(--text) !important; }

body.dark-mode .chat-panel { background: var(--card-bg); color: var(--text); }
body.dark-mode .chat-input-area { background: var(--card-bg); }
body.dark-mode .chat-header { background: var(--card-bg); }
body.dark-mode .ai-message { background: var(--primary-light); color: white; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', 'Assistant', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--background);
    color: var(--text-main);
    overflow: hidden; 
    height: 100vh;
    height: 100dvh;
    font-family: 'Rubik', 'Assistant', sans-serif;
}

/* Custom Scrollbars */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(148, 163, 184, 0.4); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(148, 163, 184, 0.8); }

/* Particle Canvas */
.particles-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2; pointer-events: none; opacity: 0.6;
}

/* Background Animated Shapes */
.bg-shape {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.5;
    animation: float 15s infinite alternate ease-in-out;
}
.shape-1 { width: 300px; height: 300px; background: var(--primary-light); top: -50px; right: -50px; }
.shape-2 { width: 400px; height: 400px; background: #fbcfe8; bottom: -100px; left: -100px; animation-delay: -5s; }
.shape-3 { width: 250px; height: 250px; background: #ccfbf1; top: 40%; right: 20%; animation-delay: -10s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-30px, 30px) scale(1.1); }
}

/* App Container */
#app-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 600px; /* Mobile focused */
    margin: 0 auto;
    background: rgba(255,255,255, 0.4);
    box-shadow: var(--glass-shadow);
}

/* Header */
.app-header {
    padding: 1rem 1.5rem;
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.header-tools {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-secondary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.7);
    padding: 8px 12px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.action-buttons-group {
    display: flex;
    gap: 8px;
}

.circle-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid var(--glass-border);
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.circle-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.looping-pulse { animation: pulseFab 2s infinite alternate; }

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo i {
    font-size: 1.75rem;
    color: var(--primary);
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

/* Main Content */
#main-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    padding-bottom: 6rem; /* space for fab */
}

/* Views */
.view {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.view.active-view {
    display: block;
}

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

/* Welcome Section */
.welcome-section {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
    padding: 1.5rem;
    border-radius: 24px;
    border: 2px dashed var(--primary-light);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.welcome-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.welcome-section p {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Subjects Grid */
.subjects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.subject-card {
    background: var(--surface);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: all 0.1s; /* Shorter for JS Tilt */
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.subject-card:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.15); }

.subject-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 5px;
    background: var(--card-color, var(--primary));
    transform: translateZ(20px);
}

.subject-card:active { transform: scale(0.94) !important; transition: 0.1s; }

.subject-icon-bg {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    font-size: 2rem;
    background: rgba(var(--card-rgb, 99, 102, 241), 0.15);
    color: var(--card-color, var(--primary));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(30px);
}

.subject-card:hover .subject-icon-bg {
    transform: scale(1.1) rotate(5deg);
}

.subject-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Subject Detailed View */
.subject-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.back-btn {
    background: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.topics-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.topic-item {
    background: var(--surface);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.topic-item:hover { transform: scale(1.02); }

.map-line {
    position: absolute; width: 4px; height: 40px; background: repeating-linear-gradient(to bottom, #cbd5e1 0, #cbd5e1 10px, transparent 10px, transparent 20px);
    right: 32px; top: -45px; z-index: 1;
}

.topic-info-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topic-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.topic-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
}
.topic-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.practice-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.practice-btn:hover { transform: scale(1.08); }
.practice-btn:active { transform: scale(0.9); }

@keyframes floatFab {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* Chat FAB */
.chat-fab {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.4);
    cursor: pointer;
    z-index: 100;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: floatFab 3s ease-in-out infinite;
}

.chat-fab:active {
    transform: scale(0.9);
}

/* Chat Panel */
.chat-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70vh;
    max-height: 600px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-panel.open {
    transform: translateY(0);
}

.chat-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-actions {
    display: flex;
    gap: 0.5rem;
}

.icon-btn {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.icon-btn:hover {
    background: var(--primary-light);
    color: white;
}

.progress-container {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transition: width 0.4s ease;
}

.chat-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    color: var(--primary);
}

.close-chat {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    border-radius: 20px;
    width: fit-content;
    align-self: flex-start;
    align-items: center;
    border-bottom-left-radius: 4px;
}
.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}
.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }
@keyframes bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* MCQ Area */
.mcq-area {
    padding: 0 1.5rem 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.mcq-btn {
    flex: 1 1 calc(50% - 0.5rem);
    background: white;
    border: 2px solid var(--primary-light);
    color: var(--primary);
    padding: 0.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.mcq-btn:active, .mcq-btn:hover {
    background: var(--primary);
    color: white;
}

/* Hint Button */
.hint-btn {
    background: #fef08a;
    border: 1px solid #fde047;
    border-radius: 50%;
    min-width: 40px;
    height: 40px;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    animation: fadeIn 0.3s;
    align-self: center;
}

/* Streak Text */
.streak-text {
    font-weight: bold;
    color: #f97316;
    animation: pulseFab 1s infinite alternate;
}

/* Modals & Gamification */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal-content, .diploma-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 90%;
    width: 420px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: scaleIn 0.3s;
    color: var(--text);
}

.diploma-content {
    background: linear-gradient(135deg, #fef08a, #fde047);
    border: 8px double #ca8a04;
    color: #422006;
}

.coins-display {
    background: #fef08a;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ca8a04;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.coins-display:hover { transform: scale(1.05); }

.shop-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.shop-item {
    flex: 1 1 calc(50% - 10px);
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #f8fafc;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.shop-item:hover { border-color: var(--primary); transform: translateY(-3px);}
.shop-item.active { border-color: #10b981; background: #ecfdf5; }
.shop-icon { font-size: 2.5rem; }
.shop-name { font-weight: bold; font-size: 0.9rem; }
.shop-cost { color: #ca8a04; font-weight: bold; }

.timer-container {
    height: 6px;
    background: #e2e8f0;
    margin-top: 10px;
    border-radius: 4px;
    overflow: hidden;
}
.timer-bar {
    height: 100%;
    width: 100%;
    background: var(--accent);
    transition: width 1s linear, background-color 0.5s;
}
.mt-3 { margin-top: 1.5rem; }

.pet-container {
    display: flex; align-items: center; justify-content: center;
    background: white; padding: 4px 10px; border-radius: 100px; cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); border: 1px solid var(--glass-border);
    transition: 0.2s;
}
.pet-container:hover { transform: scale(1.05); }
.pet-health-wrapper { display:flex; flex-direction:column; align-items:flex-start; }
.pet-health { width: 50px; height: 6px; background: #e2e8f0; border-radius: 4px; overflow: hidden; margin-top: 2px;}

.flashcard-inner {
    width: 300px; height: 200px;
    perspective: 1000px;
    background: transparent;
    cursor: pointer;
    margin: 0 auto;
}
.flashcard-content {
    position: relative; width: 100%; height: 100%; text-align: center;
    transition: transform 0.6s; transform-style: preserve-3d;
}
.flashcard-inner.flipped .flashcard-content { transform: rotateY(180deg); }
.flashcard-front, .flashcard-back {
    position: absolute; width: 100%; height: 100%; backface-visibility: hidden;
    display: flex; align-items: center; justify-content: center;
    border-radius: 15px; padding: 20px; font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.flashcard-front { background: var(--primary-light); color: white; }
.flashcard-back { background: var(--accent); color: white; transform: rotateY(180deg); font-weight: bold; font-size: 1.5rem;}

.locked-topic { opacity: 0.5; filter: grayscale(1); pointer-events: none; }
.locked-icon { position: absolute; top: 10px; left: 10px; color: #ef4444; font-size: 1.2rem; }

.leaderboard-list { list-style: none; padding: 0; margin-top: 15px; text-align: right; }
.leaderboard-list li { display: flex; justify-content: space-between; padding: 10px; border-bottom: 1px solid #eee; }

.badges-grid { display: flex; gap: 10px; justify-content: center; margin-top: 15px; }
.badge-item { font-size: 2.5rem; opacity: 0.2; transform: scale(0.8); transition: 0.3s; }
.badge-item.unlocked { opacity: 1; transform: scale(1.1); filter: drop-shadow(0 0 10px gold); }

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    scroll-behavior: smooth;
}

.message-row { display: flex; gap: 10px; align-items: flex-end; animation: messageIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.message-row.ai { flex-direction: row; }
.message-row.user { flex-direction: row-reverse; }

.chat-avatar { width: 34px; height: 34px; border-radius: 50%; box-shadow: 0 2px 5px rgba(0,0,0,0.1); background:var(--surface); display:flex; align-items:center; justify-content:center; font-size:1.2rem; }

.message {
    max-width: 80%;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    font-size: 1rem;
    line-height: 1.4;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

@keyframes messageIn {
    from { opacity: 0; transform: translateY(20px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.ai-message {
    background: #f1f5f9;
    color: var(--text-main);
    border-bottom-right-radius: 4px; /* Tail pointing to AI avatar on the right in RTL */
}

.ai-message::before {
    content: ''; position: absolute; bottom: 0; right: -8px; 
    width: 20px; height: 20px; background: #f1f5f9;
    border-bottom-left-radius: 16px; z-index: -1;
}

.user-message {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-bottom-left-radius: 4px;
}
.user-message::before {
    content: ''; position: absolute; bottom: 0; left: -8px; 
    width: 20px; height: 20px; background: var(--primary-light);
    border-bottom-right-radius: 16px; z-index: -1;
}

/* Hollywood Reward Spotlights */
.spotlight { position: absolute; top: -50%; left: 50%; width: 100px; height: 200%; background: linear-gradient(to bottom, rgba(253, 224, 71, 0.4), transparent); filter: blur(20px); transform-origin: top; z-index: -1; animation: swing 4s infinite ease-in-out alternate; }
.spotlight-2 { animation-delay: -2s; animation-direction: alternate-reverse; }
@keyframes swing { 0% { transform: rotate(-30deg); } 100% { transform: rotate(30deg); } }

/* Toast System */
.toast-container { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; gap: 10px; z-index: 10000; pointer-events: none; }
.toast { background: rgba(30,41,59,0.9); color: white; padding: 12px 24px; border-radius: 100px; font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; gap: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); backdrop-filter: blur(10px); }
.toast.toast-exit { animation: toastOut 0.3s forwards; }
@keyframes toastIn { from { opacity: 0; transform: translateY(50px) scale(0.8); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes toastOut { from { opacity: 1; transform: translateY(0) scale(1); } to { opacity: 0; transform: translateY(50px) scale(0.8); } }

/* Responsive Desktop Layout */
@media (min-width: 800px) {
    #app-container { max-width: 100%; width: 100vw; flex-direction: row; border-radius: 0; overflow:hidden;}
    #main-content { flex: 1; max-width: 800px; margin: 0 auto; display: flex; flex-direction: column;}
    .app-header { border-bottom: none; border-left: 1px solid var(--glass-border); position: sticky; top:0; z-index:50;}
    .chat-panel { position: relative; width: 450px; height: 100%; border-radius: 0; border-right: 1px solid var(--glass-border); box-shadow: -10px 0 40px rgba(0,0,0,0.02); transform: translateX(100%); transition: 0.5s; display:none;}
    .chat-panel.open { display: flex; transform: translateX(0); }
    .chat-fab { bottom: 30px; left: 30px; width: 80px; height: 80px; font-size: 2.5rem; }
}

.chat-input-area {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    gap: 0.75rem;
    background: white;
}

.chat-input-area input {
    flex: 1;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    padding: 0 1.5rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.2s;
}

.chat-input-area input:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.send-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
