* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Helvetica Neue', Arial, 'Microsoft JhengHei', sans-serif;
}
body {
background-color: #fff6f6;
color: #333;
line-height: 1.6;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
}
header {
text-align: center;
padding: 30px 0;
background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
position: relative;
overflow: hidden;
}
header::before {
content: "✊ ✋ ✌️";
font-size: 60px;
position: absolute;
opacity: 0.2;
top: 20px;
left: 0;
right: 0;
}
h1 {
font-size: 2.8rem;
color: #d44d6d;
margin-bottom: 15px;
text-shadow: 2px 2px 0px rgba(255,255,255,0.8);
position: relative;
}
.warning {
background-color: #ffeb3b;
color: #d44d6d;
font-weight: bold;
padding: 15px;
border-radius: 10px;
margin: 20px 0;
text-align: center;
font-size: 1.2rem;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: scale(1); }
50% { transform: scale(1.02); }
100% { transform: scale(1); }
}
.intro {
background-color: white;
padding: 25px;
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.highlight {
color: #d44d6d;
font-weight: bold;
}
.event-info {
background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
color: white;
padding: 30px;
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
.event-info h2 {
text-align: center;
margin-bottom: 25px;
font-size: 2rem;
}
.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.info-item {
background-color: rgba(255, 255, 255, 0.15);
padding: 20px;
border-radius: 10px;
backdrop-filter: blur(5px);
}
.info-item h3 {
margin-bottom: 10px;
display: flex;
align-items: center;
}
.info-item h3::before {
content: "🎯";
margin-right: 10px;
}
.highlights {
background-color: white;
padding: 30px;
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.highlights h2 {
text-align: center;
color: #d44d6d;
margin-bottom: 25px;
}
.highlight-list {
list-style-type: none;
}
.highlight-list li {
padding: 15px;
margin-bottom: 15px;
background-color: #f8f8f8;
border-radius: 10px;
border-left: 5px solid #d44d6d;
display: flex;
align-items: center;
}
.highlight-list li::before {
content: "🌟";
font-size: 1.5rem;
margin-right: 15px;
}
.cta {
text-align: center;
padding: 30px;
background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.cta h2 {
color: #d44d6d;
margin-bottom: 20px;
}
.btn {
display: inline-block;
background-color: #d44d6d;
color: white;
padding: 15px 40px;
border-radius: 50px;
text-decoration: none;
font-weight: bold;
font-size: 1.2rem;
margin-top: 15px;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(212, 77, 109, 0.4);
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(212, 77, 109, 0.6);
}
.hashtags {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
margin-top: 30px;
}
.hashtag {
background-color: #e0e0e0;
padding: 8px 15px;
border-radius: 20px;
font-size: 0.9rem;
color: #666;
}
footer {
text-align: center;
padding: 20px;
color: #888;
font-size: 0.9rem;
}
@media (max-width: 768px) {
h1 {
font-size: 2rem;
}
.info-grid {
grid-template-columns: 1fr;
}
}