@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&family=Playfair+Display:wght@400;700;900&display=swap');

:root {
    /* Default Dark Theme (Sample style) */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --accent: #ff2e2e;
    --accent-glow: rgba(255, 46, 46, 0.4);
    --gold: #d4af37;
    --text-main: #ffffff;
    --text-muted: #aaaaaa;
    --card-bg: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
    --hero-overlay: rgba(0, 0, 0, 0.4); /* Reduced from 0.7 */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.theme-pink {
    --bg-primary: #fdf2f5;
    --bg-secondary: #fffbfc;
    --accent: #d63384;
    --accent-glow: rgba(214, 51, 132, 0.3);
    --gold: #8c415e;
    --text-main: #2b0c1a; /* Darker for better contrast */
    --text-muted: #5a3d48; /* Darker for better contrast */
    --card-bg: rgba(255, 255, 255, 0.6); /* Slightly more opaque for readability */
    --border: rgba(214, 51, 132, 0.4);
    --hero-overlay: rgba(253, 242, 245, 0.35);
}

body.theme-white {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f8f8;
    --accent: #000000;
    --accent-glow: rgba(0, 0, 0, 0.2);
    --gold: #444444;
    --text-main: #000000; /* Pure black for max contrast */
    --text-muted: #444444; /* Darker for better contrast */
    --card-bg: rgba(255, 255, 255, 0.7); /* Slightly more opaque for readability */
    --border: rgba(0, 0, 0, 0.15);
    --hero-overlay: rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212; /* Gray area outside phone */
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

#app-container {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-primary);
    min-height: 100vh;
    box-shadow: 0 0 100px rgba(0,0,0,0.5);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

#bg-mosaic {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 100%;
    background: url('image/bg_mosaic_master.png');
    background-size: cover;
    background-position: center;
    opacity: 0.45; /* Increased from 0.3 */
    filter: contrast(1.2); /* Added contrast */
    pointer-events: none;
    z-index: 1;
}

#hero {
    position: relative;
    z-index: 20; /* Ensure hero is above mosaic */
    background-color: var(--bg-primary); /* Add solid background to block mosaic */
}

.mosaic-tile {
    display: none; /* Hide old tiles */
}

body.theme-pink #bg-mosaic { opacity: 0.4; filter: contrast(1.1); }
body.theme-white #bg-mosaic { opacity: 0.35; filter: contrast(1.1); }

h1, h2, h3, .playfair {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    padding: 0 20px;
}

.section {
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.bg-secondary-theme {
    background: var(--card-bg);
    backdrop-filter: blur(5px);
}

.center { text-align: center; }

/* Theme Switcher */
.theme-switcher {
    position: fixed;
    bottom: 20px;
    right: 50%;
    transform: translateX(240px); /* Move outside phone container */
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2000;
}

@media (max-width: 600px) {
    .theme-switcher {
        right: 10px;
        transform: none;
    }
}

.theme-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.theme-btn:hover { transform: scale(1.1); }
.btn-dark { background: #000; }
.btn-pink { background: #e08ead; }
.btn-white { background: #fff; }

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: 1px;
}

.mobile-menu-btn {
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
}

/* Header Right — объединяет переключатель языков и иконки мессенджеров */
.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Переключатель языков */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 4px 10px;
    backdrop-filter: blur(8px);
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    padding: 2px 4px;
    border-radius: 10px;
    transition: var(--transition);
}

.lang-btn.active {
    color: var(--accent);
}

.lang-btn:hover {
    color: var(--text-main);
}

.lang-divider {
    color: var(--border);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Тёмная тема — чуть светлее фон */
body.theme-dark .lang-switcher {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

/* Розовая тема */
body.theme-pink .lang-switcher {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(214, 51, 132, 0.3);
}

/* Белая тема */
body.theme-white .lang-switcher {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.15);
}

/* Swiper Custom */
.swiper-button-next, .swiper-button-prev {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transform: scale(0.7);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

/* Reviews Styling */
.reviews-container {
    padding-bottom: 40px;
}

.review-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    margin: 10px;
    height: auto;
    text-align: center;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.review-info h4 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 2px;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
}

.review-card p {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Gallery Section */
#hero {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
    color: #fff;
    transition: background-image 0.5s ease-in-out;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 15vh;
}

body.theme-dark #hero { background-image: url('image/hero_dark_mafia.png'); }
body.theme-pink #hero { background-image: url('image/hero_pink_mafia.png'); color: var(--text-main); }
body.theme-white #hero { background-image: url('image/hero_white.png'); color: var(--text-main); }

#hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--hero-overlay);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9), 0 2px 5px rgba(0, 0, 0, 0.7);
}

body.theme-pink .hero-content, body.theme-white .hero-content {
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.9), 0 2px 5px rgba(255, 255, 255, 0.7);
}

.hero-tagline {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 600;
}

body.theme-pink .hero-tagline,
body.theme-white .hero-tagline {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 6px;
    display: inline-block;
    text-shadow: none;
    color: var(--accent);
    font-weight: 700;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 300px;
    margin: 0 0 30px 0;
}

body.theme-pink .hero-subtitle,
body.theme-white .hero-subtitle {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    padding: 12px 16px;
    border-radius: 10px;
    display: inline-block;
    text-shadow: none;
    color: var(--text-main);
    font-weight: 600;
}

.btn-main {
    display: inline-block;
    padding: 18px 35px;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background: #e5c05b;
}

#app-container {
    /* Mosaic Background */
}
#bg-mosaic {
    /* Background Decorations */
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 20;
}

.info-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    text-align: center;
}

.info-card h4 {
    color: var(--accent);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.info-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Section Titles */
.section-title {
    margin-bottom: 20px;
    text-align: center;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title .line {
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto;
}

/* Lead Section */
.lead-content {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid var(--border);
    margin-top: 20px;
}

.video-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.video-container video {
    width: 100%;
    display: block;
}

.lead-text {
    text-align: center;
}

.lead-text h3 {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.lead-text p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.lead-features {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.lead-features li {
    font-size: 0.85rem;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.lead-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Format Cards */
.format-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.format-img {
    height: 200px;
    overflow: hidden;
}

.format-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.format-card:hover .format-img img {
    transform: scale(1.1);
}

.format-info {
    padding: 25px 20px;
    text-align: center;
}

.format-info h3 {
    margin-bottom: 10px;
    color: var(--accent);
}

.format-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Format Grid — сетка пунктов в стиле карточки */
.format-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.format-item {
    padding: 16px 10px;
    border-bottom: 1px solid var(--border);
}

.format-item:last-child {
    border-bottom: none;
}

.format-item-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
    line-height: 1.3;
    text-align: center;
    letter-spacing: 0.3px;
}

.format-item-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
    font-weight: 500;
}

/* Тёмная тема — карточка непрозрачнее, текст ярче */
body.theme-dark .format-info {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
}

body.theme-dark .format-item-title {
    color: #ff4444;
    text-shadow: 0 1px 6px rgba(255, 46, 46, 0.4);
}

body.theme-dark .format-item-desc {
    color: #cccccc;
}

body.theme-dark .format-item {
    border-bottom-color: rgba(255, 255, 255, 0.12);
}

/* Розовая тема — тёмный чёткий текст на светлом фоне */
body.theme-pink .format-info {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
}

body.theme-pink .format-item-title {
    color: #b5226e;
}

body.theme-pink .format-item-desc {
    color: #3d1a2c;
}

body.theme-pink .format-item {
    border-bottom-color: rgba(180, 34, 110, 0.2);
}

/* Скрыть взрослые пункты в детской (розовой) теме */
body.theme-pink .format-item.adult-only {
    display: none;
}

/* Белая тема — чёрный жирный текст */
body.theme-white .format-info {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}

body.theme-white .format-item-title {
    color: #111111;
}

body.theme-white .format-item-desc {
    color: #333333;
}

body.theme-white .format-item {
    border-bottom-color: rgba(0, 0, 0, 0.12);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-item {
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--accent);
    text-align: center;
}

.benefit-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Pricing */
.pricing-section {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    border: 1px solid var(--accent);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

body.theme-pink .pricing-section, body.theme-white .pricing-section {
    color: var(--text-main);
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.price-old {
    font-size: 2.2rem; /* Increased from 1.5rem */
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
    font-weight: 600;
}

.price-old span { font-size: 0.9rem; }

.price-box {
    margin-bottom: 5px;
}

#price-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    color: #ffd700;
    text-align: center;
    max-width: 100%;
    margin: 10px auto 20px auto;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.promo-timer {
    margin: 30px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--border);
}

.timer-label {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-blocks {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.timer-block {
    background: var(--bg-secondary);
    padding: 10px;
    border-radius: 8px;
    min-width: 60px;
    border: 1px solid var(--border);
}

.timer-block span {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
}

.timer-block small {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.booking-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}

.booking-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.booking-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px var(--accent-glow);
}

.booking-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

body.theme-pink .booking-input, body.theme-white .booking-input {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

body.theme-pink .booking-input:focus, body.theme-white .booking-input:focus {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--accent);
}

.booking-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.5);
    border-radius: 15px;
    padding: 30px 20px;
    margin-top: 20px;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #10B981;
    color: white;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.booking-success h3 {
    color: #10B981;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.booking-success p {
    color: var(--text-main);
    font-size: 0.95rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.price-val {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.price-currency {
    font-size: 1.2rem;
    color: var(--text-main);
}

/* Gallery */
.gallery-container {
    padding: 40px 0;
}

.gallery-item {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

/* Map Section */
.map-wrapper {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    padding: 15px;
    border-radius: 25px;
    border: 1px solid var(--border);
    margin-top: 20px;
}

.map-address {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 60px 0;
    background: #050505;
    color: #888;
    text-align: center;
    font-size: 0.8rem;
}

.footer-logo {
    margin-bottom: 20px;
}

/* Animations */
[data-aos] {
    transition-duration: 800ms !important;
}

/* Header Messengers */
.header-messengers {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-msg-img {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.header-msg-img:hover {
    transform: scale(1.1);
}
.header-msg-img img {
    height: 32px;
    object-fit: contain;
}

/* Online Widget */
.online-widget {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-230px);
    background: #fff;
    border-radius: 20px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 2000;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

@media (max-width: 600px) {
    .online-widget {
        left: 10px;
        transform: none;
    }
}

.online-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.online-dot {
    width: 12px;
    height: 12px;
    background-color: #10B981;
    border-radius: 50%;
    position: relative;
}

.online-dot::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

.online-text {
    color: #10B981;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
}

/* Messenger Modal */
.messenger-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.messenger-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.messenger-modal {
    background: var(--bg-primary);
    width: 90%;
    max-width: 350px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition);
    border: 1px solid var(--border);
    text-align: center;
}

.messenger-modal-overlay.active .messenger-modal {
    transform: translateY(0);
}

.messenger-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.messenger-modal-close:hover {
    color: var(--accent);
}

.messenger-modal-title {
    margin-bottom: 5px;
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
}

.messenger-modal-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.messenger-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.messenger-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: var(--transition);
    background: var(--card-bg);
    border: 1px solid var(--border);
}

.messenger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.1);
}

.msg-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}
