/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    user-select: none;
    font-size: 16px;
}

/* Screen Management */
.screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.screen.active {
    display: flex;
    opacity: 1;
}

/* Main Menu Styles */
#mainMenu {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('assets/images/backgrounds/bg-main-menu.jpg') center/cover;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(103, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    backdrop-filter: blur(2px);
}

.menu-container {
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.title-container {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.game-title {
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 800;
    background-color: #F9C5C7;
    /* background: linear-gradient(45deg, #ff6b6b, #feca57, #48cae4, #f093fb); */
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
    /* letter-spacing: 5x; */
    font-family: 'Montserrat', sans-serif;
}

.game-subtitle {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.15em;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 350px;
    margin: 0 auto;
}

.menu-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.menu-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.menu-btn:active {
    transform: translateY(-1px);
}

/* Chapter Selection Screen */
#chapterScreen {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
}

.chapter-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    width: 95%;
    max-width: 900px;
    backdrop-filter: blur(20px);
    max-height: 90vh;
    overflow-y: auto;
}

.chapter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.chapter-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #48cae4;
}

.chapter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.chapter-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.chapter-card.unlocked:hover {
    border-color: #48cae4;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(72, 202, 228, 0.3);
}

.chapter-card.locked {
    opacity: 0.5;
    cursor: not-allowed;
}

.chapter-card.locked:hover {
    transform: none;
    box-shadow: none;
}

.chapter-image {
    height: 120px;
    background: linear-gradient(135deg, #48cae4, #f093fb);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.chapter-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.chapter-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.chapter-info p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.chapter-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.chapter-status.completed {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
}

.chapter-status.locked {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.chapter-status.coming-soon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

/* Game Screen Styles */
#gameScreen {
    flex-direction: column;
    background: #000;
}

.game-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 1s ease-in-out;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

.chapter-info-display {
    position: absolute;
    top: 5rem;
    
    left: 1rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(30, 30, 30, 0.8));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 0.8rem 1.5rem;
    backdrop-filter: blur(10px);
    z-index: 100;
}

.chapter-info-display span {
    font-size: 1rem;
    font-weight: 600;
    color: #48cae4;
}

.character-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 79%;
    height: 79%;
    pointer-events: none;
}

.character {
    position: absolute;
    bottom: 0;
    width: 350px;
    height: 550px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.4));
}

.character.show {
    opacity: 1;
}

.character.left {
    left: 8%;
    transform: translateX(-10%);
}

.character.right {
    right: 8%;
    transform: translateX(10%);
}

.character.active {
    filter: drop-shadow(0 8px 25px rgba(255, 255, 255, 0.3)) brightness(1.15);
}

/* Enhanced Text Box Styles with Much Larger Text */
.text-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 30, 0.95));
    border-top: 4px solid rgba(72, 202, 228, 0.6);
    padding: 3rem 3.5rem;
    min-height: 280px;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.speaker-name {
    font-size: 2rem;
    font-weight: 700;
    color: #48cae4;
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 15px rgba(72, 202, 228, 0.4);
    letter-spacing: 0.5px;
}

.dialogue-text {
    font-size: 1.8rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.continue-indicator {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    font-size: 2.5rem;
    color: #feca57;
    animation: pulse 1.5s infinite;
}

/* Enhanced Choice Menu Styles */
.choice-menu {
    position: absolute;
    bottom: 300px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 700px;
    display: none;
}

.choice-menu.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.choice-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.choice-btn {
    background: linear-gradient(135deg, rgba(72, 202, 228, 0.15), rgba(254, 202, 87, 0.15));
    border: 3px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 1.8rem 2.5rem;
    font-size: 1.3rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    text-align: left;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 1px 1px 1px  black;
    line-height: 1.5;
    letter-spacing: 0.3px;
}

.choice-btn:hover {
    background: linear-gradient(135deg, rgba(72, 202, 228, 0.25), rgba(254, 202, 87, 0.25));
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateX(15px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Game UI Styles */
.game-ui {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.8rem;
    z-index: 100;
}

.ui-btn {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.ui-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Settings Screen Styles */
#settingsScreen {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
}

.settings-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    width: 90%;
    max-width: 550px;
    backdrop-filter: blur(20px);
}

.settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.settings-header h2 {
    font-size: 2rem;
    font-weight: 700;
}

.close-btn {
    background: rgba(255, 0, 0, 0.2);
    border: 2px solid rgba(255, 0, 0, 0.5);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    font-weight: bold;
}

.close-btn:hover {
    background: rgba(255, 0, 0, 0.4);
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
}

.setting-item label {
    font-weight: 600;
    flex: 1;
    font-size: 1.1rem;
}

.setting-item input[type="range"] {
    flex: 2;
    margin: 0 1.5rem;
}

.setting-item span {
    min-width: 70px;
    text-align: right;
    font-weight: 700;
    color: #48cae4;
    font-size: 1.1rem;
}

.toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
    font-weight: 600;
    font-size: 1rem;
}

.toggle-btn.active {
    background: linear-gradient(135deg, #48cae4, #f093fb);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Gallery Screen Styles */
#galleryScreen {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
}

.gallery-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    width: 95%;
    max-width: 900px;
    height: 85vh;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-header h2 {
    font-size: 2rem;
    font-weight: 700;
}

.gallery-tabs {
    display: flex;
    padding: 1.5rem 2.5rem 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 1.2rem 2.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-weight: 600;
    font-size: 1.1rem;
}

.tab-btn.active {
    color: white;
    border-bottom-color: #48cae4;
}

.gallery-content {
    flex: 1;
    padding: 2.5rem;
    overflow-y: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 16/9;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gallery-item:hover {
    border-color: #48cae4;
    transform: scale(1.05);
}

.gallery-item.locked {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery-item.locked:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Load Screen Styles */
#loadScreen {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
}

.load-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    width: 90%;
    max-width: 650px;
    backdrop-filter: blur(20px);
}

.load-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.load-header h2 {
    font-size: 2rem;
    font-weight: 700;
}

.save-slots {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.save-slot {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-slot:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #48cae4;
}

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

.slot-number {
    font-weight: 700;
    color: #48cae4;
    font-size: 1.2rem;
}

.slot-details {
    font-size: 1rem;
    opacity: 0.8;
}

/* Game Over Screen Styles */
#gameOverScreen {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.gameover-container {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    max-width: 550px;
    width: 90%;
}

#gameOverTitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ff6b6b;
    font-weight: 700;
}

#gameOverText {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.gameover-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Chapter Complete Screen */
#chapterCompleteScreen {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9));
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.chapter-complete-container {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(20px);
    max-width: 600px;
    width: 90%;
}

.completion-animation {
    position: relative;
    margin-bottom: 2rem;
}

.star-burst {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #feca57, #ff6b6b);
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: starBurst 2s ease-in-out infinite;
}

.completion-icon {
    font-size: 4rem;
    color: #feca57;
    animation: bounce 1s ease-in-out infinite;
}

#chapterCompleteTitle {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #48cae4;
    font-weight: 700;
}

#chapterCompleteText {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.completion-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes starBurst {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .text-box {
        padding: 2.5rem 2rem;
        min-height: 260px;
    }
    
    .speaker-name {
        font-size: 1.6rem;
    }
    
    .dialogue-text {
        font-size: 1.5rem;
        line-height: 1.7;
    }
    
    .continue-indicator {
        font-size: 2rem;
        bottom: 1.5rem;
        right: 2rem;
    }
    
    .character {
        width: 280px;
        height: 450px;
    }
    
    .character.left {
        left: 3%;
    }
    
    .character.right {
        right: 3%;
    }
    
    .choice-btn {
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
    }
    
    .choice-menu {
        bottom: 280px;
    }
    
    .game-ui {
        top: 0.5rem;
        right: 0.5rem;
        gap: 0.5rem;
    }
    
    .ui-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .chapter-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .chapter-card {
        padding: 1.2rem;
    }
    
    .settings-container,
    .gallery-container,
    .load-container {
        padding: 2rem;
        width: 95%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .game-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .game-subtitle {
        font-size: clamp(1rem, 3vw, 1.3rem);
    }
}

@media (max-width: 480px) {
    .menu-buttons {
        max-width: 300px;
    }
    
    .menu-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .text-box {
        padding: 2rem 1.5rem;
        min-height: 240px;
    }
    
    .speaker-name {
        font-size: 1.4rem;
    }
    
    .dialogue-text {
        font-size: 1.3rem;
        line-height: 1.6;
    }
    
    .continue-indicator {
        font-size: 1.8rem;
    }
    
    .character {
        width: 220px;
        height: 350px;
    }
    
    .choice-menu {
        width: 95%;
        bottom: 260px;
    }
    
    .choice-btn {
        padding: 1.3rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .chapter-container,
    .settings-container,
    .gallery-container,
    .load-container {
        padding: 1.5rem;
    }
    
    .setting-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .setting-item input[type="range"] {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #48cae4, #f093fb);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #37a3c4, #d670e8);
}

/* ADDED: Lightbox/Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 85%;
    max-height: 85vh;
    animation: zoomIn 0.3s ease-out;
}

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

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-modal-btn:hover,
.close-modal-btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}