/* === Variables CSS === */
:root {
    /* Couleurs principales Potomitan */
    --primary-orange: #FF8C42;
    --primary-green: #2ECC71;
    --primary-blue: #3498DB;
    --dark-blue: #2C3E50;
    --light-green: #8BC34A;
    --light-blue: #7EC8E3;
    --yellow: #F1C40F;
    --red: #E74C3C;

    /* Couleurs neutres */
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #95A5A6;
    --dark-gray: #34495E;

    /* Typographie */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;

    /* Couleurs utilitaires (compatibilité) */
    --background: #F5F5F5;
    --success: #2ECC71;
    --error: #E74C3C;
    --gray-100: #F5F5F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #95A5A6;
    --gray-700: #34495E;
    --gray-800: #2C3E50;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
}

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background: var(--light-gray);
    color: var(--dark-gray);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* === Header === */
.header {
    background: var(--dark-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--white);
}

.logo img {
    height: 50px;
    width: 50px;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links li {
    list-style: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}

/* === Main Container === */
.main-container {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    width: 100%;
}

/* === Hero Section === */
.hero {
    text-align: center;
    margin-bottom: 3rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.hero p {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--success);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* === Translator Card === */
.translator-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    margin-bottom: 2rem;
}

.tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
}

.tab {
    padding: 0.75rem 1.5rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    position: relative;
    bottom: -2px;
}

.tab:hover {
    color: var(--primary-green);
}

.tab.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* === Input Section === */
.input-section {
    margin-bottom: 1.5rem;
}

.input-group {
    position: relative;
}

.input-label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-wrapper {
    position: relative;
}

textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.char-count {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    font-size: 0.75rem;
    color: var(--gray-500);
    background: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

/* === Buttons === */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background: #27AE60;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--gray-200);
    color: var(--gray-700);
}

.btn-secondary:hover {
    background: var(--gray-300);
}

.btn-block {
    width: 100%;
}

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

/* === Results === */
.result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gray-400);
}

.result.success {
    background: #D4EDDA;
    border-left-color: var(--success);
}

.result.error {
    background: #F8D7DA;
    border-left-color: var(--red);
}

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

.result-title {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1.125rem;
}

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

.icon-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: var(--primary-green);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: 0 2px 4px rgba(46, 204, 113, 0.3);
}

.icon-btn:hover {
    background: #27AE60;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(46, 204, 113, 0.4);
}

.icon-btn:active {
    transform: scale(0.95);
}

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

.icon-btn.playing {
    background: var(--red);
}

.icon-btn.playing:hover {
    background: #C0392B;
}

.result-output {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 0.75rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--gray-700);
}

.meta-label {
    font-weight: 600;
}

/* === Quick Phrases === */
.quick-phrases {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
}

.category-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.5rem 1rem;
    background: var(--gray-100);
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.2s;
}

.category-tab:hover {
    background: var(--gray-200);
}

.category-tab.active {
    background: var(--primary-green);
    color: var(--white);
}

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

.phrase-card {
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.phrase-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.phrase-fr {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.phrase-gcf {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* === History & Favorites === */
.history-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    margin-bottom: 2rem;
}

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

.history-item {
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
    cursor: pointer;
}

.history-item:hover {
    background: var(--gray-200);
}

.history-content {
    flex: 1;
}

.history-text {
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.history-translation {
    color: var(--primary-green);
    font-weight: 600;
}

.history-time {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray-500);
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.3;
}

/* === Footer === */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 2rem 1.5rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-text {
    color: var(--gray);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--white);
}

/* === Loading State === */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.6s linear infinite;
}

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

/* === Responsive === */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero {
        margin-bottom: 1.5rem;
    }

    .main-container {
        padding: 1rem 0.75rem;
    }

    .translator-card,
    .quick-phrases,
    .history-section {
        padding: 1rem;
    }

    .tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links {
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .header-content {
        padding: 0.5rem 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .nav-links li:nth-child(2),
    .nav-links li:nth-child(3) {
        display: flex;
    }

    .hero-logo {
        display: none;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .phrases-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .catalog-filters {
        gap: 0.75rem;
    }
}

/* === Catalog === */
.catalog-filters {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.2s;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-green);
}

.catalog-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.catalog-item {
    padding: 1.25rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.catalog-item:hover {
    background: var(--gray-200);
    border-color: var(--primary-green);
}

.catalog-item-content {
    flex: 1;
}

.catalog-item-fr {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.catalog-item-gcf {
    color: var(--primary-green);
    font-weight: 500;
}

.catalog-item-meta {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.catalog-badge {
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.catalog-badge.critical {
    background: #FEE;
    color: var(--red);
}

.catalog-badge.high {
    background: #FFE;
    color: var(--primary-orange);
}

.catalog-badge.medium {
    background: #EEF;
    color: var(--primary-blue);
}

.catalog-badge.low {
    background: #EFE;
    color: var(--primary-green);
}

.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pagination-info {
    font-weight: 600;
    color: var(--gray-700);
}

/* === Anchor Highlight (pour les sections ciblées) === */
section:target {
    animation: highlightFade 2s ease-in-out;
    border-left: 3px solid #2C3E50;
    padding-left: calc(2rem + 3px);
}

@keyframes highlightFade {
    0% {
        background: rgba(44, 62, 80, 0.25);
        box-shadow: 0 0 20px rgba(44, 62, 80, 0.3);
    }
    100% {
        background: transparent;
        box-shadow: none;
    }
}

/* === Voice Recording === */
.voice-btn {
    position: absolute;
    bottom: 0.75rem;
    right: 5rem;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-green);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1.25rem;
    z-index: 10;
}

.voice-btn:hover {
    background: var(--primary-green);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.voice-btn.recording {
    background: var(--red);
    border-color: var(--red);
    animation: pulse-recording 1.5s infinite;
}

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

/* Custom tooltip for disabled voice button */
.voice-btn[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    background: var(--dark-blue);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    line-height: 1.4;
    white-space: normal;
    width: 280px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    pointer-events: none;
}

.voice-btn[data-tooltip]:hover::after {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    right: 15px;
    border: 8px solid transparent;
    border-top-color: var(--dark-blue);
    z-index: 1000;
    pointer-events: none;
}

@keyframes pulse-recording {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
    }
}

.voice-status {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-align: center;
    min-width: 300px;
}

.voice-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    backdrop-filter: blur(4px);
}

.voice-countdown {
    font-size: 4rem;
    font-weight: bold;
    color: var(--red);
    margin: 1rem 0;
    animation: countdown-pulse 1s infinite;
}

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

.voice-wave {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
    margin: 1rem 0;
}

.voice-wave-bar {
    width: 4px;
    height: 20px;
    background: var(--primary-green);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.voice-wave-bar:nth-child(2) { animation-delay: 0.1s; }
.voice-wave-bar:nth-child(3) { animation-delay: 0.2s; }
.voice-wave-bar:nth-child(4) { animation-delay: 0.3s; }
.voice-wave-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { height: 20px; }
    50% { height: 40px; }
}

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

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

/* === Utilities === */
.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* === Profil === */
.profile-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(44, 62, 80, 0.92);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.profile-selector {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.25rem;
    max-width: 700px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.profile-selector h2 {
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.profile-selector p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.profile-cards {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.profile-card {
    flex: 1;
    min-width: 140px;
    max-width: 160px;
    padding: 0.75rem 0.5rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s;
    background: var(--gray-100);
    text-align: center;
}

.profile-card:hover {
    border-color: var(--primary-green);
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.profile-card-icon {
    font-size: 1.75rem;
    margin-bottom: 0.4rem;
}

.profile-card-title {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.profile-card-desc {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.4;
}

.profile-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
}

#profileBadge {
    font-size: 0.85rem;
    font-weight: 500;
}

/* === Tutorial === */
.tutorial-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.tutorial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem 1.5rem;
    max-width: 360px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.tutorial-skip {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.tutorial-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.tutorial-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.tutorial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    display: inline-block;
}

.tutorial-dot.active {
    background: var(--primary-green);
}

.tutorial-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
}

.tutorial-text {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.tutorial-btn-primary {
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

.tutorial-nav-btn {
    background: var(--primary-orange);
    border: none;
    color: var(--white);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
}
