:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --secondary: #f43f5e;
    --accent: #10b981;
    --bg-dark: #0f172a;
    --card-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(244, 63, 94, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

.app-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
}

/* Header & Logo */
header {
    text-align: center;
    margin-bottom: 2rem;
    animation: fadeInDown 1s var(--transition);
}

.quiz-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.quiz-progress-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.quiz-progress-bar-bg {
    flex-grow: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
}

.quiz-progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.step-text {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-light);
    min-width: 45px;
    text-align: right;
}

.text-btn.small {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
}

.logo {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.logo span {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3));
}

.subtitle {
    color: var(--text-dim);
    font-size: 1.2rem;
    font-weight: 300;
}

/* Cards & Glassmorphism */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-radius: 2.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.card {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s var(--transition) backwards;
}

.card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #fff;
}

/* Main Navigation Tabs - Segmented Control */
.tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: sticky;
    top: 1.5rem;
    z-index: 1000;
}

.view-tabs {
    display: flex;
    position: relative;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem;
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
    gap: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.tab-btn {
    position: relative;
    background: transparent;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 1.5rem;
    color: var(--text-dim);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 2;
    min-width: 180px;
    justify-content: center;
}

.tab-btn:hover {
    color: var(--text-main);
}

.tab-btn.active {
    color: #fff;
}

.tab-indicator {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    height: calc(100% - 1rem);
    width: calc(50% - 0.5rem);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    z-index: 1;
}

.view-tabs[data-active="explore"] .tab-indicator {
    transform: translateX(100%);
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
}

.tab-icon {
    font-size: 1.2rem;
}

/* Section visibility */
.hidden {
    display: none !important;
}

/* Chips & Search */
.chip-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.chip {
    padding: 0.7rem 1.4rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
    color: var(--text-dim);
    user-select: none;
}

.chip:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.chip.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.search-container {
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.search-wrapper {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

#anime-search {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    width: 100%;
    outline: none;
    font-family: inherit;
}

#anime-search::placeholder {
    color: var(--text-dim);
    opacity: 0.6;
}

/* Buttons */
.action-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.primary-btn {
    padding: 1.2rem 3.5rem;
    background: linear-gradient(135deg, var(--primary), #a855f7);
    border: none;
    border-radius: 100px;
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.primary-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.6);
}

.secondary-btn {
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--text-dim);
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Results Header with Back Navigation */
.header-with-back {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.back-btn {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.2rem;
    border-radius: 1rem;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
    border-color: var(--primary-light);
}

.back-icon {
    font-size: 1.1rem;
}

/* Results Section */
.results-section {
    margin-top: 1rem;
    padding-top: 1rem;
}

/* Initial Page (Landing & Quiz) */
.initial-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 60%);
}

.landing-content {
    text-align: center;
    max-width: 700px;
    width: 100%;
}

.start-card {
    margin-top: 4rem;
    padding: 4rem 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.start-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.hero-icon {
    font-size: 5rem;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.6));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.start-card p {
    font-size: 1.35rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 300;
}

.logo {
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: -3px;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 10px 30px rgba(99, 102, 241, 0.3));
}

.logo span {
    background: linear-gradient(135deg, #a855f7 0%, #f43f5e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.primary-btn {
    padding: 1.4rem 4rem;
    background: linear-gradient(135deg, var(--primary), #ec4899);
    border: none;
    border-radius: 100px;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.5);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.primary-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.primary-btn:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.7);
}

.primary-btn:hover::after {
    opacity: 1;
}

.text-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.05rem;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.2);
    text-underline-offset: 6px;
    opacity: 0.6;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.text-btn:hover {
    color: var(--text-main);
    opacity: 1;
    text-decoration-color: var(--primary-light);
}

/* Quiz Container */
.quiz-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Page Layout (Results-First) */
.main-page {
    padding-bottom: 5rem;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.logo.small {
    font-size: 2.5rem;
}

.secondary-btn.small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 0.8rem;
}

/* Section Divider */
.section-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 3rem 0 2rem;
}

.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--glass-border);
}

.section-divider span {
    padding: 0 1.5rem;
    color: var(--text-dim);
    font-size: 0.95rem;
    font-weight: 300;
}

.exploration-section {
    max-width: 1600px;
    margin: 0 auto;
}

.filter-group {
    margin-bottom: 2rem;
}

/* Anime Card Enhancements */
.anime-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.anime-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.anime-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.anime-img-container {
    width: 100%;
    aspect-ratio: 2 / 1.5;
    overflow: hidden;
    position: relative;
    background: var(--glass-bg);
}

.anime-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.anime-card:hover .anime-img-container img {
    transform: scale(1.1);
}

.match-percentage {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(99, 102, 241, 0.9);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-weight: 800;
    color: white;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.anime-content {
    padding: 1rem 0 0.6rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
    align-items: flex-start;
    text-align: left;
    width: 100%;
}

.anime-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.anime-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
    padding: 0.3rem 0.8rem;
    border-radius: 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.anime-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* OTT Info & Action */
.ott-info {
    margin-top: auto;
    padding: 0.8rem 0 0;
    border-top: 1px solid var(--glass-border);
    width: 100%;
}

.ott-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 0.8rem;
}

.find-similar-btn {
    width: 100%;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--primary-light);
    padding: 0.6rem;
    border-radius: 0.8rem;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.find-similar-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

.ott-badge {
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.3rem 0.7rem;
    border-radius: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ott-badge.netflix {
    background: #E50914;
    color: white;
}

.ott-badge.laftel {
    background: #813DF4;
    color: white;
}

.ott-badge.disneyplus {
    background: #0063BE;
    color: white;
}

.ott-badge.tving {
    background: #FF153C;
    color: white;
}

/* Quiz Styles */
.quiz-section {
    max-width: 650px;
    margin: 2rem auto;
}

.quiz-card {
    min-height: 400px;
    padding: 2rem;
}

.quiz-question {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.option-btn {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    color: var(--text-main);
    font-size: 1.1rem;
    transition: var(--transition);
    text-align: left;
}

.option-btn:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--primary);
    transform: translateX(10px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .app-container {
        padding: 0.8rem 0.8rem;
    }

    .logo {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .logo.small {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .main-header {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .tabs-container {
        top: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .view-tabs {
        padding: 0.35rem;
        border-radius: 100px;
    }

    .tab-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        min-width: 140px;
        border-radius: 100px;
    }

    .tab-indicator {
        top: 0.35rem;
        left: 0.35rem;
        height: calc(100% - 0.7rem);
        width: calc(50% - 0.35rem);
        border-radius: 100px;
    }

    .anime-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .anime-card {
        border-radius: 1.2rem;
        padding: 0 !important;
        /* Remove inherited glass padding */
    }

    .anime-img-container {
        aspect-ratio: 3 / 2;
        width: 100%;
        height: auto;
    }

    .anime-content {
        padding: 0.5rem 0.5rem 0.4rem 0.5rem;
        gap: 0.2rem;
    }

    .anime-title {
        font-size: 0.82rem;
        margin-bottom: 0.05rem;
        font-weight: 700;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .anime-tags {
        display: flex;
        gap: 0.25rem;
        overflow-x: auto;
        padding-bottom: 1px;
        scrollbar-width: none;
        margin-bottom: 0.1rem;
    }

    .anime-tags::-webkit-scrollbar {
        display: none;
    }

    .tag {
        padding: 0.15rem 0.4rem;
        font-size: 0.58rem;
        border-radius: 0.3rem;
    }

    .anime-desc {
        font-size: 0.72rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        line-height: 1.35;
        margin-top: 0.1rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .match-percentage {
        top: 0.4rem;
        right: 0.4rem;
        padding: 0.2rem 0.45rem;
        font-size: 0.6rem;
        border-radius: 0.4rem;
    }

    .ott-info {
        margin-top: 0.3rem;
        padding-top: 0.3rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .ott-badges {
        gap: 0.25rem;
        margin-bottom: 0.4rem;
    }

    .ott-badge {
        font-size: 0.52rem;
        padding: 0.12rem 0.3rem;
        border-radius: 0.25rem;
    }

    .find-similar-btn {
        padding: 0.35rem;
        /* More compact */
        font-size: 0.68rem;
        border-radius: 0.5rem;
        gap: 0.2rem;
    }

    .back-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        border-radius: 0.8rem;
    }

    .header-with-back {
        gap: 0.6rem;
    }

    h2 {
        font-size: 1.25rem;
        margin-bottom: 0.8rem;
    }

    .section-divider {
        margin: 1.5rem 0 1rem;
    }

    .glass {
        padding: 1.2rem;
        border-radius: 1.5rem;
    }

    .search-container {
        margin-bottom: 1rem;
    }

    .search-wrapper {
        gap: 0.8rem;
    }

    #anime-search {
        font-size: 1rem;
    }

    .filter-group {
        margin-bottom: 1.2rem;
    }

    .chip-container {
        gap: 0.4rem;
    }

    .chip {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }

    .action-container {
        margin: 1rem 0;
        gap: 0.8rem;
    }

    .primary-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .secondary-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .quiz-card {
        padding: 1.25rem;
        min-height: 350px;
    }

    .quiz-question {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }

    .quiz-options {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .option-btn {
        padding: 1rem;
        font-size: 0.95rem;
        border-radius: 1rem;
    }
}

.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Keyword Expansion */
.chip-container.collapsed {
    max-height: 120px;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    padding-bottom: 0px;
}

#keyword-more-btn {
    display: block;
    margin: 1rem auto 0;
    width: auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dim);
    transition: var(--transition);
    text-decoration: none;
}

#keyword-more-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: var(--primary-light);
}

#keyword-more-btn.hidden {
    display: none !important;
}