/* =======================================
   FEMBOY ISLAND – Design System & Styles
   ======================================= */

/* CSS Custom Properties */
:root {
    --pink: #FF69B4;
    --pink-light: #FFB6C1;
    --pink-dark: #FF1493;
    --blue: #7EB6FF;
    --blue-light: #A8D8FF;
    --blue-dark: #5B9BD5;
    --rosa: #FFB6C1;
    --red: #FF4B6E;
    --red-soft: #FF6B8A;
    --green-accent: #7FFFD4;
    --green-soft: #98FFD0;

    --bg-dark: #0D0A1A;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.1);
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);

    --gradient-main: linear-gradient(135deg, var(--pink) 0%, var(--blue) 50%, var(--rosa) 100%);
    --gradient-warm: linear-gradient(135deg, var(--red) 0%, var(--pink) 50%, var(--rosa) 100%);
    --gradient-cool: linear-gradient(135deg, var(--blue) 0%, var(--pink) 100%);

    --shadow-glow: 0 0 30px rgba(255, 105, 180, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --font-body: 'Quicksand', sans-serif;
    --font-display: 'Pacifico', cursive;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--pink) var(--bg-dark);
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

html::-webkit-scrollbar-thumb {
    background: var(--pink);
    border-radius: 4px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
}

/* Particle Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}


/* =======================================
   NAVBAR
   ======================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    background: rgba(13, 10, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 105, 180, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 40px;
    background: rgba(13, 10, 26, 0.95);
    box-shadow: 0 4px 30px rgba(255, 105, 180, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 28px;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-5px) rotate(5deg);
    }
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
    padding: 4px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-join-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 24px;
    background: var(--gradient-warm);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 75, 110, 0.4);
}

.nav-join-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 75, 110, 0.6);
}

.btn-sparkle {
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3) rotate(15deg);
    }
}

/* =======================================
   HERO SECTION
   ======================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 60px 60px;
    overflow: hidden;
    z-index: 2;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.25;
    will-change: transform;
    transform: translateZ(0);
}

.shape-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--pink);
    animation: shapeFloat 8s ease-in-out infinite;
}

.shape-2 {
    bottom: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--blue);
    animation: shapeFloat 10s ease-in-out infinite reverse;
}

.shape-3 {
    top: 30%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: var(--rosa);
    animation: shapeFloat 12s ease-in-out infinite;
}

.shape-4 {
    bottom: 10%;
    right: 20%;
    width: 200px;
    height: 200px;
    background: var(--red);
    animation: shapeFloat 9s ease-in-out infinite reverse;
}

.shape-5 {
    top: 60%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: var(--green-accent);
    opacity: 0.15;
    animation: shapeFloat 11s ease-in-out infinite;
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(15px, -10px) scale(1.02);
    }
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 105, 180, 0.15);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 50px;
    font-size: 13px;
    color: var(--pink-light);
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(127, 255, 212, 0.4);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 8px rgba(127, 255, 212, 0);
    }
}

.hero-title {
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.title-line-1 {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-secondary);
    animation-delay: 0.2s;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title-line-2 {
    font-family: var(--font-display);
    font-size: 64px;
    animation-delay: 0.4s;
    margin: 8px 0;
    filter: drop-shadow(0 0 30px rgba(255, 105, 180, 0.5));
}

.title-line-3 {
    font-size: 48px;
    animation-delay: 0.6s;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.hero-subtitle em {
    color: var(--pink-light);
    font-style: italic;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.highlight-text {
    color: var(--blue-light);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gradient-warm);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 75, 110, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 35px rgba(255, 75, 110, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--pink);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 42px;
    font-size: 18px;
    border-radius: var(--radius-xl);
}

.discord-icon {
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 1s backwards;
}

/* Mini Stats in Hero */
.hero-mini-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 1.2s backwards;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-stat-icon {
    font-size: 18px;
}

.mini-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.mini-stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.mini-stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Visual - Floating Island */
.hero-visual {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.floating-island {
    position: relative;
    width: 350px;
    height: 350px;
    animation: islandFloat 6s ease-in-out infinite;
}

@keyframes islandFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.island-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.island-body {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
}

.island-ground {
    width: 200px;
    height: 80px;
    background: linear-gradient(180deg, #4A7C59 0%, #3D6B4C 100%);
    border-radius: 50% 50% 55% 45% / 60% 60% 40% 40%;
    position: relative;
}

.island-sand {
    position: absolute;
    bottom: -5px;
    left: 10px;
    width: 180px;
    height: 30px;
    background: linear-gradient(180deg, #F5DEB3 0%, #DEB887 100%);
    border-radius: 0 0 50% 50%;
}

/* Palm Tree */
.palm-tree {
    position: absolute;
    bottom: 50px;
    left: 60px;
}

.palm-trunk {
    width: 10px;
    height: 80px;
    background: linear-gradient(90deg, #8B6914, #A0782C, #8B6914);
    border-radius: 3px;
    transform: rotate(-5deg);
    transform-origin: bottom center;
}

.palm-leaves {
    position: absolute;
    top: -20px;
    left: -30px;
}

.leaf {
    position: absolute;
    width: 60px;
    height: 20px;
    background: #228B22;
    border-radius: 50% 50% 0 50%;
    transform-origin: right center;
    animation: leafSway 3s ease-in-out infinite;
}

.leaf-1 {
    transform: rotate(-30deg);
    animation-delay: 0s;
}

.leaf-2 {
    transform: rotate(-60deg);
    animation-delay: 0.5s;
}

.leaf-3 {
    transform: rotate(10deg);
    animation-delay: 0.25s;
    top: 5px;
    left: 10px;
}

.leaf-4 {
    transform: rotate(40deg);
    animation-delay: 0.75s;
    top: 10px;
    left: 15px;
}

@keyframes leafSway {

    0%,
    100% {
        transform: rotate(var(--r, -30deg));
    }

    50% {
        transform: rotate(calc(var(--r, -30deg) + 5deg));
    }
}

/* Flag */
.flag {
    position: absolute;
    bottom: 40px;
    right: 30px;
}

.flag-pole {
    width: 4px;
    height: 70px;
    background: #C0C0C0;
    border-radius: 2px;
}

.flag-fabric {
    position: absolute;
    top: 0;
    left: 4px;
    font-size: 24px;
    animation: flagWave 2s ease-in-out infinite;
}

@keyframes flagWave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(-5deg);
    }
}

/* Floating Hearts */
.floating-hearts {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 300px;
}

.float-heart {
    position: absolute;
    bottom: 100px;
    left: 50%;
    font-size: 20px;
    animation: heartFloat 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes heartFloat {
    0% {
        opacity: 0;
        transform: translateX(0) translateY(0) scale(0.5);
    }

    20% {
        opacity: 1;
        transform: translateX(var(--x)) translateY(-30px) scale(1);
    }

    80% {
        opacity: 0.8;
        transform: translateX(calc(var(--x) * -0.5)) translateY(-120px) scale(0.8);
    }

    100% {
        opacity: 0;
        transform: translateX(var(--x)) translateY(-180px) scale(0.3);
    }
}

/* =======================================
   FEATURES SECTION
   ======================================= */
.features {
    position: relative;
    padding: 100px 60px;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    color: var(--pink);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-title.white {
    color: white;
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(255, 105, 180, 0.2);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =======================================
   STATS SECTION
   ======================================= */
.stats-section {
    position: relative;
    padding: 100px 60px;
    background: linear-gradient(180deg, rgba(255, 105, 180, 0.08) 0%, rgba(126, 182, 255, 0.08) 100%);
    z-index: 2;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.stats-wave-1,
.stats-wave-2 {
    position: absolute;
    width: 200%;
    height: 200px;
    opacity: 0.05;
}

.stats-wave-1 {
    top: 0;
    background: repeating-linear-gradient(90deg,
            var(--pink),
            var(--blue) 50%,
            var(--pink) 100%);
    animation: waveMove 15s linear infinite;
    clip-path: polygon(0 50%, 5% 60%, 10% 65%, 15% 60%, 20% 50%, 25% 40%, 30% 35%, 35% 40%, 40% 50%, 45% 60%, 50% 65%, 55% 60%, 60% 50%, 65% 40%, 70% 35%, 75% 40%, 80% 50%, 85% 60%, 90% 65%, 95% 60%, 100% 50%, 100% 100%, 0 100%);
}

.stats-wave-2 {
    bottom: 0;
    background: repeating-linear-gradient(90deg,
            var(--rosa),
            var(--pink) 50%,
            var(--rosa) 100%);
    animation: waveMove 20s linear infinite reverse;
    clip-path: polygon(0 60%, 5% 50%, 10% 45%, 15% 50%, 20% 60%, 25% 70%, 30% 75%, 35% 70%, 40% 60%, 45% 50%, 50% 45%, 55% 50%, 60% 60%, 65% 70%, 70% 75%, 75% 70%, 80% 60%, 85% 50%, 90% 45%, 95% 50%, 100% 60%, 100% 100%, 0 100%);
}

@keyframes waveMove {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    width: 0;
    background: var(--gradient-main);
    border-radius: 2px;
    transition: width 1.5s ease-out;
}

.stat-bar-fill.animate {
    width: var(--width);
}

/* Boost Showcase */
.boost-showcase {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 105, 180, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.boost-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(126, 182, 255, 0.1) 100%);
    z-index: -1;
}

.boost-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--gradient-warm);
    border-radius: 50px;
    margin-bottom: 16px;
}

.boost-level {
    font-weight: 700;
    font-size: 14px;
}

.boost-emoji {
    font-size: 18px;
    animation: rocketBounce 1s ease-in-out infinite;
}

@keyframes rocketBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.boost-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.boost-text strong {
    color: var(--pink-light);
}

.boost-perks {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.perk {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* =======================================
   COMMUNITY / TESTIMONIALS
   ======================================= */
.community-section {
    padding: 100px 60px;
    z-index: 2;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    display: flex;
    gap: 16px;
}

.testimonial-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.testimonial-avatar {
    font-size: 36px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 105, 180, 0.15);
    border-radius: 50%;
}

.testimonial-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-author {
    font-size: 13px;
    color: var(--pink);
    font-weight: 600;
}

/* =======================================
   TEAM SECTION
   ======================================= */
.team-section {
    position: relative;
    padding: 100px 60px;
    z-index: 2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    position: relative;
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: rgba(255, 105, 180, 0.3);
    box-shadow: var(--shadow-glow);
}

.team-card:hover::before {
    opacity: 1;
}

.team-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}


.team-avatar-img {
    position: absolute;
    inset: 5px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 1;
}


.team-avatar-ring {
    position: absolute;
    inset: -5px;
    border: 2px dashed var(--pink);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotateRing 10s linear infinite;
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.team-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.team-role {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.role-owner {
    background: rgba(255, 75, 110, 0.15);
    color: var(--red-soft);
    border: 1px solid rgba(255, 75, 110, 0.3);
}

.role-admin {
    background: rgba(126, 182, 255, 0.15);
    color: var(--blue-light);
    border: 1px solid rgba(126, 182, 255, 0.3);
}

.role-mod {
    background: rgba(127, 255, 212, 0.15);
    color: var(--green-soft);
    border: 1px solid rgba(127, 255, 212, 0.3);
}

.role-manager {
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.role-bot {
    background: rgba(155, 89, 182, 0.15);
    color: #9B59B6;
    border: 1px solid rgba(155, 89, 182, 0.3);
}


.team-bio {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.team-badges {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-badge {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-muted);
}

/* =======================================
   CTA SECTION
   ======================================= */
.cta-section {
    position: relative;
    padding: 120px 60px;
    text-align: center;
    overflow: hidden;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 105, 180, 0.08) 50%, transparent 100%);
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.cta-floating-emojis span {
    position: absolute;
    left: var(--x);
    top: var(--y);
    font-size: 24px;
    animation: floatEmoji var(--duration) ease-in-out infinite;
    opacity: 0.4;
}

@keyframes floatEmoji {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(10deg);
    }

    66% {
        transform: translateY(10px) rotate(-5deg);
    }
}

/* =======================================
   FOOTER
   ======================================= */
.footer {
    padding: 40px 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 2;
    position: relative;
}

.footer-content {
    text-align: center;
}

.footer .logo-icon {
    font-size: 24px;
}

.footer .logo-text {
    font-size: 18px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--pink);
}

.footer-divider {
    color: var(--text-muted);
}

.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}

/* =======================================
   REVEAL ANIMATIONS
   ======================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: var(--delay, 0s);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =======================================
   RESPONSIVE
   ======================================= */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 30px 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-mini-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .title-line-2 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 100px 20px 40px;
    }

    .title-line-1 {
        font-size: 16px;
    }

    .title-line-2 {
        font-size: 36px;
    }

    .title-line-3 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .features,
    .stats-section,
    .community-section,
    .cta-section {
        padding: 60px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 28px;
    }

    .floating-island {
        width: 250px;
        height: 250px;
    }

    .hero-mini-stats {
        flex-direction: column;
        gap: 12px;
    }

    .mini-stat-divider {
        display: none;
    }

    .boost-perks {
        flex-direction: column;
        align-items: center;
    }

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 16px;
    }
}