/* 内容网格 */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    border: 2px solid #90caf9;
    box-shadow: 0 4px 15px rgba(144, 202, 249, 0.2);
}

.card:hover {
    transform: translateY(-5px);
    border-color: #29b6f6;
    box-shadow: 0 8px 25px rgba(41, 182, 246, 0.3);
}

.card h2 {
    color: #039be5;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.card p {
    color: #4a90e2;
    line-height: 1.6;
}

/* 社交链接 */
.social-container {
    text-align: center;
    margin: 60px 0;
}

.social-link {
    display: inline-block;
    padding: 12px 30px;
    margin: 0 10px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
}

.twitter { background: #03a9f4; }
.telegram { background: #0288d1; }
.sponsor { background: #02d170; }

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(3, 169, 244, 0.3);
}

/* 信条部分 */
@font-face {
    font-family: 'Konosuba';
    src: url('../font/konosuba.ttf') format('truetype');
}

.creeds-section {
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 2px solid #90caf9;
    box-shadow: 0 4px 15px rgba(144, 202, 249, 0.2);
    font-family: 'Konosuba', sans-serif;
}

.creeds-title {
    text-align: center;
    color: #039be5;
    font-size: 2.5em;
    margin-bottom: 30px;
    font-family: 'Konosuba', sans-serif;
}


.creed-item {
    margin-bottom: 25px;
    padding: 15px;
    border-left: 3px solid #03a9f4;
    transition: all 0.3s ease;

}

.creed-item:hover {
    background: rgba(3, 169, 244, 0.1);
    transform: translateX(10px);
}

.special-chant {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(45deg, rgba(3, 169, 244, 0.1), rgba(0, 188, 212, 0.1));
    border-radius: 10px;
}

.chant-text {
    color: #00bcd4;
    font-size: 1.5em;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}