
@import url('https://fonts.googleapis.com/css2?family=Noto+Naskh+Arabic:wght@400;700&display=swap');

body {
    font-family: 'Alkatip Basma Tom', 'Microsoft Uighur', 'Noto Naskh Arabic', sans-serif;
    background-color: #f5f7fa;
    direction: rtl;
    text-align: right;
    margin: 0;
    padding-bottom: 70px;
}

a { text-decoration: none; color: inherit; }

/* 字体 */
@font-face {
    font-family: "Alkatip Basma Tom";
    src: url('/fonts/ALKATIP.TTF') format("opentype");
     font-weight: normal;
    src: url(/fonts/alkatip3.eot);
}



/* 通用容器 */
.container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* 视频网格 */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .video-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .video-grid { grid-template-columns: repeat(4, 1fr); }
}

/* 视频卡片 */
.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s;
    display: block;
    color: inherit;
}

.video-card:hover { transform: translateY(-3px); }

.video-thumb {
    width: 100%;
    padding-bottom: 56.25%;
    position: relative;
    background: #000;
    overflow: hidden;
}

.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vip-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: linear-gradient(45deg, #ffd700, #ffa500);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
}

.video-info { padding: 10px; }

.video-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.video-meta {
    font-size: 11px;
    color: #999;
    display: flex;
    justify-content: space-between;
}

/* 底部导航 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 1000;
}

.nav-item {
    text-align: center;
    color: #999;
    text-decoration: none;
    font-size: 11px;
    flex: 1;
}

.nav-item.active { color: #667eea; font-weight: bold; }

.nav-icon { font-size: 22px; display: block; margin-bottom: 2px; }

/* 加载动画 */
.loading-spinner {
    text-align: center;
    padding: 20px;
    color: #667eea;
    display: none;
}

/* 空状态 */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

/* 广告容器 */
.ad-container {
    margin: 15px;
    text-align: center;
}

.ad-container img { max-width: 100%; border-radius: 8px; }