body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #f7fafc;
    color: #222;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: linear-gradient(90deg, #6dd5ed 0%, #2193b0 100%);
    color: #fff;
    padding: 2.5rem 0 1.5rem 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(33,147,176,0.08);
}
.site-header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}
.site-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.site-nav {
    background: #fff;
    box-shadow: 0 2px 8px rgba(33,147,176,0.06);
    margin-bottom: 2rem;
}
.site-nav ul {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 1rem 0;
}
.site-nav a {
    color: #2193b0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.site-nav a:hover {
    color: #6dd5ed;
}

main {
    min-height: 60vh;
}

.fan-gallery {
    margin-bottom: 3rem;
}
.fan-gallery h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.fan-gallery p {
    color: #555;
    margin-bottom: 2rem;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.fan-item {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 16px rgba(33,147,176,0.10);
    padding: 1.2rem 1rem 1rem 1rem;
    text-align: center;
    width: 220px;
    transition: transform 0.18s, box-shadow 0.18s;
}
.fan-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 24px rgba(33,147,176,0.18);
}
.fan-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 0.8rem;
    margin-bottom: 0.7rem;
    background: #e3f6fd;
}
.fan-item p {
    font-weight: 500;
    color: #2193b0;
    margin: 0;
}

.about-section, .contact-section {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px rgba(33,147,176,0.07);
    margin-bottom: 2.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
}
.about-section h2, .contact-section h2 {
    color: #2193b0;
    margin-bottom: 0.7rem;
}
.about-section p, .contact-section p {
    color: #444;
    font-size: 1.1rem;
}
.contact-section a {
    color: #6dd5ed;
    text-decoration: underline;
    font-weight: 500;
}

.site-footer {
    background: #2193b0;
    color: #fff;
    text-align: center;
    padding: 1.2rem 0;
    font-size: 1rem;
    border-radius: 1.2rem 1.2rem 0 0;
    margin-top: 2rem;
}

@media (max-width: 700px) {
    .gallery {
        flex-direction: column;
        align-items: center;
    }
    .fan-item {
        width: 90%;
    }
    .container {
        padding: 0 8px;
    }
}