/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f4f1e8 0%, #e8ddd4 50%, #d4c4a0 100%);
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    padding-top: 156px; /* Fixed header + nav height - EXACTLY like main page */
}

/* Typography - EXACTLY like main page */
.title-en, .section-en, .card-en, .nav-en, .btn-en, .footer-en, .logo-text-en,
.subtitle-en, .desc-en, .card-desc-en, .stat-en, .cta-en, .cta-desc-en,
.footer-desc-en, .link-en, .platform-desc-en, .contact-en, .copyright-en {
    font-family: 'Playfair Display', serif;
}

.title-bo, .section-bo, .card-bo, .nav-bo, .btn-bo, .footer-bo, .logo-text-bo,
.subtitle-bo, .desc-bo, .card-desc-bo, .stat-bo, .cta-bo, .cta-desc-bo,
.footer-desc-bo, .link-bo, .platform-desc-bo, .contact-bo, .copyright-bo {
    font-family: 'Noto Sans Tibetan', sans-serif;
}

/* Language Toggle - EXACTLY like main page */
body.tibetan .title-en,
body.tibetan .section-en,
body.tibetan .card-en,
body.tibetan .nav-en,
body.tibetan .btn-en,
body.tibetan .footer-en,
body.tibetan .subtitle-en,
body.tibetan .desc-en,
body.tibetan .card-desc-en,
body.tibetan .stat-en,
body.tibetan .cta-en,
body.tibetan .cta-desc-en,
body.tibetan .footer-desc-en,
body.tibetan .link-en,
body.tibetan .platform-desc-en,
body.tibetan .contact-en,
body.tibetan .copyright-en,
body.tibetan .logo-text-en {
    display: none;
}

body:not(.tibetan) .title-bo,
body:not(.tibetan) .section-bo,
body:not(.tibetan) .card-bo,
body:not(.tibetan) .nav-bo,
body:not(.tibetan) .btn-bo,
body:not(.tibetan) .footer-bo,
body:not(.tibetan) .subtitle-bo,
body:not(.tibetan) .desc-bo,
body:not(.tibetan) .card-desc-bo,
body:not(.tibetan) .stat-bo,
body:not(.tibetan) .cta-bo,
body:not(.tibetan) .cta-desc-bo,
body:not(.tibetan) .footer-desc-bo,
body:not(.tibetan) .link-bo,
body:not(.tibetan) .platform-desc-bo,
body:not(.tibetan) .contact-bo,
body:not(.tibetan) .copyright-bo,
body:not(.tibetan) .logo-text-bo {
    display: none;
}

/* Container - EXACTLY like main page */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Header with Logo, Title, and Language Button - EXACTLY like main page */
.top-header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    margin: 0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

/* Updated Logo Styles for Image - EXACTLY like main page */
.logo {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 5px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

/* Remove old icon styles */
.logo i {
    display: none;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.header-title {
    flex: 2;
    text-align: center;
}

.header-title h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.header-lang-section {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.header-lang-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.header-lang-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Navigation - EXACTLY like main page */
.nav-bottom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    margin: 0;
}

.nav-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(139, 69, 19, 0.2);
}

.nav-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-pills-desktop {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    justify-content: center;
    flex: 1;
}

.nav-pills-desktop li {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 12px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: block;
    font-size: 14px;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 100%);
    color: white;
    transform: translateY(-2px);
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.auth-buttons-pills {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

/* Hide old language button - EXACTLY like main page */
.lang-btn {
    display: none;
}

/* Hero Section - Updated for tangible page */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(139, 69, 19, 0.7), rgba(160, 82, 45, 0.7)), 
                url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.6), rgba(205, 133, 63, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #CD853F 0%, #DEB887 100%);
    color: #8B4513;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #DEB887 0%, #F5DEB3 100%);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0) rotate(45deg);
    }
    40% {
        transform: translateX(-50%) translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateX(-50%) translateY(-5px) rotate(45deg);
    }
}

/* All other sections remain the same as before, but add this for consistency */

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #8B4513;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section - EXACTLY like main page */
.features {
    background: linear-gradient(135deg, #f9f6f0 0%, #f0e6d2 100%);
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 69, 19, 0.15);
    border-color: #CD853F;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #8B4513;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Social Media Section - reused for content sections */
.social-media-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f6f0 0%, #f0e6d2 100%);
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.platform-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
    border-color: #CD853F;
}

.platform-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    color: white;
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 100%);
}

.platform-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #8B4513;
}

.platform-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #CD853F;
    font-style: italic;
}

.platform-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Heritage Images */
.heritage-image,
.artifact-image {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.heritage-image img,
.artifact-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.platform-card:hover .heritage-image img,
.platform-card:hover .artifact-image img,
.feature-card:hover .heritage-image img,
.feature-card:hover .artifact-image img {
    transform: scale(1.05);
}

/* Stats Section - EXACTLY like main page */
.stats {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    background-size: 50px 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
    margin: 0;
}

/* Gallery Section */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover,
.filter-btn.active {
    background: #CD853F;
    border-color: #CD853F;
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* CTA Section - EXACTLY like main page */
.cta-section {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50,10 L90,90 L10,90 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
    background-size: 80px 80px;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-section .cta-button {
    position: relative;
    z-index: 2;
}

/* Keep ALL the responsive design rules EXACTLY like main page */
@media (max-width: 1024px) {
    .nav-pills-desktop {
        gap: 20px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 13px;
    }
}

@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-item h3 {
        font-size: 2.5rem;
    }
    
    .logo {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 196px;
    }
    
    .top-header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo-section,
    .header-title,
    .header-lang-section {
        flex: none;
        width: 100%;
        justify-content: center;
    }
    
    .header-title h1 {
        font-size: 1.5rem;
    }
    
    .nav-bottom {
        top: 116px;
        padding: 10px 0;
    }
    
    .nav-bottom .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-pills-desktop {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .nav-right-group {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .hero {
        height: 100vh;
        padding-top: 0;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
    
    .social-platforms {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .logo {
        width: 45px;
        height: 45px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .top-header-content {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .platform-card {
        padding: 30px 20px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .nav-pills-desktop {
        gap: 8px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .stat-item {
        padding: 25px 15px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .logo {
        width: 40px;
        height: 40px;
        padding: 3px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
}

/* Keep all footer styles and other elements EXACTLY like main page */
/* Footer - EXACTLY like main page */
footer {
    background: linear-gradient(135deg, #2c1810 0%, #3d2317 50%, #4a2c1a 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4513 0%, #CD853F 50%, #DEB887 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-section {
    padding: 0 20px;
}

.footer-section:first-child {
    padding-left: 0;
}

.footer-section:last-child {
    padding-right: 0;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #CD853F;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: #CD853F;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 10px;
    color: #d4c4a0;
}

.footer-section a {
    color: #d4c4a0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: #CD853F;
}

.footer-section a i {
    font-size: 16px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #CD853F 0%, #DEB887 100%);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a2c1a;
    color: #a0896b;
    font-size: 0.9rem;
}

/* Floating Social - EXACTLY like main page */
.floating-social {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.social-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8B4513 0%, #CD853F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
}

.social-toggle:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #CD853F 0%, #DEB887 100%);
}

.social-buttons {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-social:hover .social-buttons {
    opacity: 1;
    visibility: visible;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-btn.instagram { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.social-btn.youtube { background: linear-gradient(135deg, #ff0000 0%, #ff4444 100%); }
.social-btn.twitter { background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%); }
.social-btn.email { background: linear-gradient(135deg, #8B4513 0%, #CD853F 100%); }

.social-btn:hover {
    transform: scale(1.1) translateX(-5px);
}

/* Animations - EXACTLY like main page */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* User Greeting Styles - EXACTLY like main page */
.user-greeting {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(139, 69, 19, 0.1);
    padding: 8px 15px;
    border-radius: 25px;
    border: 2px solid rgba(139, 69, 19, 0.2);
}

.logout-btn {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border: none;
    padding: 5px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.3);
}

/* Counter animation for stats */
.counter {
    display: inline-block;
}

/* Focus styles for accessibility - EXACTLY like main page */
.nav-link:focus,
.cta-button:focus,
.header-lang-btn:focus,
button:focus {
    outline: 2px solid #CD853F;
    outline-offset: 2px;
}

.logo:focus {
    outline: 2px solid #CD853F;
    outline-offset: 2px;
}
