body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0f172a;
    color: #e2e8f0;
}

.team-hero {
    padding: 60px 30px;
    border-radius: 0 0 30px 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.team-hero-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.team-hero-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.team-hero-info .season-rank,
.team-hero-info .team-record,
.team-hero-info .slogan {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.team-hero-info .slogan {
    font-style: italic;
    opacity: 0.85;
}

.team-hero-logo img {
    width: 200px;
    height: auto;
}

.btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

footer {
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* 공통 애니메이션 */
.team-slogan {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    margin-top: 10px;
    animation: sloganFade 2s ease-in-out forwards;
    opacity: 0;
}

@keyframes sloganFade {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* 공통 네온 버튼 스타일 */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    border-radius: 999px;
    background: linear-gradient(to right, #00f0ff, #8b5cf6);
    color: #0f172a;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    border: none;
    text-align: center;
}

/* 공통 호버 효과 */
.btn:hover {
    background: linear-gradient(to right, #8b5cf6, #00f0ff);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
}

.neon-home-btn {
    margin-top: 40px;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.back-home-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 20px;
}


.player-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.player-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
}

.player-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.player-info h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.champion-info {
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffd700; /* 금색 느낌 */
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
}
.search-form {
    text-align: center;
    margin: 30px auto;
}

.search-input {
    width: 220px;
    padding: 10px 14px;
    font-size: 16px;
    border: 2px solid #00ffe1;  /* 네온 블루 */
    background-color: #121212;
    color: #fff;
    border-radius: 8px;
    outline: none;
    transition: box-shadow 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 0 10px #00ffe1;
}

.search-button {
    padding: 10px 18px;
    margin-left: 10px;
    font-size: 16px;
    background-color: #00ffe1;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 8px #00ffe1;
}
