* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Quicksand', sans-serif;
background: #f5f7fa;
color: #2c3e50;
line-height: 1.8;
}
.peaceful-header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
padding: 4rem 2rem;
text-align: center;
position: relative;
overflow: hidden;
}
.peaceful-header::before {
content: '🕊️';
position: absolute;
font-size: 15rem;
opacity: 0.1;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.peaceful-header h1 {
font-family: 'Poppins', sans-serif;
font-size: 2.8rem;
color: #fff;
font-weight: 900;
position: relative;
z-index: 1;
text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}
.main-container {
max-width: 880px;
margin: 3rem auto;
padding: 0 2rem;
}
.intro-panel {
background: #fff;
padding: 3rem;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
margin-bottom: 3rem;
border-top: 5px solid #667eea;
}
.intro-panel p {
font-size: 1.08rem;
margin-bottom: 1.5rem;
line-height: 1.9;
}
.intro-panel p:last-child { margin-bottom: 0; }
.intro-panel a {
color: #667eea;
text-decoration: none;
font-weight: 700;
border-bottom: 2px solid #667eea;
transition: all 0.3s;
}
.intro-panel a:hover {
color: #764ba2;
border-bottom-color: #764ba2;
}
.rule-card {
background: #fff;
padding: 2.5rem;
margin-bottom: 2rem;
border-radius: 12px;
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
border-left: 6px solid #667eea;
transition: transform 0.3s;
}
.rule-card:hover {
transform: translateY(-3px);
box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}
.rule-card h2 {
font-family: 'Poppins', sans-serif;
color: #667eea;
font-size: 1.9rem;
margin-bottom: 1.5rem;
font-weight: 700;
}
.rule-card h3 {
font-family: 'Poppins', sans-serif;
color: #764ba2;
font-size: 1.4rem;
margin: 1.8rem 0 1rem;
font-weight: 600;
}
.rule-card p {
font-size: 1.05rem;
margin-bottom: 1.3rem;
line-height: 1.85;
}
.peace-box {
background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
padding: 2.5rem;
border-radius: 15px;
margin: 3rem 0;
box-shadow: 0 10px 25px rgba(168,237,234,0.3);
}
.peace-box h3 {
font-family: 'Poppins', sans-serif;
color: #2c3e50;
font-size: 1.8rem;
margin-bottom: 1.5rem;
font-weight: 800;
}
.peace-box p {
font-size: 1.1rem;
line-height: 1.9;
margin-bottom: 1.3rem;
color: #2c3e50;
}
.peace-box p:last-child { margin-bottom: 0; }
.rule-list {
background: #f8f9fa;
padding: 2rem;
border-radius: 10px;
margin: 1.5rem 0;
}
.rule-list ul {
margin: 0;
padding-left: 2rem;
}
.rule-list li {
margin-bottom: 1rem;
line-height: 1.8;
color: #2c3e50;
}
@media (max-width: 768px) {
.peaceful-header h1 {
font-size: 2rem;
}
.main-container {
padding: 0 1.5rem;
}
.rule-card {
padding: 2rem;
}
}
