*{margin:0;padding:0;box-sizing:border-box;}
@font-face {
  font-family: "idolFont";
  src:  url("/assets/font/IrisIdol.ttf") format("truetype");
}
body{
	display: flex;
	flex-direction: column;
	height: 100%;
    margin:0;
}
main {
	flex: 1;
}
html{
	height: 100%;
	margin: 0;
}
#background{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
}
/* 漂浮图案 */
.shape{
    position:absolute;
    pointer-events:none;
    user-select:none;
}
/* Logo */
.logo img{
height:50px;
transition:0.3s;
}

.logo img:hover{
transform:scale(1.1);
}
/* 导航栏 */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
    background:#1f1f1f;
    color:white;
}

.navbar a{
    color:white;
    margin-left:20px;
    text-decoration:none;
}

.idol {
	padding: 30px 0;
}

.container{
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1600px;
	margin: 0 auto;
	padding: 100px 50px;
}

.idol-img {
  flex: 1; 
}

.idol-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
}

.idol-text {
	flex: 1.2;
	color: none;
	transform: translateY(-20vw);
}

.idol-text h1 {
  font-size: clamp(14px, 5vw, 65px);
  margin-bottom: 10px;
  font-family: "idolFont", sans-serif;
}

.idol-text h2 {
  font-size: clamp(7px, 5vw, 30px);
  margin-bottom: 10px;
  font-family: "idolFont", sans-serif;
}

.idol-text p {
  line-height: 1;
  font-size: clamp(10px, 5vw, 25px);
  color: #807C7B;
  font-weight: bold;
}

.idol-info{
	flex: 1.2;
	color: none;
	transform: translateY(3vw);
}

.idol-infotext{
	flex: 1.2;
	color: none;
}

.idol-infotext p {
    display: inline-block;
    background: linear-gradient(90deg, #ff8fb1, #ffb3a5);
    color: #fff;
    padding: 10px 16px;
    margin: 6px 0;
    font-size: clamp(15px, 5vw, 28px);
    font-weight: bold;
}
.since-text {
	flex: 1.2;
	color: none;
	transform: translateY(3vw);
    }
	
.since-text p {
	font-size: clamp(10px, 5vw, 42px);
    color: rgba(255, 100, 140, 0.5);
    font-style: italic;
}

.idol-intro{
	flex: 1.2;
	color: none;
	transform: translateY(3vw);
}

.idol-introtext{
	flex: 1.2;
	color: none;
	transform: translateY(5vw);
}

.idol-introtext h1 {
  font-size: clamp(10px, 5vw, 25px);
  color: #6C575C;
  font-weight: bold;
  text-align: center;
}

.idol-introtext p {
    display: inline-block;
    background: #FFF1F4;
    color: #817C7D;
    padding: 10px 16px;
    margin: 6px 0;
    font-size: clamp(6px, 5vw, 18px);
    font-weight: bold;
	border-radius: 6px;
	line-height: 1.5;
}

.creator-card-section {
    display: flex;
    justify-content: center;
    margin: 60px 0;
}

.creator-card {
    display: flex;
    align-items: center;
    width: 1200px;
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    background: linear-gradient(135deg, #B4E04B, #E6F9E5);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.creator-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.creator-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.creator-intro {
    flex: 1;
    margin: 0 20px;
    color: #333;
}

.creator-intro h2 {
    margin-bottom: 8px;
}

.creator-intro p {
    font-size: clamp(9px, 5vw, 20px);
    color: #555;
}

.creator-info {
    text-align: right;
    color: #888;
    font-size: clamp(5px, 5vw, 16px);
}

footer{
    background:#1f1f1f;
    color:white;
    text-align:center;
    padding:20px;
    bottom: 0;
    width: 100%;
    z-index: 999;
}
/* 响应式 */
@media (max-width: 1024px) {
.navbar,
.creator-card-section  {
    padding: 15px 30px;
	flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
.navbar,
.creator-card-section  {
    flex-direction: column;
    align-items: flex-start;
	flex-wrap: wrap;
  }
.navbar a {
    margin: 10px 0 0 0;
  }
}
