/* 自定义样式 - 移除了Tailwind基础样式 */
body {
    font-family: 'Inter', sans-serif;
    color: #271D10;
    background-color: #050505;
    overflow-x: hidden;
}
.rayform-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem; /* 32px */
    margin-top: 3rem;
}
/* 树脂按钮样式 */
.btn-resin {
    position: relative;
    padding: 16px 48px;
    border-radius: 9999px;
    font-weight: 800;
    color: #271D10;
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    box-shadow: 
        inset 0 2px 5px rgba(255, 255, 255, 0.7),
        inset 0 -2px 5px rgba(0, 0, 0, 0.2),
        0 10px 25px rgba(212, 175, 55, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.btn-resin::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%
    );
    transform: skewX(-20deg);
    transition: 0.5s;
}

.btn-resin:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        inset 0 2px 10px rgba(255, 255, 255, 0.9),
        inset 0 -2px 5px rgba(0, 0, 0, 0.3),
        0 20px 40px rgba(212, 175, 55, 0.6);
}

.btn-resin:hover::before {
    left: 150%;
    transition: 0.7s ease-in-out;
}

/* 树脂形状 */
.liquid-shape {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    filter: blur(20px);
    transition: all 0.5s ease;
}

/* 轮播动画 */
.slide-active {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
}

.slide-inactive {
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.slide-content-enter {
    animation: slideUpFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 视频网格背景 */
.video-grid {
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .btn-resin {
        padding: 14px 32px;
        font-size: 0.9rem;
    }
    
    .slide-content-enter h1 {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
}