/* =========================================
   1. CẤU HÌNH CƠ BẢN (RESET & VARIABLES)
   ========================================= */
:root {
    --bg-dark: #0f172a;
    /* Nền xanh đen đậm */
    --bg-card: rgba(30, 41, 59, 0.4);
    /* Nền thẻ trong suốt (Glassmorphism) */
    --primary: #3b82f6;
    /* Xanh dương chủ đạo */
    --accent: #06b6d4;
    /* Xanh Cyan điểm nhấn */
    --text-main: #f3f4f6;
    /* Chữ trắng sáng */
    --text-muted: #94a3b8;
    /* Chữ xám nhạt */
    --grid-line: rgba(255, 255, 255, 0.03);
    /* Đường kẻ lưới nền */
    --max-width: 1200px;
    /* Chiều rộng web tối đa */
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    /* Hiệu ứng nền lưới caro mờ ảo */
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 40px 40px;
    min-height: 100vh;
    overflow-x: hidden;
    /* Tránh thanh cuộn ngang thừa */
    padding-top: 100px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   2. THANH MENU (NAVBAR)
   ========================================= */
/* --- CẬP NHẬT NAV BAR (THÊM CHUYỂN ĐỘNG) --- */
/* --- SỬA LẠI NAV BAR (Dùng Transform để ẩn sạch 100%) --- */
.navbar {
    /* Giữ nguyên các màu nền cũ */
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    /* Cố định */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    /* QUAN TRỌNG: Đổi hiệu ứng chuyển động sang transform */
    transition: transform 0.3s ease-in-out;
}

.nav-hidden {
    /* XÓA dòng top: -100px cũ đi */
    /* Dùng dòng này: Dịch chuyển lên 100% chiều cao của chính nó */
    /* Menu cao bao nhiêu nó tự ẩn bấy nhiêu, không lo bị thò đuôi */
    transform: translateY(-100%);
}

/* --- THÊM DÒNG NÀY ĐỂ MENU KHÔNG CHE CHỮ KHI MỚI VÀO --- */
body {
    /* Đẩy toàn bộ nội dung web xuống để chừa chỗ cho menu */
    padding-top: 100px;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

/* Nút chuyển ngôn ngữ */
.lang-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.lang-btn:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

/* =========================================
   3. HERO SECTION (TRANG CHỦ)
   ========================================= */
.hero-section {
    padding: 100px 0;
    /* Hiệu ứng ánh sáng tỏa ra từ giữa */
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.hero-container-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text-content {
    flex: 1;
}

/* Tiêu đề Gradient (Chữ chuyển màu) */
.hero-title,
.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
    /* Tạo màu chuyển sắc */
    background: linear-gradient(90deg, #fff, #38bdf8, #818cf8);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 5s linear infinite;
    line-height: 1.2;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.hero-note {
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: 600;
}

/* Avatar "Thở" (Bay lên xuống) */
.hero-image-box {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
}

.my-avatar {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(59, 130, 246, 0.3);
    /* Animation bay */
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
    }

    50% {
        transform: translateY(-15px);
        box-shadow: 0 25px 30px rgba(59, 130, 246, 0.15);
    }

    100% {
        transform: translateY(0px);
        box-shadow: 0 5px 15px rgba(59, 130, 246, 0.2);
    }
}

/* Buttons (Nút bấm xịn) */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
}

/* =========================================
   4. CÁC SECTION CHUNG & CARDS
   ========================================= */
.section-block {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.section-header {
    margin-bottom: 40px;
    color: var(--text-main);
    font-size: 1.8rem;
    border-left: 5px solid var(--accent);
    padding-left: 20px;
}

.section-header.centered {
    border-left: none;
    text-align: center;
}

/* Grid Layout */
.skills-grid,
.projects-grid,
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* CARD GLASSMORPHISM (Hiệu ứng kính) */
.skill-card,
.feature-card {
    background: var(--bg-card);
    /* Nền mờ */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.skill-card:hover,
.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent);
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.15);
    /* Phát sáng nhẹ */
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: inline-block;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.skill-card h3,
.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--text-main);
}

.skill-card ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--text-muted);
}

.skill-card ul li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.card-bar {
    height: 4px;
    width: 50px;
    background: var(--primary);
    margin-top: 20px;
    border-radius: 2px;
    transition: width 0.4s;
}

.skill-card:hover .card-bar {
    width: 100%;
    background: var(--accent);
}

/* About Box */
.about-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid var(--primary);
}

.highlight-text {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

/* Grid 2 cột (Dành cho trang chủ mục 4,5 và trang tài nguyên) */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.check-list li::before {
    content: "✔";
    color: var(--accent);
    font-weight: bold;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.icon-list i {
    color: var(--primary);
    font-size: 1.4rem;
}

/* =========================================
   5. STYLE RIÊNG TRANG TÀI NGUYÊN (BÁN HÀNG)
   ========================================= */
.product-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    position: relative;
    /* Hiệu ứng viền sáng cho sản phẩm chính */
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.1);
}

.product-box:hover {
    border-color: var(--accent);
}

.product-content {
    flex: 2;
}

.product-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.badge-premium {
    display: inline-block;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.price-tag {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.free-tag {
    text-decoration: line-through;
    color: var(--text-muted);
}

.paid-tag {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.5rem;
    margin-left: 10px;
}

/* Nút mua hàng (Glow Effect) */
.glow-effect {
    box-shadow: 0 0 15px var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.mockup-book {
    width: 220px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.resource-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.resource-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.link-sm {
    color: var(--accent);
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Upsell Banner */
.upsell-banner {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
}

.btn-white:hover {
    transform: scale(1.05);
}

/* =========================================
   6. FOOTER & RESPONSIVE
   ========================================= */
footer {
    padding: 50px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #0b1120;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

/* HIỆU ỨNG CUỘN TRANG (SCROLL REVEAL) - Class hỗ trợ JS */
.hidden-element {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.show-element {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .hero-container-flex,
    .product-box,
    .grid-2-col,
    .upsell-banner {
        flex-direction: column;
        text-align: center;
    }

    .hero-container-flex {
        flex-direction: column-reverse;
    }

    /* Ảnh lên trên ở mobile */
    .hero-buttons,
    .button-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-image-box {
        flex: auto;
        width: 100%;
        margin-bottom: 30px;
    }

    .my-avatar {
        width: 220px;
        height: 220px;
    }
}

/* --- SỬA LỖI NÚT BẤM & KHUNG KÍNH (UPDATE MỚI) --- */

/* 1. Biến dòng link thành Nút bấm xịn trong thẻ Card */
.feature-card .btn {
    display: inline-flex;
    /* Đảm bảo là khối nút */
    justify-content: center;
    width: 100%;
    /* Nút dài full thẻ */
    margin-top: 20px;
    background: rgba(59, 130, 246, 0.2);
    /* Nền xanh nhạt */
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 0;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.feature-card .btn:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
    /* Phát sáng khi di chuột */
}

/* 2. Đóng khung kính cho phần "Sinh viên Đài Loan" */
/* --- SỬA LẠI KHUNG ĐÀI LOAN (CĂN GIỮA & GIÃN CÁCH) --- */

.taiwan-box {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    padding: 50px 40px;
    /* Tăng padding để khung thoáng hơn */

    /* CẤU HÌNH FLEXBOX ĐỂ CĂN GIỮA TUYỆT ĐỐI */
    display: flex;
    flex-direction: column;
    /* Xếp dọc nội dung */
    align-items: center;
    /* Căn giữa theo trục ngang */
    text-align: center;
    /* Căn giữa văn bản */

    box-shadow: 0 0 40px rgba(6, 182, 212, 0.1);
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

/* Hiệu ứng vệt sáng quét qua (Giữ nguyên) */
.taiwan-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-25deg);
    animation: shine 6s infinite;
}

/* Container chứa các lợi ích (Badge) */
.tw-benefits {
    display: flex;
    justify-content: center;
    /* Căn giữa các badge */
    flex-wrap: wrap;
    /* Xuống dòng nếu màn hình nhỏ */
    gap: 30px;
    /* 🔥 TĂNG KHOẢNG CÁCH GIỮA CÁC MỤC Ở ĐÂY */
    margin-top: 30px;
    width: 100%;
}

/* Style từng mục lợi ích */
.badge {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent);
    border: 1px solid rgba(6, 182, 212, 0.3);
    padding: 12px 24px;
    /* Tăng độ dày nút cho đẹp */
    border-radius: 50px;
    /* Bo tròn hình viên thuốc */
    font-weight: 600;
    font-size: 1rem;

    /* Căn chỉnh icon và chữ thẳng hàng */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* Khoảng cách giữa icon và chữ bên trong */
    transition: 0.3s;
}

.badge:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.2);
}

/* =========================================
   MOBILE RESPONSIVE FIX (SỬA LỖI ĐIỆN THOẠI)
   ========================================= */
@media (max-width: 768px) {

    /* 1. SỬA THANH MENU (NAVBAR) */
    .nav-container {
        flex-direction: column;
        /* Xếp dọc Logo và Menu */
        height: auto;
        /* Chiều cao tự động dãn */
        padding: 15px;
    }

    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
        /* Cho phép xuống dòng nếu nhiều mục */
        justify-content: center;
        gap: 15px;
        /* Khoảng cách giữa các link nhỏ hơn */
    }

    .nav-links a {
        font-size: 0.9rem;
        /* Chữ menu nhỏ lại chút */
        padding: 5px 10px;
        background: rgba(255, 255, 255, 0.05);
        /* Thêm nền nhẹ cho dễ bấm */
        border-radius: 4px;
    }

    /* 2. SỬA LỖI CHIA CỘT (GRID) */
    /* Quan trọng: Ép tất cả các khung chia 2 cột thành 1 cột */
    .grid-2-col,
    .hero-container-flex,
    .product-box,
    .upsell-banner {
        grid-template-columns: 1fr !important;
        /* Bắt buộc 1 cột */
        flex-direction: column !important;
        gap: 30px;
    }

    /* 3. SỬA CĂN CHỈNH VĂN BẢN */
    .hero-text-content,
    .section-header,
    .info-column {
        text-align: center;
        /* Căn giữa hết cho đẹp */
    }

    .section-header {
        border-left: none;
        /* Bỏ cái gạch dọc bên trái tiêu đề */
        border-bottom: 3px solid var(--accent);
        /* Thay bằng gạch dưới chân */
        display: inline-block;
        padding-left: 0;
        padding-bottom: 5px;
    }

    /* 4. GIẢM KÍCH THƯỚC CHỮ & KHOẢNG CÁCH */
    .hero-title {
        font-size: 2rem;
    }

    /* Tiêu đề Hero nhỏ lại */
    .section-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    /* Lề 2 bên màn hình nhỏ lại */
    .section-block {
        padding: 40px 0;
    }

    /* Khoảng cách giữa các phần ngắn lại */

    /* 5. SỬA ẢNH AVATAR */
    .hero-image-box {
        margin-bottom: 30px;
        width: 100%;
    }

    .my-avatar {
        width: 200px;
        /* Ảnh nhỏ lại cho vừa điện thoại */
        height: 200px;
    }

    /* 6. SỬA NÚT BẤM */
    .hero-buttons {
        flex-direction: column;
        /* Nút xếp dọc */
        width: 100%;
    }

    .btn {
        width: 100%;
        /* Nút dài full màn hình cho dễ bấm */
        justify-content: center;
    }

    /* 7. SỬA CÁC LIST (FIX LẠI CHO THẲNG HÀNG) */
    /* Căn giữa cả khối danh sách, nhưng nội dung bên trong vẫn thẳng hàng bên trái */
    .check-list,
    .icon-list {
        display: inline-block;
        /* Co lại vừa khít nội dung */
        margin: 0 auto;
        /* Căn giữa khối đó ra giữa màn hình */
        text-align: left;
        /* Chữ bên trong căn trái */
        padding-left: 0;
    }

    .check-list li,
    .icon-list li {
        justify-content: flex-start;
        /* Icon và chữ dính về bên trái */
        margin-bottom: 15px;
        /* Tăng khoảng cách dòng cho thoáng */
    }

    /* Căn giữa tiêu đề của các mục này */
    .grid-2-col>div {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Ép mọi thứ vào giữa */
    }
}

/* =========================================
   FIX GIAO DIỆN TRANG THỰC HÀNH (PRACTICE)
   ========================================= */

/* 1. Chia cột cho máy tính (2 cột đều nhau) */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 1fr 1fr nghĩa là chia đôi 50-50 */
    gap: 30px;
    /* Khoảng cách giữa 2 ô */
    margin-top: 20px;
}

/* 2. Chỉnh lại cái ô (Card) để nội dung xếp dọc */
.section-block .product-box {
    display: flex;
    flex-direction: column;
    /* QUAN TRỌNG: Xếp từ trên xuống dưới */
    align-items: flex-start;
    /* Canh lề trái */
    text-align: left;
    /* Chữ canh trái */
    height: auto;
    /* Chiều cao tự giãn */
    width: 100%;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    /* Màu nền tối nhẹ */
}

/* 3. Chỉnh cái tiêu đề và icon trong ô */
.product-box h3 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--text-color);
}

.product-box p {
    line-height: 1.6;
    /* Giãn dòng ra cho dễ đọc */
    width: 100%;
    /* Chiếm hết chiều rộng, không bị co cụm */
}

/* 4. Fix cho điện thoại (Mobile) */
@media (max-width: 768px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        /* Về lại 1 cột trên điện thoại */
    }
}
/* === CSS CHO MÁY TÍNH (CALCULATOR) === */
.calc-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #555;
    border-radius: 5px;
    color: #fff;
    font-family: inherit;
}

.calc-input:focus {
    border-color: var(--accent);
    outline: none;
}

.calc-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #aaa;
}

.btn-calc {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-calc:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px var(--accent);
}

.result-box {
    margin-top: 20px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    text-align: center;
    border: 1px dashed #777;
    animation: fadeIn 0.5s ease;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}