        :root {
            --primary-color: #FFC0CB; /* 粉色 */
            --secondary-color: #F8F8F8; /* 淺灰?*/
            --text-color: #333;
            --accent-color: #FFB6C1; /* 亮粉?*/
            --white-color: #FFFFFF;
            --shadow-color: rgba(0, 0, 0, 0.1);
            --font-family: 'Arial', 'Helvetica', sans-serif;
        }
        body {
            font-family: var(--font-family);
            margin: 0;
            background: linear-gradient(135deg, #FFF0F5, #E6E6FA);
            color: var(--text-color);
            line-height: 1.6;
        }
        .container {
            max-width: 960px;
            margin: 0 auto;
            padding: 20px;
        }
        .header {
            text-align: center;
            padding: 40px 20px;
            background-color: var(--white-color);
            border-radius: 20px;
            box-shadow: 0 4px 15px var(--shadow-color);
            margin-bottom: 30px;
        }
        .header .profile-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 5px solid var(--primary-color);
            object-fit: cover;
            margin-bottom: 20px;
        }
        .header h1 {
            font-size: 2.8em;
            color: var(--primary-color);
            margin: 0;
            font-weight: bold;
        }
        .header p {
            font-size: 1.2em;
            color: #777;
        }
        .live-button {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--white-color);
            padding: 15px 35px;
            text-decoration: none;
            font-size: 1.3em;
            font-weight: bold;
            border-radius: 50px;
            margin-top: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 10px rgba(255, 182, 193, 0.6);
        }
        .live-button:hover {
            transform: scale(1.05);
            box-shadow: 0 6px 15px rgba(255, 182, 193, 0.8);
        }
        .section {
            background-color: var(--white-color);
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 20px;
            box-shadow: 0 4px 15px var(--shadow-color);
        }
        .section h2 {
            font-size: 2em;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        .section h2::after {
            content: '🌸';
            position: absolute;
            right: 10px;
            top: -5px;
            font-size: 0.8em;
        }
        .profile-info ul {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        .profile-info li {
            background-color: var(--secondary-color);
            padding: 15px;
            border-radius: 10px;
        }
        .profile-info strong {
            color: var(--accent-color);
        }
        .gallery {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            text-align: center;
        }
        .gallery-item img {
            width: 100%;
            height: auto;
            border-radius: 15px;
            object-fit: cover;
            border: 3px solid var(--secondary-color);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .gallery-item img:hover {
            transform: scale(1.03);
            box-shadow: 0 4px 15px var(--shadow-color);
        }
        .gallery-item p {
            margin-top: 10px;
            font-style: italic;
            color: #555;
        }
        .career-timeline {
            position: relative;
            padding-left: 30px;
        }
        .career-timeline::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 0;
            bottom: 0;
            width: 3px;
            background-color: var(--primary-color);
        }
        .timeline-item {
            margin-bottom: 20px;
            position: relative;
        }
        .timeline-item::before {
            content: '🎀';
            position: absolute;
            left: -32px;
            top: 0;
            font-size: 1.5em;
        }
        .timeline-item h3 {
            margin: 0 0 5px;
            color: var(--text-color);
        }
        .timeline-item span {
            font-size: 0.9em;
            color: #777;
        }
        .social-media-links {
            text-align: center;
        }
        .social-media-links a {
            margin: 0 15px;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.3s;
        }
        .social-media-links a:hover {
            transform: translateY(-5px);
        }
        .social-media-links img {
            width: 50px;
            height: 50px;
        }
        .footer {
            text-align: center;
            padding: 30px;
            background-color: var(--white-color);
            border-radius: 20px 20px 0 0;
            box-shadow: 0 -4px 15px var(--shadow-color);
        }
        .footer .live-button {
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2em;
            }
            .live-button {
                padding: 12px 28px;
                font-size: 1.1em;
            }
            .gallery {
                grid-template-columns: 1fr;
            }
        }
.flags li {
	display:inline-block;
	padding:5px;
}
.flags ul {
	padding:0px;
}
.flags {
	margin: 0px auto;
	width: 100%;
	text-align: center;
}
.flags img {
	height:30px;
	border: 1px solid #4b4b4b;
}
/* ===== Partners Section ===== */
#partners {
  text-align: center;
  padding: 40px 20px;
}

#partners h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  text-shadow: 0 0 6px rgba(255, 170, 210, 0.6);
}

/* Logo container */
.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
  padding: 10px;
}

/* Logo images */
.partners-logos img {
  width: 90px;
  height: auto;
  border-radius: 16px;
  background: #fff;
  margin: 10px;
  box-shadow: 0 4px 10px rgba(255, 150, 200, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

/* Hover animation:  + Ӱ */
.partners-logos img:hover {
  transform: translateY(-10px) scale(1.08) rotate(2deg);
  box-shadow: 0 8px 20px rgba(255, 120, 180, 0.55);
}

/* ֻ */
@media (max-width: 768px) {
  .partners-logos {
    flex-wrap: wrap;
    gap: 20px;
  }
  .partners-logos img {
    width: 70px;
  }
}
