* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #f59e0b;
    --primary-yellow-dark: #d97706;
    --primary-yellow-light: #fbbf24;
    --primary-pink: #ec4899;
    --primary-pink-dark: #db2777;
    --primary-pink-light: #f472b6;
    --bg-light: #fffbeb;
    --bg-pink-light: #fdf2f8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fffbf5;
}

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

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
}

.logo .tagline {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 2px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary-pink);
}

.hero {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-pink) 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 20px;
    opacity: 0.95;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--primary-pink) 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

.services {
    padding: 80px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-pink-light) 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(245, 158, 11, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.service-card p {
    color: #6b7280;
    font-size: 14px;
}

.websites {
    padding: 80px 0;
    background: linear-gradient(180deg, #fffbf5 0%, #fff5f8 100%);
}

.websites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.website-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.website-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.15);
}

.website-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
}

.website-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.website-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    text-align: center;
}

.website-card p {
    color: #6b7280;
    font-size: 14px;
    text-align: center;
}

.members {
    padding: 80px 0;
    background: #fff;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.member-card {
    background: linear-gradient(135deg, var(--bg-pink-light) 0%, var(--bg-light) 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(236, 72, 153, 0.1);
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-yellow-light) 0%, var(--primary-pink-light) 100%);
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.2);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.member-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
}

.member-card p {
    color: #6b7280;
    font-size: 14px;
}

.contact {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff5f8 0%, #fffbf5 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.contact-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(236, 72, 153, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.contact-value {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-btn {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-pink) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 10px;
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(236, 72, 153, 0.3);
}

.qr-code {
    margin-top: 15px;
}

.qr-code img {
    max-width: 150px;
    border-radius: 8px;
}

.empty-text {
    text-align: center;
    color: #9ca3af;
    font-size: 16px;
    padding: 40px 0;
}

.footer {
    background: linear-gradient(135deg, #1f1815 0%, #2d1f2a 100%);
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-yellow-light) 0%, var(--primary-pink-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.footer-info p {
    color: #d1d5db;
}

.footer-icp p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-icp a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-icp a:hover {
    color: var(--primary-pink-light);
}

.footer-icp .domain {
    margin-left: 10px;
    color: #9ca3af;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
    color: #9ca3af;
    font-size: 14px;
}

.copyright p {
    margin-bottom: 10px;
}

.icp-info {
    margin-top: 15px;
}

.icp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.icp-link:hover {
    color: var(--primary-pink-light);
}

.icp-icon {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
