* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: ‘Georgia’, ‘Times New Roman’, serif;
background: linear-gradient(135deg, #f5f0eb 0%, #ede5db 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.card {
background: white;
max-width: 480px;
width: 100%;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0,0,0,0.08);
overflow: hidden;
}
.header {
background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
color: white;
padding: 40px 30px;
text-align: center;
}
.header img {
width: 100px;
height: 100px;
border-radius: 50%;
border: 3px solid rgba(255,255,255,0.3);
margin-bottom: 16px;
object-fit: cover;
}
.header h1 {
font-size: 24px;
font-weight: 400;
letter-spacing: 1px;
margin-bottom: 4px;
}
.header p {
font-size: 13px;
opacity: 0.7;
letter-spacing: 0.5px;
}
.body {
padding: 36px 30px;
text-align: center;
}
.body h2 {
font-size: 22px;
font-weight: 400;
color: #333;
margin-bottom: 12px;
line-height: 1.4;
}
.body p {
font-size: 15px;
color: #666;
line-height: 1.6;
margin-bottom: 28px;
}
.stars {
font-size: 36px;
margin-bottom: 28px;
letter-spacing: 4px;
}
.review-btn {
display: inline-block;
background: #4285f4;
color: white;
text-decoration: none;
padding: 16px 40px;
border-radius: 8px;
font-size: 16px;
font-family: ‘Arial’, sans-serif;
font-weight: 600;
letter-spacing: 0.5px;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(66,133,244,0.3);
}
.review-btn:hover {
background: #3367d6;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(66,133,244,0.4);
}
.review-btn svg {
vertical-align: middle;
margin-right: 8px;
}
.footer {
padding: 20px 30px;
text-align: center;
border-top: 1px solid #f0f0f0;
}
.footer p {
font-size: 12px;
color: #999;
}
.footer a {
color: #8B6914;
text-decoration: none;
}
.time-note {
font-size: 13px;
color: #999;
margin-top: 16px;
}