/* ============================================
   FEMALE PHYSIQUE QUEENS - Style
   ============================================ */

:root {
    --primary: #ff6b9d;
    --primary-dark: #c44569;
    --accent: #6c5ce7;
    --dark: #0a0a0a;
    --dark-light: #1a1a2e;
    --dark-card: #16213e;
    --text: #e0e0e0;
    --text-muted: #8892b0;
    --gold: #feca57;
}

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

body {
    font-family: 'Noto Sans JP', 'Oswald', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

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

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(108, 92, 231, 0.08) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(2%, -2%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect fill="url(%23grid)" width="100" height="100"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
}

.hero-title span {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    margin-top: 20px;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ============================================
   FILTER NAV
   ============================================ */

.filter-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
}

.filter-nav .container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    padding: 10px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: transparent;
    color: #fff;
}

/* ============================================
   SECTIONS
   ============================================ */

.intro-section {
    text-align: center;
    padding: 80px 0 40px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.section-desc {
    margin-top: 25px;
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   ATHLETE GRID
   ============================================ */

.athlete-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 0 80px;
}

.athlete-card {
    background: var(--dark-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.athlete-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 157, 0.3);
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.1);
}

.athlete-card.hidden {
    display: none;
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.athlete-card:hover .card-placeholder {
    transform: scale(1.05);
}

.placeholder-icon {
    font-size: 4rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.card-public {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.7rem;
    padding: 4px 10px;
    background: rgba(0, 184, 148, 0.8);
    backdrop-filter: blur(5px);
    color: #fff;
    border-radius: 20px;
    font-weight: 500;
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    color: var(--gold);
    border-radius: 20px;
    border: 1px solid rgba(254, 202, 87, 0.3);
}

.card-body {
    padding: 25px;
}

.card-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
}

.card-country {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.card-followers {
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: 3px;
    font-weight: 500;
}

.public-badge-info {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.public-badge {
    display: inline-block;
    font-size: 0.75rem;
    padding: 3px 10px;
    background: rgba(0, 184, 148, 0.2);
    color: #00b894;
    border-radius: 12px;
    border: 1px solid rgba(0, 184, 148, 0.3);
}

.footer-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 8px;
    opacity: 0.7;
}

.card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-top: 12px;
}

.card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
    background: rgba(255, 107, 157, 0.1);
    color: var(--primary);
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.15), rgba(131, 58, 180, 0.15));
    border: 1px solid rgba(225, 48, 108, 0.3);
    border-radius: 25px;
    color: #e1306c;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.3), rgba(131, 58, 180, 0.3));
    transform: translateX(3px);
}

.ig-icon {
    width: 18px;
    height: 18px;
    fill: #e1306c;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-section {
    padding: 40px 0 80px;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
    margin-top: 40px;
    text-align: left;
}

.blog-card {
    background: var(--dark-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 92, 231, 0.3);
}

.blog-image {
    height: 160px;
}

.blog-body {
    padding: 20px;
}

.blog-date {
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.1em;
}

.blog-body h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-top: 8px;
    line-height: 1.5;
}

.blog-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 10px;
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 30px;
}

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

.footer-brand h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    color: #fff;
    letter-spacing: 0.1em;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 10px;
}

.footer-links h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   ANIMATIONS
   ============================================ */

.athlete-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.athlete-card:nth-child(1) { animation-delay: 0.05s; }
.athlete-card:nth-child(2) { animation-delay: 0.1s; }
.athlete-card:nth-child(3) { animation-delay: 0.15s; }
.athlete-card:nth-child(4) { animation-delay: 0.2s; }
.athlete-card:nth-child(5) { animation-delay: 0.25s; }
.athlete-card:nth-child(6) { animation-delay: 0.3s; }
.athlete-card:nth-child(7) { animation-delay: 0.35s; }
.athlete-card:nth-child(8) { animation-delay: 0.4s; }
.athlete-card:nth-child(9) { animation-delay: 0.45s; }
.athlete-card:nth-child(10) { animation-delay: 0.5s; }
.athlete-card:nth-child(11) { animation-delay: 0.55s; }
.athlete-card:nth-child(12) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MUSCLELOVE BRANDING
   ============================================ */

.hero-powered {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.musclelove-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.musclelove-link:hover {
    color: var(--gold);
}

.musclelove-promo {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 107, 157, 0.08);
    border: 1px solid rgba(255, 107, 157, 0.2);
    border-radius: 10px;
}

.musclelove-promo p {
    font-size: 0.85rem;
    color: var(--text);
    margin-bottom: 10px;
}

.musclelove-btn {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.musclelove-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .hero-stats {
        gap: 30px;
    }

    .athlete-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
