/* Teo Website - Completely Isolated Styles */
/* No global reset, no generic classes, everything scoped */

/* CSS Variables - Scoped to body only */
html {
    font-size: 16px;
}

/* Skip to main content link - Accessibility */
.teo-skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--teo-primary-pink);
    color: var(--teo-white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    z-index: 10001;
    font-weight: 600;
    border-radius: 0 0 5px 0;
    transition: top 0.3s ease;
}

.teo-skip-link:focus {
    top: 0;
    outline: 2px solid var(--teo-gold);
    outline-offset: 2px;
}

html.teo-page {
    --teo-primary-pink: #f4a5c7;
    --teo-soft-pink: #f8c8d8;
    --teo-cream: #fef5e7;
    --teo-gold: #d4af37;
    --teo-warm-gold: #e8c547;
    --teo-dark-text: #1a1a1a;
    --teo-medium-text: #4a4a4a;
    --teo-light-bg: #0a0a0a;
    --teo-white: #ffffff;
    --teo-glass-bg: rgba(255, 255, 255, 0.1);
    --teo-glass-border: rgba(255, 255, 255, 0.2);
    --teo-shadow: rgba(244, 165, 199, 0.3);
    --teo-shadow-hover: rgba(244, 165, 199, 0.5);
    --teo-glow-pink: rgba(244, 165, 199, 0.4);
    --teo-glow-gold: rgba(232, 197, 71, 0.4);
}

/* Body - Isolated */
html.teo-page body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--teo-dark-text);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f1a 50%, #0a0a0a 100%);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    padding-bottom: 70px; /* Spațiu pentru bottom nav - IMPLEMENTARE IZOLATĂ */
}

/* Animated Background - Isolated */
.teo-bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.teo-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: teo-blob-float 20s infinite ease-in-out;
    margin: 0;
    padding: 0;
}

.teo-bg-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--teo-primary-pink), transparent);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.teo-bg-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--teo-gold), transparent);
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.teo-bg-blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--teo-soft-pink), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes teo-blob-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Header - Isolated */
.teo-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--teo-glass-border);
    z-index: 1000;
    padding: 0;
    margin: 0;
}

.teo-nav {
    padding: 0;
    margin: 0;
}

.teo-nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.05rem 1.4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.teo-logo {
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
}

.teo-logo-text {
    background: linear-gradient(135deg, var(--teo-primary-pink), var(--teo-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.teo-logo-emoji {
    color: var(--teo-gold);
    display: inline-block;
    -webkit-text-fill-color: var(--teo-gold);
    filter: drop-shadow(0 0 5px rgba(232, 197, 71, 0.5));
    margin-left: 0.4rem; /* IMPLEMENTARE IZOLATĂ - spațiere între text și emoji-uri */
}

.teo-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px var(--teo-glow-pink));
}

/* Language Toggle - Isolated */
.teo-lang-toggle {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.teo-lang-btn {
    background: var(--teo-glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--teo-glass-border);
    border-radius: 30px;
    padding: 0.42rem 0.84rem;
    cursor: pointer;
    font-size: 0.63rem;
    font-weight: 600;
    color: var(--teo-white);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    font-family: inherit;
}

.teo-lang-flag {
    width: 14px;
    height: 11px;
    object-fit: cover;
    border-radius: 2px;
    margin: 0;
    padding: 0;
    display: block;
    transition: all 0.3s ease;
}

.teo-lang-flag-active {
    opacity: 1;
    filter: brightness(1.1);
}

.teo-lang-flag-inactive {
    opacity: 0.5;
    filter: brightness(0.7);
}

.teo-lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--teo-primary-pink);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--teo-shadow);
}

.teo-lang-active {
    color: var(--teo-primary-pink);
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.teo-lang-inactive {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    padding: 0;
}

.teo-lang-separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0.3rem;
    padding: 0;
}

/* Hero Profile Section - Isolated */
.teo-hero-profile {
    margin-top: 100px;
    padding: 6rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

.teo-hero-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.teo-profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.teo-profile-image-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0;
    padding: 0;
}

.teo-profile-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--teo-glow-pink), transparent);
    border-radius: 50%;
    animation: teo-pulse-glow 3s infinite ease-in-out;
    z-index: 0;
    margin: 0;
    padding: 0;
}

.teo-profile-image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--teo-white);
    box-shadow: 0 0 40px var(--teo-glow-pink), 0 0 80px var(--teo-glow-gold);
    z-index: 1;
    animation: teo-float-image 6s infinite ease-in-out;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(1) contrast(1.05) saturate(1.1);
    margin: 0;
    padding: 0;
    display: block;
}

.teo-profile-image:hover {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
    box-shadow: 0 0 60px var(--teo-glow-pink), 0 0 120px var(--teo-glow-gold);
}

.teo-profile-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    border: 2px solid var(--teo-primary-pink);
    border-radius: 50%;
    opacity: 0.5;
    animation: teo-rotate-ring 20s linear infinite;
    margin: 0;
    padding: 0;
}

@keyframes teo-pulse-glow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

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

@keyframes teo-rotate-ring {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.teo-profile-info {
    text-align: center;
    margin: 0;
    padding: 0;
}

.teo-profile-name {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teo-primary-pink), var(--teo-gold), var(--teo-primary-pink));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem;
    padding: 0;
    letter-spacing: -2px;
    animation: teo-fade-in-up 0.8s ease, teo-gradient-shift 3s ease infinite;
}

.teo-profile-title {
    font-size: 1.5rem;
    color: var(--teo-white);
    margin: 0 0 0.5rem;
    padding: 0;
    font-weight: 500;
    opacity: 0.9;
    animation: teo-fade-in-up 0.8s ease 0.2s both;
}

.teo-profile-location {
    font-size: 1.1rem;
    color: var(--teo-white);
    margin: 0 0 1.5rem;
    padding: 0;
    opacity: 0.7;
    animation: teo-fade-in-up 0.8s ease 0.4s both;
}

.teo-coffee-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    color: var(--teo-white);
    transition: all 0.3s ease;
    margin: 0;
    animation: teo-fade-in-up 0.8s ease 0.6s both;
}

.teo-coffee-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--teo-primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--teo-shadow);
}

.teo-coffee-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin: 0;
    padding: 0;
    display: block;
}

.teo-coffee-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--teo-white);
    margin: 0;
    padding: 0;
}

.teo-profile-description {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.teo-description-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    padding: 0;
    text-align: center;
    font-weight: 400;
    animation: teo-text-glow 3s ease-in-out infinite;
    opacity: 1;
    display: block;
    visibility: visible;
}

@keyframes teo-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes teo-gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes teo-text-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(244, 165, 199, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(244, 165, 199, 0.5), 0 0 30px rgba(232, 197, 71, 0.3);
    }
}

/* Bio Section - Isolated */
.teo-bio {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

.teo-bio-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.teo-bio-card {
    background: var(--teo-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--teo-glass-border);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin: 0;
}

.teo-bio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(244, 165, 199, 0.2);
    border-color: var(--teo-primary-pink);
}

.teo-bio-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teo-primary-pink), var(--teo-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 2rem;
    padding: 0;
    text-align: center;
}

.teo-bio-content {
    margin-top: 2rem;
    margin-bottom: 0;
    padding: 0;
}

.teo-bio-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--teo-white);
    margin: 0 0 1.8rem;
    padding: 0;
    text-align: left;
    opacity: 0.95;
    max-width: 100%;
    word-spacing: 0.05em;
    letter-spacing: 0.01em;
}

.teo-bio-text:last-child {
    margin-bottom: 0;
}

.teo-bio-quote {
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
    border-left: 3px solid var(--teo-primary-pink);
    padding-left: 1.5rem;
    margin-left: 0.5rem;
    position: relative;
}

.teo-bio-quote em {
    font-style: italic;
    color: var(--teo-gold);
    font-weight: 500;
}

.teo-bio-text-ro {
    display: block;
}

.teo-bio-text-en {
    display: none;
}

html.teo-page[lang="en"] .teo-bio-text-ro {
    display: none;
}

html.teo-page[lang="en"] .teo-bio-text-en {
    display: block;
}

.teo-flags-container {
    display: inline-block;
    margin: 0 0.2rem;
    vertical-align: middle;
}

.teo-flag-inline {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    margin: 0 0.1rem;
    padding: 0;
    display: inline-block;
    vertical-align: middle;
}

/* Social Links Section - Isolated */
.teo-social {
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

.teo-social-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.teo-social-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teo-primary-pink), var(--teo-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 3rem;
    padding: 0;
    text-align: center;
}

.teo-social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 0;
    padding: 0;
}

.teo-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: var(--teo-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--teo-glass-border);
    border-radius: 25px;
    text-decoration: none;
    color: var(--teo-white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin: 0;
}

.teo-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.teo-social-link:hover::before {
    left: 100%;
}

.teo-social-link:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 50px var(--teo-shadow-hover);
    border-color: var(--teo-primary-pink);
}

.teo-social-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    padding: 0;
}

.teo-social-icon {
    width: 40px;
    height: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    margin: 0;
    padding: 0;
    display: block;
}

.teo-social-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
}

.teo-social-link:hover .teo-social-icon {
    transform: scale(1.2) rotate(5deg);
}

.teo-social-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--teo-white);
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
}

.teo-social-tiktok .teo-social-icon {
    color: #ffffff;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.teo-social-instagram .teo-social-icon {
    color: #E4405F;
    filter: drop-shadow(0 0 10px rgba(228, 64, 95, 0.6));
}

.teo-social-x .teo-social-icon {
    color: #ffffff;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.teo-social-kofi .teo-social-icon {
    color: var(--teo-gold);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6));
}

.teo-social-fanvue .teo-social-icon {
    filter: drop-shadow(0 0 10px var(--teo-glow-pink));
}

/* IMPLEMENTARE IZOLATĂ - Revolut și Telegram */
.teo-social-revolut .teo-social-icon,
.teo-social-telegram .teo-social-icon {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

/* Gallery Section - Isolated */
.teo-gallery {
    padding: 5rem 2rem;
    position: relative;
    z-index: 1;
    margin: 0;
}

.teo-gallery-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.teo-gallery-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teo-primary-pink), var(--teo-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 4rem;
    padding: 0;
    text-align: center;
}

.teo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 0;
    padding: 0;
}

.teo-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1;
    background: var(--teo-glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--teo-glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 0;
    padding: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.teo-gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--teo-glow-pink), var(--teo-glow-gold));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.teo-gallery-item:hover::after {
    opacity: 0.2;
}

.teo-gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px var(--teo-shadow-hover);
    border-color: var(--teo-primary-pink);
}

.teo-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 0;
    margin: 0;
    padding: 0;
    display: block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.teo-gallery-item:hover .teo-gallery-image {
    transform: scale(1.15);
}

.teo-gallery-item-locked {
    cursor: default;
}

.teo-gallery-item-locked:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: var(--teo-glass-border);
}

.teo-gallery-item-locked .teo-gallery-image {
    filter: blur(15px);
    transform: scale(1.1);
}

.teo-gallery-item-locked:hover .teo-gallery-image {
    transform: scale(1.1);
}

.teo-gallery-lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    margin: 0;
    padding: 0;
    pointer-events: auto; /* Permite click-uri pe overlay */
}

.teo-gallery-lock-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--teo-white);
    transition: all 0.3s ease;
    margin: 0;
    padding: 1.5rem;
    pointer-events: auto; /* Asigură că link-ul primește click-uri */
    z-index: 3;
    position: relative;
    cursor: pointer;
}

.teo-gallery-lock-link:hover {
    transform: scale(1.05);
}

.teo-gallery-lock-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin: 0;
    padding: 0;
}

.teo-gallery-lock-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--teo-white);
    margin: 0;
    padding: 0;
}

.teo-gallery-lock-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--teo-white);
    text-align: center;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
}

.teo-gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--teo-soft-pink), var(--teo-cream));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teo-medium-text);
    font-size: 1rem;
    text-align: center;
    padding: 2rem;
    margin: 0;
}

/* Lightbox - Isolated */
.teo-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: teo-fade-in 0.3s ease;
    margin: 0;
    padding: 0;
}

.teo-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.teo-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: teo-scale-in 0.3s ease;
    margin: 0;
    padding: 0;
}

.teo-lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 0;
    display: block;
}

.teo-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--teo-white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.teo-lightbox-close:hover {
    color: var(--teo-primary-pink);
    transform: scale(1.2);
}

@keyframes teo-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Footer - Isolated */
.teo-footer {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--teo-glass-border);
    color: var(--teo-white);
    padding: 3rem 2rem 2rem;
    margin-top: 6rem;
    position: relative;
    z-index: 1;
}

.teo-footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.teo-footer-email {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.teo-footer-email-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 0.8rem;
    padding: 0;
    font-weight: 400;
}

.teo-footer-email-link {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--teo-white);
    text-decoration: none;
    background: linear-gradient(135deg, var(--teo-primary-pink), var(--teo-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
    margin: 0;
    padding: 0;
}

.teo-footer-email-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teo-primary-pink), var(--teo-gold));
    transition: width 0.3s ease;
    margin: 0;
    padding: 0;
}

.teo-footer-email-link:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 10px var(--teo-glow-pink));
}

.teo-footer-email-link:hover::after {
    width: 100%;
}

.teo-footer-links {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0;
}

.teo-footer-link {
    color: var(--teo-white);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    opacity: 0.8;
    margin: 0;
    padding: 0;
}

.teo-footer-link:hover {
    color: var(--teo-primary-pink);
    opacity: 1;
    transform: translateY(-2px);
}

.teo-footer-separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
    padding: 0;
}

.teo-footer-copyright {
    margin: 0;
    padding: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Custom Cursor - Isolated (Desktop only) */
.teo-cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--teo-primary-pink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0;
    box-shadow: 0 0 20px var(--teo-glow-pink);
    margin: 0;
    padding: 0;
}

.teo-cursor-dot.active {
    opacity: 1;
    transform: scale(1.5);
}

.teo-cursor-ring {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--teo-primary-pink);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    opacity: 0;
    margin: 0;
    padding: 0;
}

.teo-cursor-ring.active {
    opacity: 0.5;
}

/* Responsive Design - Isolated */
@media (max-width: 767px) {
    .teo-nav-wrapper {
        padding: 0.9rem 0.9rem;
        gap: 0.5rem;
    }

    .teo-logo {
        font-size: 1.04rem;
        white-space: nowrap;
    }
    
    .teo-logo-text {
        font-size: inherit;
    }
    
    .teo-logo-emoji {
        font-size: 0.9em;
    }

    .teo-lang-btn {
        padding: 0.4rem 0.62rem;
        font-size: 0.62rem;
        gap: 0.34rem;
    }
    
    .teo-lang-flag {
        width: 12px;
        height: 9px;
    }
    
    .teo-lang-active,
    .teo-lang-inactive {
        font-size: 0.82rem;
    }
    
    .teo-lang-separator {
        margin: 0 0.2rem;
    }

    .teo-hero-profile {
        padding: 4rem 1.5rem 3rem;
        margin-top: 88px;
    }

    .teo-profile-image-wrapper {
        width: 220px;
        height: 220px;
    }

    .teo-profile-name {
        font-size: 2.5rem;
    }

    .teo-profile-title {
        font-size: 1.2rem;
    }
    
    .teo-coffee-button {
        padding: 0.7rem 1.2rem;
        gap: 0.6rem;
    }
    
    .teo-coffee-logo {
        width: 20px;
        height: 20px;
    }
    
    .teo-coffee-text {
        font-size: 0.9rem;
    }

    .teo-profile-description {
        padding: 1.5rem;
    }

    .teo-description-text {
        font-size: 1rem;
    }

    .teo-bio {
        padding: 3rem 1.5rem;
    }

    .teo-bio-card {
        padding: 2.5rem 2rem;
    }

    .teo-bio-title {
        font-size: 2rem;
    }

    .teo-bio-text {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 1.5rem;
        line-height: 1.8;
    }
    
    .teo-bio-quote {
        padding-left: 1.2rem;
        margin-left: 0.3rem;
        font-size: 0.95rem;
    }

    .teo-social {
        padding: 2.5rem 1.5rem;
    }
    
    /* Bottom Nav - Responsive */
    .teo-bottom-nav {
        height: 65px;
    }
    
    .teo-bottom-nav-container {
        padding: 0.4rem 0.3rem;
    }
    
    .teo-bottom-nav-item {
        padding: 0.4rem 0.5rem;
        min-width: 50px;
    }
    
    .teo-bottom-nav-icon {
        width: 22px;
        height: 22px;
    }
    
    .teo-bottom-nav-icon svg,
    .teo-bottom-nav-icon-img {
        width: 22px;
        height: 22px;
        filter: grayscale(100%); /* IMPLEMENTARE IZOLATĂ - black and white pentru toate iconițele */
    }
    
    .teo-bottom-nav-label {
        font-size: 0.65rem;
    }
    
    html.teo-page body {
        padding-bottom: 65px;
    }
    
    .teo-scroll-top {
        bottom: 80px;
    }

    .teo-social-title,
    .teo-gallery-title {
        font-size: 2rem;
    }

    .teo-social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

    .teo-social-link {
        padding: 1.8rem 1.2rem;
    }

    .teo-gallery {
        padding: 3rem 1.5rem;
    }

    .teo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .teo-legal-page {
        padding: 100px 1.5rem 3rem;
    }
    
    .teo-legal-title {
        font-size: 2rem;
        margin: 0 0 2rem;
    }
    
    .teo-legal-section {
        margin: 0 0 2rem;
    }
    
    .teo-legal-section-title {
        font-size: 1.3rem;
    }
    
    .teo-legal-text {
        font-size: 0.95rem;
    }
    
    .teo-gallery-lock-icon {
        width: 40px;
        height: 40px;
    }
    
    .teo-gallery-lock-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .teo-gallery-lock-text {
        font-size: 0.9rem;
    }
    
    .teo-gallery-lock-link {
        padding: 1rem;
        gap: 0.8rem;
    }

    .teo-footer {
        padding: 2rem 1.5rem;
    }

    .teo-footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .teo-footer-separator {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .teo-profile-name {
        font-size: 3.5rem;
    }

    .teo-social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.3rem;
    }
    
    .teo-social-link {
        padding: 1.8rem 1.3rem;
    }
    
    /* Bottom Nav - Tablet */
    .teo-bottom-nav {
        height: 70px;
    }
    
    .teo-bottom-nav-item {
        min-width: 70px;
        padding: 0.5rem 0.7rem;
    }
    
    .teo-bottom-nav-label {
        font-size: 0.75rem;
    }
    
    html.teo-page body {
        padding-bottom: 70px;
    }
    
    .teo-scroll-top {
        bottom: 90px;
    }

    .teo-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1025px) {
    .teo-social-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 1.3rem;
    }
    
    .teo-social-link {
        padding: 1.8rem 1.2rem;
    }
    
    /* Bottom Nav - Desktop */
    .teo-bottom-nav {
        height: 75px;
    }
    
    .teo-bottom-nav-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0.6rem 1rem;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .teo-bottom-nav-item {
        min-width: 80px;
        padding: 0.6rem 1rem;
        flex: 0 1 auto;
    }
    
    .teo-bottom-nav-icon {
        width: 26px;
        height: 26px;
    }
    
    .teo-bottom-nav-icon svg,
    .teo-bottom-nav-icon-img {
        width: 26px;
        height: 26px;
        filter: grayscale(100%); /* IMPLEMENTARE IZOLATĂ - black and white pentru toate iconițele */
    }
    
    .teo-bottom-nav-label {
        font-size: 0.8rem;
    }
    
    html.teo-page body {
        padding-bottom: 75px;
    }
    
    .teo-scroll-top {
        bottom: 95px;
    }

    .teo-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Extra Small Devices - Very small screens (below 320px) - Completely Isolated */
@media (max-width: 320px) {
    .teo-nav-wrapper {
        padding: 0.72rem 0.45rem;
        gap: 0.3rem;
        flex-wrap: wrap;
    }

    .teo-logo {
        font-size: 0.84rem;
        white-space: nowrap;
    }
    
    .teo-logo-text {
        font-size: inherit;
    }
    
    .teo-logo-emoji {
        font-size: 0.85em;
    }

    .teo-lang-btn {
        padding: 0.31rem 0.43rem;
        font-size: 0.54rem;
        gap: 0.24rem;
    }
    
    .teo-lang-flag {
        width: 11px;
        height: 8px;
    }
    
    .teo-lang-active,
    .teo-lang-inactive {
        font-size: 0.56rem;
    }
    
    .teo-lang-separator {
        margin: 0 0.15rem;
    }

    .teo-hero-profile {
        padding: 3rem 0.8rem 2rem;
        margin-top: 78px;
    }

    .teo-profile-image-wrapper {
        width: 180px;
        height: 180px;
    }

    .teo-profile-name {
        font-size: 2rem;
    }

    .teo-profile-title {
        font-size: 1rem;
    }
    
    .teo-coffee-button {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }
    
    .teo-coffee-logo {
        width: 18px;
        height: 18px;
    }
    
    .teo-coffee-text {
        font-size: 0.85rem;
    }

    .teo-profile-description {
        padding: 1.2rem;
    }

    .teo-description-text {
        font-size: 0.9rem;
    }

    .teo-bio {
        padding: 2.5rem 0.8rem;
    }

    .teo-bio-card {
        padding: 2rem 1.2rem;
    }

    .teo-bio-title {
        font-size: 1.8rem;
    }

    .teo-bio-text {
        font-size: 0.95rem;
        margin-bottom: 1.3rem;
        line-height: 1.75;
    }
    
    .teo-bio-quote {
        padding-left: 1rem;
        margin-left: 0.2rem;
        font-size: 0.9rem;
    }

    .teo-social {
        padding: 2rem 0.8rem;
    }
    
    /* Bottom Nav - Extra Small */
    .teo-bottom-nav {
        height: 60px;
    }
    
    .teo-bottom-nav-container {
        padding: 0.3rem 0.2rem;
    }
    
    .teo-bottom-nav-item {
        padding: 0.3rem 0.4rem;
        min-width: 45px;
    }
    
    .teo-bottom-nav-icon {
        width: 20px;
        height: 20px;
    }
    
    .teo-bottom-nav-icon svg,
    .teo-bottom-nav-icon-img {
        width: 20px;
        height: 20px;
        filter: grayscale(100%); /* IMPLEMENTARE IZOLATĂ - black and white pentru toate iconițele */
    }
    
    .teo-bottom-nav-label {
        font-size: 0.6rem;
    }
    
    html.teo-page body {
        padding-bottom: 60px;
    }
    
    .teo-scroll-top {
        bottom: 75px;
        right: 1rem;
    }

    .teo-social-title,
    .teo-gallery-title {
        font-size: 1.8rem;
    }

    .teo-social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9rem;
    }

    .teo-social-link {
        padding: 1.3rem 0.9rem;
    }

    .teo-gallery {
        padding: 2.5rem 0.8rem;
    }

    .teo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .teo-gallery-lock-icon {
        width: 36px;
        height: 36px;
    }
    
    .teo-gallery-lock-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .teo-gallery-lock-text {
        font-size: 0.85rem;
    }
    
    .teo-gallery-lock-link {
        padding: 0.8rem;
        gap: 0.6rem;
    }
    
    .teo-gallery-item-locked .teo-gallery-image {
        filter: blur(12px);
    }

    .teo-footer {
        padding: 1.5rem 0.8rem;
    }

    .teo-footer-email-link {
        font-size: 1.1rem;
    }
    
    .teo-scroll-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
    }
    
    .teo-scroll-top-icon {
        width: 20px;
        height: 20px;
    }
}

/* ============================================
   POP-UP MODAL - 100% RESPONSIVE & ISOLATED
   ============================================ */

/* CSS Variables for Responsive Spacing */
:root {
    --popup-spacing-mobile: 16px;
    --popup-spacing-tablet: 24px;
    --popup-spacing-desktop: 32px;
    --popup-close-size: 44px;
}

/* Overlay - Full Screen with Proper Spacing */
.teo-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    margin: 0;
    padding: var(--popup-spacing-mobile);
    box-sizing: border-box;
    overflow-y: hidden;
    overflow-x: hidden;
}

.teo-popup-overlay.teo-popup-active {
    opacity: 1;
    visibility: visible;
}

/* Container - Responsive with Max Height & Scroll */
.teo-popup-container {
    position: relative;
    background: linear-gradient(135deg, rgba(244, 165, 199, 0.15), rgba(232, 197, 71, 0.1));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem 1.5rem 2rem;
    width: 100%;
    max-width: 500px;
    max-height: calc(100vh - 32px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: auto;
    text-align: center;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    /* Firefox scrollbar support */
    scrollbar-width: thin;
    scrollbar-color: var(--teo-primary-pink) rgba(255, 255, 255, 0.05);
}

/* Custom Scrollbar - Izolat pentru Pop-up */
.teo-popup-container::-webkit-scrollbar {
    width: 8px;
}

.teo-popup-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.teo-popup-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--teo-primary-pink), var(--teo-gold));
    border-radius: 10px;
    transition: background 0.3s ease;
}

.teo-popup-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--teo-gold), var(--teo-primary-pink));
}

.teo-popup-overlay.teo-popup-active .teo-popup-container {
    transform: scale(1) translateY(0);
}

/* Close Button - 44x44px Touch Target */
.teo-popup-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: var(--popup-close-size);
    height: var(--popup-close-size);
    min-width: var(--popup-close-size);
    min-height: var(--popup-close-size);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teo-white);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    font-family: inherit;
    z-index: 10;
    flex-shrink: 0;
}

.teo-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--teo-primary-pink);
    transform: rotate(90deg) scale(1.05);
}

.teo-popup-close:active {
    transform: rotate(90deg) scale(0.95);
}

/* Content Wrapper */
.teo-popup-content {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Profile Image */
.teo-popup-profile {
    margin: 0 0 1.5rem;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.teo-popup-profile-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(244, 165, 199, 0.4);
    margin: 0;
    padding: 0;
    display: block;
}

/* Title */
.teo-popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--teo-primary-pink), var(--teo-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem;
    padding: 0;
    line-height: 1.3;
}

/* Text Content */
.teo-popup-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.2px;
    line-height: 1.6;
    text-align: center;
    color: var(--teo-white);
    opacity: 0.95;
    margin: 0 0 1.5rem;
    padding: 0;
}

/* Buttons Container */
.teo-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Buttons - 44px Min Height for Touch */
.teo-popup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--teo-primary-pink), var(--teo-gold));
    border: none;
    border-radius: 25px;
    padding: 0.9rem 1.8rem;
    min-height: 44px;
    text-decoration: none;
    color: var(--teo-white);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(244, 165, 199, 0.4);
    margin: 0;
    font-family: inherit;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.teo-popup-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(244, 165, 199, 0.6);
    background: linear-gradient(135deg, var(--teo-gold), var(--teo-primary-pink));
}

.teo-popup-button:active {
    transform: translateY(-1px);
}

.teo-popup-button-coffee {
    background: linear-gradient(135deg, rgba(255, 221, 0, 0.9), rgba(255, 200, 0, 0.9));
    box-shadow: 0 8px 25px rgba(255, 221, 0, 0.4);
}

.teo-popup-button-coffee:hover {
    background: linear-gradient(135deg, rgba(255, 200, 0, 0.9), rgba(255, 221, 0, 0.9));
    box-shadow: 0 12px 35px rgba(255, 221, 0, 0.6);
}

/* Icons */
.teo-popup-coffee-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin: 0;
    padding: 0;
    display: block;
    flex-shrink: 0;
}

.teo-popup-lock-icon {
    width: 18px;
    height: 18px;
    fill: var(--teo-white);
    margin: 0;
    padding: 0;
    display: block;
    flex-shrink: 0;
}

.teo-popup-button-text {
    margin: 0;
    padding: 0;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* MOBILE PORTRAIT: 320px - 430px */
@media (max-width: 430px) {
    .teo-popup-overlay {
        padding: var(--popup-spacing-mobile);
    }
    
    .teo-popup-container {
        padding: 2.5rem 1.2rem 1.8rem;
        border-radius: 16px;
        max-height: calc(100vh - 32px);
    }
    
    .teo-popup-profile-image {
        width: 70px;
        height: 70px;
    }
    
    .teo-popup-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .teo-popup-text {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
    }
    
    .teo-popup-buttons {
        gap: 0.7rem;
    }
    
    .teo-popup-button {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .teo-popup-close {
        top: 0.4rem;
        right: 0.4rem;
    }
}

/* MOBILE LANDSCAPE: 568px - 932px width */
@media (min-width: 431px) and (max-width: 932px) and (max-height: 500px) {
    .teo-popup-overlay {
        padding: var(--popup-spacing-mobile);
    }
    
    .teo-popup-container {
        padding: 2rem 1.5rem;
        max-height: calc(100vh - 32px);
        max-width: 500px;
    }
    
    .teo-popup-profile-image {
        width: 60px;
        height: 60px;
    }
    
    .teo-popup-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .teo-popup-text {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
}

/* TABLET PORTRAIT: 768px - 834px */
@media (min-width: 768px) and (max-width: 834px) {
    .teo-popup-overlay {
        padding: var(--popup-spacing-tablet);
    }
    
    .teo-popup-container {
        padding: 3rem 2rem 2.5rem;
        max-height: calc(100vh - 48px);
        border-radius: 22px;
    }
    
    .teo-popup-profile-image {
        width: 90px;
        height: 90px;
    }
    
    .teo-popup-title {
        font-size: 1.7rem;
    }
    
    .teo-popup-text {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .teo-popup-button {
        max-width: 320px;
        font-size: 1.05rem;
    }
}

/* TABLET LANDSCAPE: 1024px - 1180px */
@media (min-width: 1024px) and (max-width: 1180px) {
    .teo-popup-overlay {
        padding: var(--popup-spacing-desktop);
    }
    
    .teo-popup-container {
        padding: 3.5rem 2.5rem 3rem;
        max-height: calc(100vh - 64px);
        border-radius: 25px;
    }
    
    .teo-popup-profile-image {
        width: 100px;
        height: 100px;
    }
    
    .teo-popup-title {
        font-size: 1.9rem;
    }
    
    .teo-popup-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    .teo-popup-button {
        max-width: 350px;
        font-size: 1.1rem;
    }
}

/* DESKTOP: 1280px+ */
@media (min-width: 1280px) {
    .teo-popup-overlay {
        padding: var(--popup-spacing-desktop);
    }
    
    .teo-popup-container {
        padding: 4rem 3rem 3.5rem;
        max-height: calc(100vh - 64px);
        border-radius: 25px;
    }
    
    .teo-popup-profile-image {
        width: 110px;
        height: 110px;
    }
    
    .teo-popup-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .teo-popup-text {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }
    
    .teo-popup-buttons {
        gap: 1rem;
    }
    
    .teo-popup-button {
        max-width: 300px;
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }
}

/* LARGE SCREENS: 1920px+ */
@media (min-width: 1920px) {
    .teo-popup-container {
        max-width: 550px;
    }
}

/* Legal Pages - Completely Isolated */
.teo-legal-page {
    min-height: 100vh;
    padding: 120px 2rem 4rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.teo-legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

.teo-legal-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--teo-primary-pink), var(--teo-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 3rem;
    padding: 0;
    text-align: center;
    line-height: 1.2;
}

.teo-legal-content {
    margin: 0;
    padding: 0;
}

.teo-legal-section {
    margin: 0 0 3rem;
    padding: 0;
}

.teo-legal-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--teo-white);
    margin: 0 0 1rem;
    padding: 0;
    line-height: 1.4;
}

.teo-legal-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    padding: 0;
    text-align: justify;
}

.teo-legal-back {
    margin: 4rem 0 0;
    padding: 0;
    text-align: center;
}

.teo-legal-back-link {
    display: inline-block;
    color: var(--teo-primary-pink);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
}

.teo-legal-back-link:hover {
    color: var(--teo-gold);
    transform: translateX(-5px);
}


/* Bottom Navigation Bar - Fixed (OLX Style) - IMPLEMENTARE IZOLATĂ */
.teo-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--teo-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--teo-glass-border);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
    z-index: 9995;
    margin: 0;
    padding: 0;
    height: 70px;
}

.teo-bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0.5rem 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.teo-bottom-nav-container::-webkit-scrollbar {
    display: none;
}

.teo-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    text-decoration: none;
    color: var(--teo-white);
    transition: all 0.3s ease;
    padding: 0.5rem 0.8rem;
    min-width: 60px;
    flex: 1;
    margin: 0;
    border-radius: 8px;
    opacity: 0.9;
}

.teo-bottom-nav-item:hover {
    background: rgba(244, 165, 199, 0.15);
    color: var(--teo-primary-pink);
    opacity: 1;
    transform: translateY(-2px);
}

.teo-bottom-nav-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.teo-bottom-nav-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin: 0;
    padding: 0;
    display: block;
    filter: grayscale(100%) brightness(1.2); /* IMPLEMENTARE IZOLATĂ - black and white cu brightness pentru tema dark */
}

.teo-bottom-nav-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin: 0;
    padding: 0;
    display: block;
    filter: grayscale(100%) brightness(1.2); /* IMPLEMENTARE IZOLATĂ - black and white cu brightness pentru tema dark */
}

.teo-bottom-nav-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: inherit;
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 1.2;
    opacity: 0.9;
}

.teo-bottom-nav-item:hover .teo-bottom-nav-label {
    opacity: 1;
    color: var(--teo-primary-pink);
}

/* Ajustare footer pentru bottom nav */
.teo-footer {
    margin-bottom: 0; /* Footer se termină înainte de bottom nav */
    padding-bottom: 2rem;
}

/* Analytics Consent Banner - Completely Isolated */
.teo-consent-banner {
    --teo-consent-side-gap: max(20px, env(safe-area-inset-left), env(safe-area-inset-right));
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 82px;
    width: min(520px, calc(100vw - (2 * var(--teo-consent-side-gap))));
    z-index: 9999; /* peste chat + scrollToTop, sub popup modal (10000) */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.55rem 0.7rem;
    background: rgba(12, 10, 18, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.teo-consent-banner-hidden {
    display: none;
}

.teo-consent-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.76rem;
    line-height: 1.25;
    white-space: nowrap;
}

.teo-consent-link {
    color: var(--teo-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.teo-consent-link:hover {
    color: var(--teo-primary-pink);
}

.teo-consent-actions {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

.teo-consent-btn {
    border: 1px solid var(--teo-glass-border);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.32rem 0.68rem;
    cursor: pointer;
    font-family: inherit;
}

.teo-consent-btn-accept {
    background: linear-gradient(135deg, var(--teo-primary-pink), var(--teo-gold));
    color: #111;
}

.teo-consent-btn-reject {
    background: rgba(255, 255, 255, 0.08);
    color: var(--teo-white);
}

@media (max-width: 767px) {
    .teo-consent-banner {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        bottom: 74px;
        --teo-consent-side-gap: max(22px, env(safe-area-inset-left), env(safe-area-inset-right));
        width: min(460px, calc(100vw - (2 * var(--teo-consent-side-gap))));
        padding: 0.5rem 0.6rem;
        border-radius: 14px;
    }
    .teo-consent-text {
        font-size: 0.7rem;
        white-space: normal;
        text-align: center;
    }
}

/* Live Chat Teaser - Completely Isolated */
.teo-chat-teaser {
    position: fixed;
    left: 1.2rem;
    bottom: 92px;
    width: min(320px, calc(100vw - 2.4rem));
    background: linear-gradient(135deg, rgba(244, 165, 199, 0.18), rgba(232, 197, 71, 0.14));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--teo-glass-border);
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    z-index: 9997;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    margin: 0;
    padding: 0.85rem 0.9rem 0.9rem;
    box-sizing: border-box;
}

.teo-chat-teaser.teo-chat-teaser-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.teo-chat-teaser-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--teo-white);
    margin: 0;
    padding: 0;
}

.teo-chat-teaser-avatar-wrap {
    position: relative;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.teo-chat-teaser-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 6px 18px rgba(244, 165, 199, 0.35);
    display: block;
}

.teo-chat-teaser-status-dot {
    position: absolute;
    right: 1px;
    bottom: 1px;
    width: 12px;
    height: 12px;
    background: #2ee07b;
    border: 2px solid #111;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(46, 224, 123, 0.7);
    animation: teoChatPulse 1.8s infinite;
}

@keyframes teoChatPulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 224, 123, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(46, 224, 123, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 224, 123, 0); }
}

.teo-chat-teaser-content {
    min-width: 0;
}

.teo-chat-teaser-title {
    margin: 0 0 0.2rem;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--teo-gold);
    line-height: 1.2;
}

.teo-chat-teaser-text {
    margin: 0 0 0.45rem;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.35;
}

.teo-chat-teaser-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #111;
    background: linear-gradient(135deg, var(--teo-primary-pink), var(--teo-gold));
    border-radius: 999px;
    padding: 0.32rem 0.7rem;
    box-shadow: 0 6px 16px rgba(244, 165, 199, 0.4);
}

.teo-chat-teaser-close {
    position: absolute;
    top: 0.25rem;
    right: 0.35rem;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 767px) {
    .teo-chat-teaser {
        left: 0.7rem;
        bottom: 88px; /* Gap vizibil față de bottom nav pe mobile */
        width: min(280px, calc(100vw - 1.4rem));
        padding: 0.75rem 0.8rem 0.8rem;
    }
    .teo-chat-teaser-avatar {
        width: 46px;
        height: 46px;
    }
    .teo-chat-teaser-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 420px) {
    .teo-chat-teaser {
        width: min(250px, calc(100vw - 1rem));
        left: 0.5rem;
        bottom: 86px; /* Evită efectul de "lipit" la 420/412px */
    }
}

/* Scroll to Top Button - Ajustat pentru bottom nav */
.teo-scroll-top {
    position: fixed;
    bottom: 90px; /* Deasupra bottom nav */
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teo-primary-pink), var(--teo-gold));
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9998;
    box-shadow: 0 8px 25px rgba(244, 165, 199, 0.4);
    margin: 0;
    padding: 0;
    border: none;
    font-family: inherit;
}

.teo-scroll-top.teo-scroll-top-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.teo-scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(244, 165, 199, 0.6);
    background: linear-gradient(135deg, var(--teo-gold), var(--teo-primary-pink));
}

.teo-scroll-top:active {
    transform: translateY(-2px);
}

.teo-scroll-top-icon {
    width: 24px;
    height: 24px;
    fill: var(--teo-white);
    margin: 0;
    padding: 0;
    display: block;
}
