:root {
    --primary-dark: #121212;
    --secondary-dark: #1e1e1e;
    --accent-color: #d4af37; /* 金色 */
    --text-light: #f5f5f5;
    --text-gray: #b0b0b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: var(--primary-dark);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 20%);
}

.elegant-container {
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
}

.elegant-header {
    text-align: center;
    margin-bottom: 60px;
}

.elegant-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.elegant-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

.template-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.elegant-card {
    width: 350px;
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.elegant-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.elegant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.contact-template {
    border-top: 4px solid var(--accent-color);
}

.info-template {
    border-top: 4px solid #555;
}

.template-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.avatar-circle img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.elegant-btn {
    display: inline-flex;
    align-items: center;
    background: var(--accent-color);
    color: #121212;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    margin-top: 20px;
}

.elegant-btn:hover {
    background: #c9a227;
    transform: scale(1.05);
}

.btn-icon {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.info-template h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-list {
    list-style: none;
    text-align: left;
    width: 100%;
}

.service-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
}

.icon-check {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    margin-right: 10px;
}

.icon-star {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E");
    margin-right: 10px;
}

@media (max-width: 768px) {
    .template-container {
        flex-direction: column;
        align-items: center;
    }
    
    .elegant-card {
        width: 100%;
        max-width: 400px;
    }
    
    .elegant-header h1 {
        font-size: 2rem;
    }
}