/* 51漫画 - 主样式表 */
/* 影视传媒公司视频社区网站 - a-beautyshow.com */

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

:root {
    --primary-color: #9333ea;
    --secondary-color: #ec4899;
    --bg-dark: #0f0f23;
    --bg-card: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --gradient-primary: linear-gradient(135deg, #9333ea 0%, #ec4899 100%);
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部导航样式 */
.header {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(147, 51, 234, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-size: 15px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--text-primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* 搜索框样式 */
.search-bar {
    background: rgba(26, 26, 46, 0.8);
    padding: 15px 20px;
    margin-top: 75px;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 25px;
    background: var(--bg-dark);
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-color);
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-btn {
    padding: 12px 30px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 25px;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(147, 51, 234, 0.4);
}

/* Banner轮播样式 */
.banner-section {
    position: relative;
    overflow: hidden;
    height: 500px;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 15, 35, 0.9) 0%, rgba(15, 15, 35, 0.3) 100%);
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.banner-content {
    max-width: 600px;
}

.banner-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.banner-content h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background: var(--gradient-primary);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

/* 视频卡片样式 */
.section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.view-more {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.view-more:hover {
    color: var(--primary-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.video-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.2);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.1);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(147, 51, 234, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-card:hover .play-btn {
    opacity: 1;
}

.play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent white;
    margin-left: 4px;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
}

.video-info {
    padding: 15px;
}

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

.video-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-size: 13px;
}

.video-stats {
    display: flex;
    gap: 15px;
}

.video-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 分类标签 */
.category-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.category-tag {
    padding: 8px 20px;
    background: var(--bg-card);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-tag:hover,
.category-tag.active {
    background: rgba(147, 51, 234, 0.2);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

/* 专家展示区 */
.expert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.expert-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-5px);
}

.expert-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-color);
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.expert-title {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.expert-desc {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 15px;
}

.expert-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.expert-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* 用户评价 */
.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.review-user {
    flex: 1;
}

.review-name {
    font-size: 15px;
    font-weight: 500;
}

.review-date {
    color: var(--text-secondary);
    font-size: 12px;
}

.review-stars {
    color: #fbbf24;
    font-size: 14px;
}

.review-content {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* 合作品牌 */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.partner-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-secondary);
}

.partner-logo:hover {
    opacity: 1;
}

/* FAQ区域 */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--primary-color);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

/* 联系我们 */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-info {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
}

.contact-text h4 {
    font-size: 15px;
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-secondary);
    font-size: 14px;
}

.qrcode-section {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.qrcode-item p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* 页脚 */
.footer {
    background: var(--bg-card);
    padding: 50px 0 30px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(147, 51, 234, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 13px;
}

.footer-qrcodes {
    display: flex;
    gap: 20px;
}

.footer-qrcode {
    text-align: center;
}

.footer-qrcode img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-bottom: 5px;
}

.footer-qrcode span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* 面包屑导航 */
.breadcrumb {
    padding: 20px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    margin: 0 10px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .expert-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .banner-section {
        height: 400px;
    }
    
    .banner-content h1 {
        font-size: 28px;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .expert-grid {
        grid-template-columns: 1fr;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* 懒加载占位 */
.lazy-load {
    background: linear-gradient(90deg, var(--bg-card) 25%, rgba(147, 51, 234, 0.1) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* 内页样式 */
.page-header {
    background: var(--bg-card);
    padding: 40px 0;
    margin-top: 75px;
}

.page-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.page-desc {
    color: var(--text-secondary);
    font-size: 16px;
}

.content-section {
    padding: 40px 0;
}

.content-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.content-text p {
    margin-bottom: 20px;
}

.content-text h2,
.content-text h3 {
    color: var(--text-primary);
    margin: 30px 0 15px;
}


/* 联系页面额外样式 */
.contact-info h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.contact-info h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    margin-top: 10px;
    border-radius: 2px;
}

/* 视频播放器样式 */
.video-player-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-player-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 直播标签样式 */
.live-tag {
    background: #ef4444;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 12px;
    animation: pulse 2s infinite;
}

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

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* 选中文字样式 */
::selection {
    background: rgba(147, 51, 234, 0.5);
    color: white;
}

/* 链接悬停效果 */
.content-text a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.content-text a:hover {
    color: var(--secondary-color);
}


/* ==================== 新增模块样式 ==================== */

/* 今日更新模块 */
.section-desc {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.update-time {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

/* 服务卡片网格 */
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.3);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* 娱乐专区网格 */
.entertainment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.entertainment-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.entertainment-card:hover {
    transform: translateY(-5px);
}

.entertainment-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.entertainment-info {
    padding: 15px;
}

.entertainment-info h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.entertainment-info p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* AI功能卡片 */
.ai-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.ai-feature-card {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    border: 1px solid rgba(147, 51, 234, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.ai-feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.ai-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.ai-feature-card h4 {
    font-size: 17px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.ai-feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 社区功能网格 */
.community-features {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.community-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.community-card:hover {
    background: rgba(147, 51, 234, 0.15);
    transform: translateY(-3px);
}

.community-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.community-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.community-card p {
    font-size: 12px;
    color: var(--text-secondary);
}

/* 专家资质标签 */
.expert-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 12px;
}

.credential-tag {
    background: rgba(147, 51, 234, 0.2);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    color: var(--primary-color);
}

/* 社区顾问网格 */
.advisor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.advisor-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.advisor-avatar {
    font-size: 48px;
    margin-bottom: 15px;
}

.advisor-card h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.advisor-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.advisor-credential {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.advisor-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 企业资质网格 */
.credentials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.credential-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid rgba(147, 51, 234, 0.1);
    transition: all 0.3s ease;
}

.credential-card:hover {
    border-color: rgba(147, 51, 234, 0.3);
    transform: translateY(-3px);
}

.credential-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.credential-card h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.credential-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* 响应式适配 - 新增模块 */
@media (max-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .entertainment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .community-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .entertainment-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-features {
        grid-template-columns: 1fr;
    }
    
    .community-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advisor-grid {
        grid-template-columns: 1fr;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
}
