/* --- style.css V57 (FINAL: Tüm Fixler ve X Butonu Garantili Çözüm) --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;800&family=Oswald:wght@400;700&display=swap');
@import url('https://unpkg.com/aos@next/dist/aos.css');

:root {
    --brand-purple: #6a4afa;
    --brand-dark: #050505;
    --brand-light: #ffffff;
    --text-gray: #a1a1a1;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --yt-red: #ff0000;
    --gold: #ffd700; 
}

/* TEMEL AYARLAR */
html, body {
    margin: 0; padding: 0;
    width: 100%; max-width: 100vw;
    overflow-x: hidden !important;
    scroll-behavior: smooth;
    background-color: var(--brand-dark);
    font-family: 'Inter', sans-serif;
    color: var(--brand-light);
}
* { box-sizing: border-box; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; }

/* --- GÖRÜNÜM KONTROLÜ --- */
#desktop-area { display: flex !important; }
#mobile-area { display: none !important; }

/* --- NAVİGASYON --- */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; position: fixed; width: 100%; top: 0; left: 0;
    z-index: 1000; background: rgba(5, 5, 5, 0.95); backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}
.nav-logo { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: bold; display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 40px; border-radius: 50%; border: 2px solid var(--brand-purple); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; gap: 25px; font-size: 0.9rem; color: #ccc; }
.nav-links a:hover { color: var(--brand-purple); }
.nav-buttons { display: flex; gap: 10px; align-items: center; position: relative; } 

/* Kullanıcı Dropdown */
.user-dropdown-container { position: relative; display: inline-block; }
.user-dropdown-menu { display: none; position: absolute; top: 100%; right: 0; background: #111; min-width: 180px; border: 1px solid var(--brand-purple); border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.8); z-index: 2000; flex-direction: column; margin-top: 10px; }
.user-dropdown-menu.active { display: flex; animation: fadeIn 0.3s ease; }
.dropdown-item { padding: 12px 15px; color: #fff; font-size: 0.9rem; cursor: pointer; transition: background 0.3s; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #222; }
.dropdown-item:hover { background: rgba(106, 74, 250, 0.3); color: var(--gold); }

.auth-btn { background: var(--brand-purple); color: #fff; padding: 8px 20px; border-radius: 20px; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; font-size: 0.9rem; display: flex; align-items: center; gap: 5px; }
.auth-btn:hover { background: #5a3ed8; box-shadow: 0 0 20px rgba(106, 74, 250, 0.7); } 
.lang-btn { background: transparent; border: 1px solid var(--glass-border); color: #fff; padding: 5px 10px; border-radius: 5px; cursor: pointer; font-weight: bold; transition: 0.3s; font-size: 0.9rem; }

/* --- HERO BÖLÜMÜ --- */
.hero {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: center; align-items: center; text-align: center;
    padding: 120px 20px 50px; position: relative; width: 100%; overflow: hidden;
}
#particles-js { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 1; }
.hero-content { 
    position: relative; 
    z-index: 5; 
    width: 100%; max-width: 900px; display: flex; flex-direction: column; align-items: center;
}
.hero-avatar {
    width: 140px; height: 140px; border-radius: 50%; border: 4px solid var(--brand-purple);
    box-shadow: 0 0 60px rgba(106, 74, 250, 0.5); margin-bottom: 30px; 
    image-rendering: pixelated; animation: float 4s ease-in-out infinite;
}
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin: 0; line-height: 1.1; font-weight: 800; text-transform: uppercase; }
.highlight { color: var(--brand-purple); text-shadow: 0 0 30px rgba(106, 74, 250, 0.4); }
.hero p { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-gray); margin: 20px 0 40px; padding: 0 10px; }

.btn-group { 
    display: flex; 
    gap: 15px; 
    flex-wrap: wrap; 
    justify-content: center; 
    width: 100%; 
    position: relative; 
    z-index: 10; 
}
.btn { padding: 15px 35px; border-radius: 50px; font-weight: 600; display: flex; align-items: center; gap: 10px; cursor: pointer; transition: 0.3s; white-space: nowrap; }
.btn-white { background: #fff; color: #000; }
.btn-white:hover { box-shadow: 0 5px 15px rgba(0,0,0,0.3); transform: translateY(-3px); } 
.btn-dark { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-dark:hover { border-color: var(--brand-purple); box-shadow: 0 0 15px rgba(106, 74, 250, 0.3); } 

.waves { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 3; }
.waves svg { display: block; width: 100%; height: 150px; }

/* --- ZİYARETÇİ SAYACI CSS --- */
.hero-sayaç {
    margin-top: 25px; 
    padding: 10px 30px; 
    border-radius: 50px; 
    z-index: 10; 
    display: flex;
    flex-direction: row; 
    gap: 40px; 
    justify-content: center; 
    align-items: center;
    width: fit-content; 
    min-width: auto; 
    background: rgba(106, 74, 250, 0.15); 
    backdrop-filter: blur(5px); 
    border: 1px solid rgba(106, 74, 250, 0.5); 
    box-shadow: 0 0 20px rgba(106, 74, 250, 0.25); 
}

.sayac-grup {
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    position: relative;
}

.etiket {
    font-weight: 600; 
    opacity: 0.8;
    font-size: 0.65rem; 
    color: var(--text-gray); 
    text-transform: uppercase;
    letter-spacing: 1px; 
    margin-bottom: 2px;
}

.sayac-grup span:nth-child(2) {
    font-weight: 900; 
    color: var(--gold); 
    font-size: 1.3rem; 
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.6); 
}

/* Dikey Çizgiler */
.hero-sayaç .sayac-grup:not(:last-child)::after {
    content: '';
    position: absolute;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
    right: -20px; 
    top: 20%;
}

/* --- OYUNLAR BÖLÜMÜ --- */
.games-wrapper { background-color: #000; padding: 50px 5% 150px; position: relative; z-index: 2; width: 100%; overflow: hidden; }
#games-title { margin-bottom: 40px; font-size: clamp(2rem, 4vw, 3rem); text-align: center; color: #fff; font-family: 'Oswald'; } 

/* MASAÜSTÜ SLIDER TASARIMI */
.slider-container {
    width: 100%; 
    max-width: 1200px; 
    height: 500px; 
    margin: 0 auto; 
    gap: 15px;
}
.panel { 
    background-size: cover; background-position: center; flex: 0.5; 
    border-radius: 30px; position: relative; cursor: pointer; 
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    filter: grayscale(100%); border: 1px solid #333; overflow: hidden;
}
.panel:hover { flex: 5; filter: grayscale(0%); border-color: var(--brand-purple); }
.panel.active { flex: 5; filter: grayscale(0%); border-color: var(--brand-purple); } 
.panel h3 { 
    position: absolute; bottom: 30px; left: 30px; 
    font-size: 2rem; color: #fff; font-family: 'Oswald'; 
    text-transform: uppercase; margin: 0; opacity: 0; transition: 0.3s;
    background: rgba(0,0,0,0.6); padding: 5px 15px; border-radius: 5px;
}
.panel:hover h3 { opacity: 1; transition-delay: 0.3s; }
.panel.active h3 { opacity: 1; transition-delay: 0.3s; } 

/* MOBİL KART TASARIMI */
.mobile-game-card {
    display: block; width: 100%; height: 180px; 
    border-radius: 15px; position: relative; overflow: hidden;
    border: 2px solid #444; box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    text-decoration: none; background-color: #222; 
    background-size: cover; background-position: center;
}
.mobile-game-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); z-index: 1;
}
.mobile-game-card span {
    position: absolute; bottom: 15px; left: 20px;
    color: white; font-family: 'Oswald', sans-serif; font-size: 1.8rem;
    text-transform: uppercase; z-index: 2; text-shadow: 2px 2px 4px rgba(0,0,0,1);
}

/* --- İŞBİRLİĞİ FORMU --- */
.collab-section { padding: 80px 5%; background: #080808; position: relative; overflow: hidden; text-align: center; }
.form-container {
    width: 100%; max-width: 800px; margin: 0 auto;
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px; padding: 40px; backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5); position: relative; z-index: 10;
}
.form-group { margin-bottom: 20px; text-align: left; width: 100%; }
.form-label { display: block; margin-bottom: 8px; color: #ccc; font-weight: bold; }
.form-input, .form-textarea {
    width: 100%; padding: 12px; background: rgba(0,0,0,0.4); 
    border: 1px solid #333; border-radius: 8px; color: #fff; font-family: 'Inter'; font-size: 1rem; box-sizing: border-box; 
}
.form-textarea { resize: vertical; height: 120px; }
.submit-btn { width: 100%; padding: 15px; background: var(--brand-purple); color: white; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; text-transform: uppercase; transition: 0.3s; }
.submit-btn:hover { background: #5a3ed8; box-shadow: 0 5px 20px rgba(106, 74, 250, 0.5); } 

/* --- TOPLULUK --- */
.reviews-section { background-color: #ffffff; color: #111; padding: 0 5% 80px; } 
.section-header-community { max-width: 1200px; margin: 0 auto; padding: 80px 0 20px; text-align: center; }
.section-header-community h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0; color: #000; }

.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; padding-top: 20px; }
.review-card { background: #f5f5f7; padding: 30px; border-radius: 16px; border: 1px solid #eee; display: flex; flex-direction: column; min-height: 500px; }
.review-card.star-card { border-color: var(--brand-purple); transform: scale(1.02); padding-bottom: 0; min-height: 500px; position: relative; overflow: hidden; display: flex; flex-direction: column; }

.user-info { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; position: relative; z-index: 10; }
.user-avatar { width: 60px; height: 60px; border-radius: 50%; border: 3px solid var(--brand-purple); box-shadow: 0 0 10px rgba(106, 74, 250, 0.2); }

.donate-btn { display: flex; justify-content: center; align-items: center; width: 100%; padding: 12px; font-weight: bold; cursor: pointer; text-align: center; box-sizing: border-box; transition: 0.3s; border-radius: 8px; }
.instagram-btn { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.youtube-btn-wrapper { margin: 20px -30px 0 -30px; overflow: hidden; margin-top: auto; position: relative; z-index: 20; }
.youtube-btn-wrapper .donate-btn { border-radius: 0 0 16px 16px; padding: 15px 12px; }

/* --- MODAL BAŞLANGIÇ (GÜNCELLENMİŞ LUX STİL) --- */
.modal-overlay { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(0, 0, 0, 0.7); 
    backdrop-filter: blur(8px); 
    display: flex; justify-content: center; align-items: center; 
    z-index: 5000; 
    opacity: 0; 
    pointer-events: none; 
    transition: opacity 0.4s; 
}
.modal-overlay.open { opacity: 1; pointer-events: auto; display: flex; }
.modal-box { 
    background: #11111a; /* Çok Koyu Mor-Siyah Arkaplan */
    padding: 30px 40px; 
    border-radius: 20px; 
    border: 1px solid #6a4afa; 
    width: 100%; max-width: 420px; 
    text-align: center; margin: auto; 
    box-shadow: 0 0 30px rgba(106, 74, 250, 0.4), 0 0 15px rgba(255, 215, 0, 0.1); /* Mor ve Altın Gölge */
    transform: scale(0.9); transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal-overlay.open .modal-box { transform: scale(1); }

.modal-header h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--gold); /* Altın Başlık */
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    margin: 0 0 20px 0;
    font-size: 28px;
    text-align: center;
    text-transform: uppercase;
}

/* YENİ VE BÜYÜK X KAPATMA BUTONU STİLİ (KESİN ÇÖZÜM) */
/* Dikkat: HTML dosyanızdaki "close-modal" sınıfı ile eşleştirilmiştir. */
.close-modal {
    /* Konumlandırma */
    position: absolute;
    top: 10px; 
    right: 10px;
    
    /* Boyut ve Şekil */
    width: 45px; 
    height: 45px; 
    border-radius: 50%; 
    border: 1px solid transparent; 
    background: none;
    
    /* İçerik (X) Stili */
    color: #fff;
    font-size: 24px; 
    font-weight: bold; /* X'i kalınlaştırıldı */
    cursor: pointer;
    opacity: 0.7;
    
    /* Merkezleme ve Geçiş */
    display: flex; 
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-out; 
    z-index: 10; /* Diğer öğelerin önüne geçmesi için */
}

.close-modal:hover {
    opacity: 1;
    /* Mor daire efekti */
    background-color: rgba(106, 74, 250, 0.2); 
    border-color: var(--brand-purple); 
    color: #ff4d4d; 
}

.modal-step {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.modal-step.hidden {
    display: none;
}
.modal-input { 
    width: 100%; padding: 14px; margin: 8px 0; 
    border-radius: 8px; border: 1px solid #6a4afa; 
    background: #1e1e30; /* Koyu Mavi-Mor Arkaplan */
    color: #fff; font-size: 1rem; box-sizing: border-box; 
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.modal-input:focus {
    border-color: var(--gold); /* Odaklanınca Altın Kenarlık */
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    background: #252538;
    outline: none;
}
.modal-btn { 
    width: 100%; padding: 15px; background: linear-gradient(to right, #6a4afa, #8c6aff); /* Mor Gradient */
    color: white; border: none; border-radius: 10px; font-weight: bold; 
    cursor: pointer; transition: transform 0.1s, box-shadow 0.2s; margin-top: 20px; 
    box-shadow: 0 4px 15px rgba(106, 74, 250, 0.5);
    text-transform: uppercase;
    font-size: 18px;
}
.modal-btn:hover { 
    box-shadow: 0 6px 20px rgba(106, 74, 250, 0.7);
}
.modal-btn:active {
    transform: translateY(2px);
    box-shadow: 0 4px 10px rgba(106, 74, 250, 0.5);
}
.modal-link {
    color: var(--gold); /* Altın Link */
    font-size: 0.85rem;
    margin-top: 15px;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s, text-decoration 0.2s;
}
.modal-link:hover {
    opacity: 1;
    text-decoration: underline;
}

#modal-messages {
    text-align: center;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--gold);
}

.modal-box img {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 3px solid var(--gold); 
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}
/* MODAL SONU */

/* FOOTER */
footer { 
    background: #000000; 
    padding: 50px 20px; 
    text-align: center; 
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
    color: #888; 
    width: 100%; 
    position: relative; 
    z-index: 10; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
}
.social-icons { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 25px; 
    margin-bottom: 20px; 
    width: 100%; 
}
.social-icons a { 
    font-size: 1.8rem; 
    color: #ccc; 
    transition: 0.3s; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
}
.social-icons a:hover { 
    transform: translateY(-5px); 
    color: var(--brand-purple); 
}

/* --- YENİ EKLENTİ: YAPAY ZEKA DESTEK BALONU STİLLERİ --- */
#ai-chat-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000; 
    font-family: 'Inter', sans-serif;
}

/* Toggle Butonu (Pavlov Logosu) */
#ai-chat-toggle {
    width: 60px;
    height: 60px;
    background-color: var(--brand-purple); 
    border-radius: 50%;
    border: 3px solid var(--gold); 
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(106, 74, 250, 0.5);
    transition: transform 0.3s, opacity 0.3s;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.chat-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

/* Sohbet Penceresi */
#ai-chat-window {
    width: 320px;
    height: 400px;
    background-color: var(--brand-dark); 
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.7);
    border: 1px solid var(--brand-purple); 
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: 0;
    right: 70px; 
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}
#ai-chat-window.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Başlık Alanı */
.chat-header {
    padding: 15px;
    background-color: rgba(106, 74, 250, 0.2);
    border-bottom: 1px solid var(--brand-purple);
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}
.chat-title {
    display: flex;
    align-items: center;
}
.chat-header h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--brand-light);
}
.status-online {
    font-size: 0.75rem;
    color: #4CAF50; 
}
.chat-close-btn {
    background: none;
    border: none;
    color: var(--brand-light);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.chat-close-btn:hover {
    opacity: 1;
}

/* Mesajlar Alanı */
.chat-body {
    flex-grow: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #111;
}

/* Mesaj Stilleri */
.message {
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word; 
    overflow-wrap: break-word; 
}
.message p {
    margin: 0;
}
.ai-message {
    background-color: var(--brand-purple);
    color: white;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}
.user-message {
    background-color: #333;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}
/* YENİ: Yazıyor simülasyonu */
.typing-indicator p {
    font-weight: bold;
    animation: blink-animation 1s steps(5, start) infinite;
    color: #ffd700;
}
@keyframes blink-animation {
    to { visibility: hidden; }
}


/* Giriş Alanı */
.chat-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #333;
    background-color: var(--brand-dark);
    border-radius: 0 0 10px 10px;
}
#chat-input {
    flex-grow: 1;
    padding: 8px;
    border: 1px solid var(--brand-purple);
    border-radius: 5px;
    background-color: #000;
    color: white;
    margin-right: 10px;
}
.chat-send-btn {
    background-color: var(--brand-purple);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.chat-send-btn:hover {
    background-color: #5a3ed8;
}
.btn-loading { position: relative; color: transparent !important; pointer-events: none; }
.btn-loading::after { content: ""; position: absolute; width: 20px; height: 20px; top: 50%; left: 50%; margin-top: -10px; margin-left: -10px; border: 2px solid #fff; border-top-color: transparent; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* =========================================== */
/* === MOBİL CİHAZ DÜZENLEMELERİ (KESİN) === */
/* =========================================== */
@media only screen and (max-width: 768px) {
    
    /* ID İLE GÖRÜNÜM KONTROLÜ: Masaüstünü GİZLE, Mobili AÇ */
    #desktop-area { display: none !important; height: 0 !important; overflow: hidden !important; }
    #mobile-area { display: flex !important; flex-direction: column; gap: 20px; width: 100%; padding: 0 10px; margin-top: 20px; }

    /* NAV FIX */
    .nav-links { display: none; } 
    .nav-logo { font-size: 1.2rem; } 
    .nav-buttons { gap: 5px; } 
    .auth-btn { padding: 6px 15px; font-size: 0.8rem; }
    .lang-btn { padding: 4px 8px; font-size: 0.8rem; }

    /* ZİYARETÇİ SAYACI MOBİL KONUMLANDIRMA */
    .hero-sayaç {
        margin-top: 25px;
        flex-direction: column; 
        gap: 10px;
        min-width: 90%;
        padding: 15px;
    }
    .hero-sayaç .sayac-grup {
        flex-direction: row; 
        justify-content: space-between;
        width: 100%;
    }
    .hero-sayaç .sayac-grup:not(:last-child)::after {
        content: none; 
    }
    .etiket {
        font-size: 0.9rem; 
        margin-bottom: 0;
    }
    .sayac-grup span:nth-child(2) {
        font-size: 1.2rem; 
    }
    
    /* DİĞER MOBİL DÜZENLEMELER */
    .hero-content { padding: 0 5%; }
    .btn-group { flex-direction: column; width: 100%; gap: 10px; }
    .btn { width: 100%; justify-content: center; } 
    .games-wrapper { padding: 50px 5%; }
    .review-card { min-height: auto; padding: 20px; margin-bottom: 20px; } 
    .review-card.star-card { transform: scale(1); min-height: auto; } 
    .youtube-btn-wrapper { margin: 20px -20px 0 -20px; } 
    .section-header-community { padding: 40px 0 20px; }
    footer { padding: 30px 10px; }
    .social-icons { margin-bottom: 20px; }
    
    #ai-chat-container { bottom: 20px; right: 20px; } 
    #ai-chat-window { right: 0; }
}