:root {
    --primary-blue: #1565c0;
    --secondary-blue: #42a5f5;
    --light-blue: #e3f2fd;
    --dark-blue: #0d47a1;
    --accent-silver: #b0bec5;
    --white: #ffffff;
    --dark-text: #0d47a1;
    --light-text: #546e7a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif SC', 'Microsoft YaHei', serif;
    background-color: #f8fbff;
    color: var(--dark-text);
    line-height: 1.6;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(21, 101, 192, 0.05)" width="100" height="100"/></svg>');
}

#wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
}

/* 页面标题区域 */
.page-header {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(21, 101, 192, 0.2);
    position: relative;
    overflow: hidden;
}

.page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path fill="rgba(255, 255, 255, 0.1)" d="M0 0h60v60H0V0zm5 5h50v50H5V5z"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Logo样式 */
.logo {
    text-align: center;
    padding: 20px 0;
}

.logo img {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

/* 视频容器 */
.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 0 40px;
}

.video-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: var(--white);
    border: 1px solid rgba(66, 165, 245, 0.2);
}

.video-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(21, 101, 192, 0.2);
}

video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
}

.video-info {
    padding: 15px;
    background: var(--white);
    border-radius: 0 0 12px 12px;
    border-top: 3px solid var(--primary-blue);
    position: relative;
}

.video-info:before {
    content: '🏨';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-blue);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.video-title {
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 500;
    text-align: center;
}

.video-desc {
    color: var(--light-text);
    font-size: 0.9rem;
    text-align: center;
}

/* 返回按钮 */
.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(21, 101, 192, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.4);
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

.btn-back i {
    margin-right: 8px;
}

/* 背景 */
#bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(120deg, var(--light-blue), #bbdefb);
    opacity: 0.7;
}

/* 装饰元素 */
.decoration {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
    color: var(--primary-blue);
}

.decoration-1 {
    top: 10%;
    left: 5%;
    font-size: 5rem;
}

.decoration-2 {
    bottom: 10%;
    right: 5%;
    font-size: 5rem;
}

/* 酒店元素 */
.hotel-element {
    position: absolute;
    z-index: -1;
    opacity: 0.08;
    color: var(--primary-blue);
    font-size: 7rem;
}

.hotel-1 {
    top: 20%;
    left: 10%;
    transform: rotate(30deg);
}

.hotel-2 {
    bottom: 20%;
    right: 10%;
    transform: rotate(-20deg);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .video-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .btn-back {
        width: 100%;
        max-width: 300px;
        padding: 10px 20px;
    }
    
    .decoration, .hotel-element {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .video-container {
        grid-template-columns: repeat(2, 1fr);
    }
}