﻿:root {
    --bg: #111;
    --card: rgba(0, 0, 0, 0.3);
    --text: #eee;
    --muted: #888;
    --brand: cyan;
    --accent: lime;
    --radius: 16px;
}

body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: radial-gradient(circle at 80% -20%, rgba(0,255,255,.1), transparent), radial-gradient(circle at -20% 120%, rgba(0,255,180,.1), transparent), var(--bg);
    color: var(--text);
}

.ai-box {
    background: rgb(10, 33, 32);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 0 20px rgba(0,255,255,.3);
    margin: auto;
    max-width: 1100px;
    position: relative;
    margin-bottom: 40px;
}

.ai-icon {
    width: 200px;
    height: 200px;
    border: 2px solid var(--brand);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: auto;
    background: rgba(0,255,255,.1);
    box-shadow: 0 0 30px rgba(0,255,255,.4);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 20px rgba(0,255,255,.3), 0 0 10px rgba(0,255,255,.2);
    }

    100% {
        box-shadow: 0 0 40px rgba(0,255,255,.7), 0 0 20px rgba(0,255,255,.4);
    }
}

.media-item, .output-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    margin-top: 10px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.05);
    transition: .4s ease, transform .3s ease;
}

    .media-item:hover, .output-item:hover {
        background: rgba(0,255,255,.15);
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 0 15px rgba(0,255,255,.3);
    }

.section-title {
    font-weight: bold;
    margin-bottom: 10px;
}

.muted {
    color: var(--muted);
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    opacity: .3;
    margin: 20px 0;
}

.chip {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: 999px;
    background: rgba(0,255,255,.1);
    border: 1px solid rgba(0,255,255,.4);
    font-size: 1.0rem;
}

#connectors {
    position: absolute;
    inset: 0;
    z-index: 0;
}

svg.icon {
    width: 28px;
    height: 28px;
    stroke: cyan;
}













/* ================================
   Footer Styles (Synced with Theme)
   ================================ */
/* === Footer Section === */
.site-footer {
    background: radial-gradient(circle at 80% -20%, rgba(0,255,255,.05), transparent), radial-gradient(circle at -20% 120%, rgba(0,255,180,.05), transparent), #111;
    color: #eee;
    padding: 40px 20px;
    border-top: 2px solid rgba(0,255,255,.3);
    box-shadow: 0 -4px 20px rgba(0,255,255,.15);
    text-align: center;
    border-radius: 16px 16px 0 0;
    margin-top: 40px; /* space from section above */
    position: relative;
    overflow: hidden;
    bottom:0;
    width:100%;
}

    .site-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(0,255,255,.05), rgba(0,255,180,.05));
        z-index: 0;
        pointer-events: none;
    }

.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: auto;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: bold;
    color: cyan;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(0,255,255,.5);
}

.footer-inner p {
    color: #888;
    font-size: 0.95rem;
    margin: 5px 0 20px;
}

.footer-copy {
    font-size: 0.8rem;
    color: #666;
    margin-top: 10px;
    border-top: 1px solid rgba(0,255,255,.2);
    padding-top: 12px;
}






















/* ====== Base Glass Style  Menu====== */
.jirlee-glass-card {
    position: relative;
    border-radius: var(--radius, 20px);
    isolation: isolate;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease-in-out;
}

/* ====== Navbar ====== */
.jirlee-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.jirlee-logo {
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: cyan;
    letter-spacing: 0.05em;
    text-decoration : none;
}

    .jirlee-logo::before {
        content: "";
        width: 1.2em;
        height: 1.2em;
        border-radius: 50%;
        background: conic-gradient( from 210deg, rgb(var(--brand-1, 255, 100, 50)), rgb(var(--brand-2, 50, 200, 255)), rgb(var(--brand-1, 255, 100, 50)) );
    }

.jirlee-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    transition: background 0.3s;
}

    .jirlee-toggle:hover {
        background: rgba(255, 255, 255, 0.15);
    }

.jirlee-links {
    display: flex;
    gap: 1rem;
}

    .jirlee-links a {
        position: relative;
        text-decoration: none;
        padding: 0.55rem 0.9rem;
        border-radius: 12px;
        font-weight: 600;
        color: white;
        transition: all 0.3s ease;
    }

        .jirlee-links a:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .jirlee-links a::after {
            content: "";
            position: absolute;
            left: 0.8rem;
            right: 0.8rem;
            bottom: 0.25rem;
            height: 2px;
            border-radius: 2px;
            background: linear-gradient( 90deg, transparent, rgb(var(--brand-1, 255, 100, 50)), rgb(var(--brand-2, 50, 200, 255)), transparent );
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        .jirlee-links a:hover::after {
            transform: scaleX(1);
        }

/* ====== Mobile ====== */
@media (max-width: 800px) {
    .jirlee-toggle {
        display: block;
    }

    .jirlee-links {
        position: absolute;
        left: 0.75rem;
        right: 0.75rem;
        top: calc(100% + 0.6rem);
        display: none;
        flex-direction: column;
        gap: 0.35rem;
        padding: 0.6rem;
        backdrop-filter: blur(12px);
        background: rgb(6, 32, 47);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }

    .jirlee-toggle[aria-expanded="true"] + .jirlee-links {
        display: flex;
    }
}


/* ====== Tablet ====== */
@media (min-width: 801px) and (max-width: 1200px) {
    .jirlee-toggle {
        display: none; 
    }

    .jirlee-links {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        position: relative;
        background: none;
        box-shadow: none;
        backdrop-filter: none;
    }
}










/*
form Aout */
:root {
    --bg: #0a0a0a; /* dark page background */
    --glass-bg: rgba(0,0,0,0.35); /* black glass effect */
    --text-color: #eee;
    --muted-color: #888;
    --primary-color: cyan;
    --accent-color: rgb(238, 238, 238);
    --radius: 16px;
    --shadow: 0 8px 32px rgba(0,0,0,0.6);
}

/*body {
    background: var(--bg);
    font-family: 'Segoe UI', sans-serif;
    color: var(--text-color);
    margin: 0;
    line-height: 1.6;
}*/

/* Glass Card */
.jirlee-glass-section {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 30px auto;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

    .jirlee-glass-section:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(0,255,255,.4);
    }

    .jirlee-glass-section h1, .jirlee-glass-section h2 {
        color: var(--primary-color);
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .jirlee-glass-section h1 {
        font-size: clamp(1.6rem, 4vw, 2rem);
        text-align: center;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .jirlee-glass-section h2 {
        font-size: clamp(1.2rem, 3vw, 1.5rem);
        margin-top: 20px;
    }

.jirlee-subtitle {
    color: var(--muted-color);
    text-align: center;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    margin-bottom: 20px;
}

.jirlee-text-content p {
    margin-bottom: 16px;
    color: var(--text-color);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.jirlee-text-content strong {
    color: var(--accent-color);
    font-weight: 700;
}

.jirlee-line-divider {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.3;
    margin: 20px 0;
    border-radius: 4px;
}

/* Micro Animations */
.jirlee-text-content p {
    transform: translateY(0);
    animation: jirlee-fadeInUp 0.8s ease forwards;
    opacity: 0;
}

@keyframes jirlee-fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 500px) {
    .jirlee-glass-section {
        padding: 20px;
    }

        .jirlee-glass-section h1 {
            font-size: 1.5rem;
        }

        .jirlee-glass-section h2 {
            font-size: 1.2rem;
        }
}

/* Subtle glow behind card */
.jirlee-glass-section::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.02);
    z-index: -1;
}

















/*           ---------------------------------------------------------------------------------------------------------------
                 Recording 

             ---------------------------------------------------------------------------------------------------------------
*/
/* ====== VARIABLES ====== */
:root {
    --bg: #0a0a0a;
    --glass-bg: rgba(0,0,0,0.35);
    --text-color: #eee;
    --muted-color: #888;
    --primary-color: cyan;
    --accent-color: rgb(238, 238, 238);
    --radius: 16px;
    --shadow: 0 8px 32px rgba(0,0,0,0.6);
}

/* ====== CONTAINER ====== */
.jirlee-container {
    display: flex;
    justify-content: center;
    padding: 2rem;
    min-height: 100vh;
    background: var(--bg);
}

/* ====== AUDIO CARD ====== */
.jirlee-audio-card {
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 850px;
    width: 100%;
    padding: 2rem;
    animation: fadeIn 0.7s ease;
    overflow: hidden;
    position: relative;
    color: var(--text-color);
}

    .jirlee-audio-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: var(--radius);
        background: rgba(255,255,255,0.02);
        z-index: -1;
    }

    /* ====== TITLE ====== */
    .jirlee-audio-card h1 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1.5rem;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* ====== FORM ELEMENTS ====== */
.jirlee-form-group {
    margin-bottom: 1rem;
}

.jirlee-select,
.jirlee-input {
    width: 100%;
    padding: 0.8rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

    .jirlee-select:focus,
    .jirlee-input:focus {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 8px var(--primary-color);
    }

/* ====== DISPLAY TEXT ====== */
.jirlee-display-text {
    font-size: 1.2rem;
    padding: 1rem;
    text-align: center;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    margin: 1rem 0;
}

.protected-text {
    user-select: none;
}

/* ====== BUTTONS ====== */
.jirlee-btn-main,
.jirlee-btn-change,
.jirlee-btn-option,
.jirlee-btn-upload {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #000;
    border: none;
    border-radius: var(--radius);
    padding: 0.7rem 1.2rem;
    margin: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.4s ease;
}

    .jirlee-btn-main:hover,
    .jirlee-btn-change:hover,
    .jirlee-btn-upload:hover,
    .jirlee-btn-option:hover {
        transform: translateY(-2px);
        filter: brightness(1.15);
    }

    .jirlee-btn-main:disabled,
    .jirlee-btn-change:disabled,
    .jirlee-btn-upload:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

.jirlee-btn-circle {
    border-radius: 50%;
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

/* ====== MICROPHONE ACTIVE ANIMATION ====== */
.jirlee-start.active::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.7);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), 0 0 25px rgba(255, 255, 255, 0.3);
    animation: pulse-ring 1.5s infinite;
    z-index: -1;
}

.jirlee-start.active::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    animation: pulse-ring-inner 1.2s infinite;
    z-index: -1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
}

@keyframes pulse-ring-inner {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

/* ====== VOICE VISUALIZER ====== */
.jirlee-voice-visualizer {
    margin: 1.5rem 0;
    text-align: center;
}

.jirlee-volume-bars {
    display: flex;
    gap: 4px;
    height: 60px;
    justify-content: center;
    align-items: flex-end;
}

.jirlee-bar {
    width: 6px;
    background: linear-gradient(to top, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    animation: pulse 1.2s infinite ease-in-out alternate;
}

.jirlee-record-time {
    font-size: 1rem;
    margin-top: 0.8rem;
    color: var(--primary-color);
}

.jirlee-status-message {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.3rem;
    text-align: center;
}

    .jirlee-status-message a {
        color: var(--primary-color);
        text-decoration: underline;
        font-weight: 600;
        transition: color 0.3s ease, text-shadow 0.3s ease;
    }

        .jirlee-status-message a:hover {
            color: var(--accent-color);
            text-shadow: 0 0 5px var(--primary-color);
        }

/* ====== SETTINGS ====== */
.jirlee-settings {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
}

.jirlee-setting-group {
    margin-bottom: 1.2rem;
}

.jirlee-btn-group {
    display: flex;
    gap: 10px;
}

.jirlee-btn-option.active {
    background: var(--primary-color);
    color: #000;
}

/* ====== PLAYBACK ====== */
.jirlee-audio-player {
    position: relative;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .jirlee-audio-player audio {
        width: 100%;
        border-radius: 12px;
        outline: none;
        display: none; 
    }

.custom-controls {
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 0.5rem;
    gap: 10px;
}

.play-btn {
    background: linear-gradient(135deg, cyan, #eee);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

    .play-btn:hover {
        transform: scale(1.1);
    }

.progress-container {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, cyan, #eee);
    border-radius: 4px;
}





/* ====== RESPONSIVE ====== */
@media (max-width: 600px) {
    .jirlee-audio-card {
        padding: 1.2rem;
    }

    .jirlee-btn-main,
    .jirlee-btn-change,
    .jirlee-btn-upload {
        width: 100%;
        margin: 0.5rem 0;
    }
}

/* ====== ANIMATIONS ====== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

@keyframes pulse {
    from {
        height: 10%;
    }

    to {
        height: 100%;
    }
}


.jirlee-status-message {
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    background: rgba(0, 255, 255, 0.05);
    color: var(--accent-color);
    box-shadow: 0 0 8px rgba(0,255,255,0.2);
    transition: all 0.3s ease;
}

 
    .jirlee-status-message.success {
        color: #0f0;
        background: rgba(0,255,0,0.1);
        box-shadow: 0 0 8px rgba(0,255,0,0.4);
    }


    .jirlee-status-message.error {
        color: #f33;
        background: rgba(255,0,0,0.1);
        box-shadow: 0 0 8px rgba(255,0,0,0.4);
    }

 
    .jirlee-status-message a {
        color: var(--primary-color);
        text-decoration: underline;
        font-weight: 600;
        transition: color 0.3s ease, text-shadow 0.3s ease;
    }

        .jirlee-status-message a:hover {
            color: var(--accent-color);
            text-shadow: 0 0 5px var(--primary-color);
        }



/*-------------------------------------------------------------------------------------------------------------------------------------*/








/*
------------------------------------------------------------------------------------------------------------------

                          start-Contact
------------------------------------------------------------------------------------------------------------------*/
/* ====== VARIABLES ====== */
:root {
    --bg: #0a0a0a;
    --glass-bg: rgba(255, 255, 255, 0.07);
    --text-color: #f1f1f1;
    --muted-color: #aaa;
    --primary-color: cyan;
    --accent-color: #ffffff;
    --radius: 16px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ====== HERO SECTION ====== */
.Jirlee_contct-hero {
    background: var(--glass-bg);
/*    backdrop-filter: blur(14px);*/
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius);

    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 1rem;
    color: var(--text-color);
}

/* ====== CONTAINER ====== */
.Jirlee_contct-container {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

/* ====== TITLES ====== */
.Jirlee_contct-title {
    font-size: 2.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.Jirlee_contct-subtitle {
    color: var(--muted-color);
    margin-bottom: 2rem;
}

.Jirlee_contct-section-title {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ====== FORM CARD ====== */
.Jirlee_contct-form-card {
    background: var(--glass-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    backdrop-filter: blur(14px);
    margin-bottom: 3rem;
}

.Jirlee_contct-form-group {
    margin-bottom: 1rem;
}

.Jirlee_contct-input {
    width: 100%;
    padding: 0.9rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    color: var(--text-color);
    transition: 0.3s;
}

    .Jirlee_contct-input:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 8px var(--primary-color);
        outline: none;
    }

.Jirlee_contct-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #000;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-top: 1rem;
}

    .Jirlee_contct-btn:hover {
        transform: translateY(-3px);
    }


/* ====== TOAST MESSAGE ====== */
.Jirlee_contct-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--glass-bg);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    color: var(--text-color);
    box-shadow: var(--shadow);
    animation: fadeIn 0.7s ease;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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


/*
------------------------------------------------------------------------------------------------------------------

                          End-Contact
------------------------------------------------------------------------------------------------------------------*/












/*
------------------------------------------------------------------------------------------------------------------

                          Start-language selector
------------------------------------------------------------------------------------------------------------------*/


.language-glass-card {
    border-radius: 20px;
    isolation: isolate;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  /*  border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);*/
    transition: all 0.4s ease-in-out;
    padding: 0.3rem 0.6rem;
    width: fit-content;
}

/* ===== Language Links ===== */
.language-links {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

    .language-links a {
        text-decoration: none;
        padding: 0.35rem 0.75rem; 
        border-radius: 12px;
        font-weight: 600;
        color: white;
        transition: all 0.3s ease;
        background: rgba(255,255,255,0.1);
        display: block;
        text-align: center;
    }

        .language-links a:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-1px);
        }

.language-selected {
    cursor: pointer;
}

.language-dropdown {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 0.25rem 0;
    z-index: 10;
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {
    .language-links {
        width: 100px; 
    }

    .language-dropdown a {
        font-size: 0.9rem;
    }
}


/*
------------------------------------------------------------------------------------------------------------------

                          END-language selector
------------------------------------------------------------------------------------------------------------------*/
