/* TAROT KARTLARI - ÇOK ÖZEL SEÇİCİLERLE */
body #tarot-container #tarot-cards-deck .tarot-card {
    width: 140px !important;
    height: 220px !important;
    position: relative !important;
    cursor: pointer !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    overflow: hidden !important;
    transform: none !important;
    transform-style: flat !important;
    perspective: none !important;
}

body #tarot-container #tarot-cards-deck .tarot-card .card-back,
body #tarot-container #tarot-cards-deck .tarot-card .card-front {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    border-radius: 12px !important;
    top: 0 !important;
    left: 0 !important;
    transition: all 0.6s ease !important;
    backface-visibility: visible !important;
    transform: none !important;
}

/* BAŞLANGIÇ DURUMU - ARKA YÜZ GÖRÜNSÜN */
body #tarot-container #tarot-cards-deck .tarot-card:not(.flipped) .card-back {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2 !important;
    display: flex !important;
}

body #tarot-container #tarot-cards-deck .tarot-card:not(.flipped) .card-front {
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 1 !important;
    display: flex !important;
}

/* FLIPPED DURUMU - ÖN YÜZ GÖRÜNSÜN */
body #tarot-container #tarot-cards-deck .tarot-card.flipped .card-back {
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 1 !important;
}

body #tarot-container #tarot-cards-deck .tarot-card.flipped .card-front {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2 !important;
}

/* GÖRSELLER */
body #tarot-container #tarot-cards-deck .tarot-card .card-back .card-back-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
}

body #tarot-container #tarot-cards-deck .tarot-card .card-back .card-back-color {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%) !important;
    border-radius: 12px !important;
}

body #tarot-container #tarot-cards-deck .tarot-card .card-front img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px !important;
}

body #tarot-container #tarot-cards-deck .tarot-card .card-front .no-image {
    padding: 20px !important;
    text-align: center !important;
    color: #666 !important;
    font-size: 14px !important;
    font-weight: bold !important;
}

/* Tarot Falı Ana Stiller */
#tarot-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    background: #fff;
    line-height: 1.6;
}

/* Form Stilleri */
#user-info-form {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

#user-info-form h3 {
    color: #8B4513;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

#user-info-form p {
    color: #000 !important; /* SİYAH */
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 500;
}

/* Form Grup Stilleri - TÜM METİNLER SİYAH */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: #000 !important; /* SİYAH */
    font-size: 16px;
}

.form-group input {
    width: 100%;
    padding: 16px;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    color: #000 !important; /* SİYAH */
}

/* Placeholder rengini de ayarlayalım */
.form-group input::placeholder {
    color: #666 !important; /* Koyu gri */
}

.form-group input:focus::placeholder {
    color: #999 !important; /* Daha açık gri */
}

/* FAL TÜRÜ BUTONLARI - YAN YANA VE HAVALI */
.reading-type-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.reading-type-btn {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    color: #333;
    border: none;
    padding: 20px 25px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1), 
                -5px -5px 15px rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    flex: 1;
    max-width: 180px;
}

.reading-type-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.4), 
        transparent);
    transition: left 0.6s;
}

.reading-type-btn:hover::before {
    left: 100%;
}

.reading-type-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 8px 8px 25px rgba(0,0,0,0.15),
                -8px -8px 25px rgba(255,255,255,0.9);
}

.reading-type-btn.active {
    background: linear-gradient(145deg, #8B4513, #A0522D);
    color: white;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4),
                inset 2px 2px 5px rgba(255,255,255,0.2),
                inset -2px -2px 5px rgba(0,0,0,0.1);
}

.reading-type-btn.active::after {
    content: ' ✓';
    font-weight: bold;
    font-size: 18px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Özel Buton Renkleri - Daha Canlı */
.reading-type-btn[data-type="love"] {
    background: linear-gradient(145deg, #ff6b9d, #ff4f81);
    color: white;
    box-shadow: 5px 5px 15px rgba(255, 107, 157, 0.3),
                -5px -5px 15px rgba(255, 255, 255, 0.8);
}

.reading-type-btn[data-type="career"] {
    background: linear-gradient(145deg, #4ecdc4, #36b1a8);
    color: white;
    box-shadow: 5px 5px 15px rgba(78, 205, 196, 0.3),
                -5px -5px 15px rgba(255, 255, 255, 0.8);
}

.reading-type-btn[data-type="finance"] {
    background: linear-gradient(145deg, #ffeaa7, #fdcb6e);
    color: #2d3436;
    box-shadow: 5px 5px 15px rgba(253, 203, 110, 0.3),
                -5px -5px 15px rgba(255, 255, 255, 0.8);
}

.reading-type-btn[data-type="health"] {
    background: linear-gradient(145deg, #00b894, #00a085);
    color: white;
    box-shadow: 5px 5px 15px rgba(0, 184, 148, 0.3),
                -5px -5px 15px rgba(255, 255, 255, 0.8);
}

.reading-type-btn[data-type="spiritual"] {
    background: linear-gradient(145deg, #a29bfe, #6c5ce7);
    color: white;
    box-shadow: 5px 5px 15px rgba(162, 155, 254, 0.3),
                -5px -5px 15px rgba(255, 255, 255, 0.8);
}

.reading-type-btn[data-type="family"] {
    background: linear-gradient(145deg, #fd79a8, #f3689a);
    color: white;
    box-shadow: 5px 5px 15px rgba(253, 121, 168, 0.3),
                -5px -5px 15px rgba(255, 255, 255, 0.8);
}

.reading-type-btn[data-type="future"] {
    background: linear-gradient(145deg, #74b9ff, #0984e3);
    color: white;
    box-shadow: 5px 5px 15px rgba(116, 185, 255, 0.3),
                -5px -5px 15px rgba(255, 255, 255, 0.8);
}

.reading-type-btn[data-type="general"] {
    background: linear-gradient(145deg, #dfe6e9, #b2bec3);
    color: #2d3436;
    box-shadow: 5px 5px 15px rgba(178, 190, 195, 0.3),
                -5px -5px 15px rgba(255, 255, 255, 0.8);
}

/* Buton İçeriği */
.reading-type-btn .btn-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
    filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.reading-type-btn .btn-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

#start-tarot {
    background: linear-gradient(145deg, #8B4513, #A0522D);
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 16px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 5px 5px 20px rgba(139, 69, 19, 0.4),
                -5px -5px 20px rgba(255,255,255,0.8);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

#start-tarot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent);
    transition: left 0.6s;
}

#start-tarot:hover::before {
    left: 100%;
}

#start-tarot:hover:not(:disabled) {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 8px 8px 30px rgba(139, 69, 19, 0.5),
                -8px -8px 30px rgba(255,255,255,0.9);
}

#start-tarot:disabled {
    background: linear-gradient(145deg, #cccccc, #b3b3b3);
    color: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.1),
                -3px -3px 10px rgba(255,255,255,0.8);
}

/* Kart Seçim Arayüzü */
#tarot-selection {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

#tarot-instruction {
    margin-bottom: 40px;
    padding: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

#tarot-instruction h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#tarot-instruction p {
    font-size: 17px;
    opacity: 0.95;
    font-weight: 500;
}

/* Kart Destesi */
#tarot-cards-deck {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    perspective: 1000px;
}

/* Kart Stilleri */
/* --- YENİ TAROT KART CSS BAŞLANGICI --- */

.tarot-card {
    width: 140px;
    height: 220px;
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    top: 0;
    left: 0;
}

.card-front {
    /* Ön yüz normal görünsün */
    z-index: 2;
    background: white;
}

.tarot-card.flipped {
    /* Kart çevrildiğinde 180 derece dönsün */
    transform: rotateY(180deg);
}

/* Kart arka yüzü görseli */
.card-back-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 12px !important;
    display: block !important;
}

.card-back {
    /* Arka yüz 180 derece döndürülmüş olsun */
    transform: rotateY(180deg);
    background: #8B4513;
    z-index: 1;
}

.card-back-color {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 12px;
}

/* Kart ön yüzü görseli */
.card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.no-image {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
    font-weight: bold;
}

/* Seçilen Kartlar */
#selected-cards {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 30px;
    border-radius: 15px;
    color: white;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

#selected-cards h4 {
    margin-bottom: 20px;
    font-size: 22px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

#selected-list {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.selected-card-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.remove-card {
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(255,68,68,0.3);
}

.remove-card:hover {
    background: #ff0000;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255,0,0,0.4);
}

#show-reading {
    background: linear-gradient(145deg, #4facfe, #00f2fe);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 16px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 5px 5px 20px rgba(79, 172, 254, 0.4),
                -5px -5px 20px rgba(255,255,255,0.8);
    position: relative;
    overflow: hidden;
}

#show-reading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent);
    transition: left 0.6s;
}

#show-reading:hover::before {
    left: 100%;
}

#show-reading:disabled {
    background: linear-gradient(145deg, #cccccc, #b3b3b3);
    color: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.1),
                -3px -3px 10px rgba(255,255,255,0.8);
}

#show-reading:not(:disabled):hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 8px 8px 30px rgba(79, 172, 254, 0.5),
                -8px -8px 30px rgba(255,255,255,0.9);
}

/* Seçilen Kartların Görsel Olarak Gösterilmesi */
.selected-cards-display {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.selected-card-visual {
    width: 100px;
    height: 160px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.selected-card-visual:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
    border-color: #8B4513;
}

.selected-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.selected-card-visual .card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    line-height: 1.3;
}

.selected-card-number {
    position: absolute;
    top: 5px;
    left: 5px;
    background: rgba(139, 69, 19, 0.9);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* FAL SONUÇLARI - DÜZENLİ VE TEMİZ */
#tarot-reading {
    background: #fff;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.reading-result {
    text-align: left;
    background: white;
    padding: 0;
}

.reading-result h3 {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    font-size: 32px;
    margin: 0;
    padding: 30px;
    text-align: center;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.user-info {
    background: #f8f9fa;
    padding: 25px;
    margin: 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.user-info p {
    margin: 8px 0;
    font-size: 17px;
    color: #495057;
    font-weight: bold;
}

.reading-content {
    padding: 35px;
    background: white;
}

.reading-content h4 {
    color: #8B4513;
    margin: 30px 0 18px 0;
    border-bottom: 3px solid #8B4513;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: bold;
}

.reading-content p {
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 17px;
    color: #495057;
    text-align: left;
}

.reading-content ul {
    margin: 18px 0;
    padding-left: 30px;
}

.reading-content li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 17px;
    color: #495057;
}

.reading-note {
    margin-top: 30px;
    padding: 25px;
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 12px;
    font-style: italic;
    color: #856404;
    text-align: center;
    font-size: 15px;
}

#reset-reading {
    background: linear-gradient(145deg, #8B4513, #A0522D);
    color: white;
    padding: 18px 45px;
    border: none;
    border-radius: 16px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    margin: 35px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 5px 5px 20px rgba(139, 69, 19, 0.4),
                -5px -5px 20px rgba(255,255,255,0.8);
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

#reset-reading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent);
    transition: left 0.6s;
}

#reset-reading:hover::before {
    left: 100%;
}

#reset-reading:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 8px 8px 30px rgba(139, 69, 19, 0.5),
                -8px -8px 30px rgba(255,255,255,0.9);
}

/* Yükleniyor ve Hata Mesajları */
.loading {
    text-align: center;
    padding: 60px 40px;
    font-size: 22px;
    color: #8B4513;
    background: white;
}

.error {
    text-align: center;
    padding: 40px;
    color: #d63031;
    background: #ffeaea;
    border-radius: 15px;
    margin: 30px;
    border: 3px solid #ff7675;
    box-shadow: 0 8px 25px rgba(214, 48, 49, 0.2);
}

/* AI Yanıtı için Özel Stiller */
.ai-reading-text {
    white-space: pre-line;
    line-height: 1.7;
    font-size: 17px;
    color: #495057;
}

.ai-reading-text h1,
.ai-reading-text h2,
.ai-reading-text h3,
.ai-reading-text h4 {
    color: #8B4513;
    margin: 30px 0 18px 0;
    border-bottom: 3px solid #e9ecef;
    padding-bottom: 10px;
}

.ai-reading-text p {
    margin-bottom: 18px;
}

.ai-reading-text ul,
.ai-reading-text ol {
    margin: 18px 0;
    padding-left: 30px;
}

.ai-reading-text li {
    margin-bottom: 10px;
}

/* Mobil Düzenlemeler */
@media (max-width: 768px) {
    #tarot-container {
        padding: 15px;
    }
    
    #user-info-form,
    #tarot-selection,
    #tarot-reading {
        padding: 25px 20px;
    }
    
    .reading-type-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .reading-type-btn {
        padding: 18px 15px;
        font-size: 14px;
        min-width: 120px;
    }
    
    .reading-type-btn .btn-icon {
        font-size: 24px;
    }
    
    .tarot-card {
        width: 110px;
        height: 180px;
    }
    
    #tarot-cards-deck {
        gap: 12px;
    }
    
    .selected-card-item {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .reading-content {
        padding: 25px;
    }
    
    .selected-cards-display {
        gap: 10px;
        padding: 15px;
    }
    
    .selected-card-visual {
        width: 80px;
        height: 130px;
    }
    
    .selected-card-number {
        width: 22px;
        height: 22px;
        font-size: 11px;
    }
    
    /* Mobil dokunmatik optimizasyonu */
    .tarot-card {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        transform: translateZ(0);
    }
}

@media (max-width: 480px) {
    .tarot-card {
        width: 90px;
        height: 150px;
    }
    
    #user-info-form,
    #tarot-selection,
    #tarot-reading {
        padding: 20px 15px;
    }
    
    .reading-type-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .reading-type-btn {
        padding: 15px 10px;
        font-size: 13px;
        min-width: 100px;
    }
    
    .reading-type-btn .btn-icon {
        font-size: 22px;
    }
    
    .form-group input {
        padding: 14px;
    }
    
    #start-tarot,
    #show-reading,
    #reset-reading {
        padding: 16px 30px;
        font-size: 18px;
        width: 100%;
    }
    
    #tarot-cards-deck {
        gap: 8px;
    }
    
    .reading-content {
        padding: 20px;
    }
    
    .reading-result h3 {
        font-size: 26px;
        padding: 25px;
    }
    
    .selected-cards-display {
        gap: 8px;
    }
    
    .selected-card-visual {
        width: 70px;
        height: 110px;
    }
    
    .selected-card-number {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* Scroll düzeltmesi */
html {
    scroll-behavior: smooth;
}

body.tarot-no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}