/* 静态开发页面样式 */
.dev-main {
    padding: 80px 0;
}

.dev-hero {
    background: linear-gradient(135deg, #F8F5FA 0%, #FFF9F0 100%);
    padding: 100px 0;
    text-align: center;
}

.dev-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--champagne-gold), #A67C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.tech-card {
    background: var(--pure-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(168, 134, 200, 0.12);
    transition: all 0.4s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(168, 134, 200, 0.25);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.tech-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tech-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

@media (max-width: 992px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .dev-hero h1 {
        font-size: 2rem;
    }
}
