/* Miami RP - Light Theme */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #FF006E;
    --primary-light: #FF4D94;
    --secondary: #00D9FF;
    --accent: #8338EC;
    --bg: #F8F9FA;
    --bg-secondary: #FFFFFF;
    --text: #1A1A2E;
    --text-secondary: #4A4A6A;
    --border: #E5E7EB;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

.gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(at 20% 30%, rgba(255, 0, 110, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(0, 217, 255, 0.1) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(131, 56, 236, 0.08) 0px, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 20px 0;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.brand-text {
    color: var(--text);
}

.brand-accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-item {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-item:hover {
    color: var(--primary);
}

.btn-nav {
    padding: 10px 24px;
    background: var(--primary);
    color: white;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-nav:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

/* Hero Section */
.hero-light {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
}

.hero-container {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title-light {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.title-line {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
}

.title-main {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(60px, 10vw, 90px);
    font-weight: 900;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-primary-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.2);
}

.btn-primary-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.4);
}

.btn-secondary-light {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: white;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.btn-secondary-light:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-icon {
    transition: transform 0.3s;
}

.btn-primary-light:hover .btn-icon {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    padding: 20px 30px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 6s ease-in-out infinite;
}

.card-1 { top: 20%; left: 10%; animation-delay: 0s; }
.card-2 { top: 60%; right: 10%; animation-delay: 2s; }
.card-3 { bottom: 15%; left: 15%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card-icon {
    font-size: 32px;
}

.card-text {
    font-weight: 600;
    color: var(--text);
}

/* Container */
.container-light {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.section-header {
    margin-bottom: 80px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 0, 110, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title-light {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-light {
    padding: 120px 0;
    background: white;
}

.about-grid-light {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.about-card {
    padding: 40px;
    background: var(--bg);
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 72px;
    font-weight: 900;
    color: rgba(255, 0, 110, 0.1);
    line-height: 1;
    margin-bottom: 20px;
}

.about-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.about-card-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Factions Section */
.factions-light {
    padding: 120px 0;
    background: var(--bg);
}

.factions-grid-light {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.faction-card-light {
    padding: 40px;
    background: white;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.4s;
}

.faction-card-light:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.faction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.faction-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.blue { background: rgba(0, 102, 255, 0.1); }
.red { background: rgba(255, 59, 48, 0.1); }
.gold { background: rgba(255, 204, 0, 0.1); }
.purple { background: rgba(131, 56, 236, 0.1); }
.pink { background: rgba(255, 0, 110, 0.1); }
.green { background: rgba(52, 199, 89, 0.1); }

.faction-badge {
    padding: 6px 14px;
    background: var(--bg);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.faction-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 5px;
}

.faction-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.faction-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.faction-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 14px;
    background: rgba(255, 0, 110, 0.08);
    color: var(--primary);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Features Section */
.features-light {
    padding: 120px 0;
    background: white;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-large {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.feature-large.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.feature-large.reverse .feature-visual {
    order: 2;
}

.feature-visual {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.05), rgba(131, 56, 236, 0.05));
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-icon {
    font-size: 120px;
}

.feature-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 20px;
}

.feature-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Community Section */
.community-light {
    padding: 120px 0;
    background: var(--bg);
}

.community-card {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 40px;
    padding: 80px;
    color: white;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.community-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.community-title .gradient-text {
    color: white;
    -webkit-text-fill-color: white;
}

.community-text {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 40px;
}

.community-actions {
    display: flex;
    gap: 20px;
}

.community-actions .btn-primary-light {
    background: white;
    color: var(--primary);
}

.community-actions .btn-secondary-light {
    background: transparent;
    border-color: white;
    color: white;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    font-size: 48px;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.footer-light {
    padding: 80px 0 40px;
    background: white;
    border-top: 1px solid var(--border);
}

.footer-grid-light {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-social-light {
    display: flex;
    gap: 15px;
}

.social-btn {
    padding: 10px 20px;
    background: var(--bg);
    color: var(--text);
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--primary);
    color: white;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom-light {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
}

.footer-disclaimer {
    margin-top: 8px;
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid-light, .factions-grid-light { grid-template-columns: repeat(2, 1fr); }
    .feature-large, .feature-large.reverse { grid-template-columns: 1fr; }
    .community-card { grid-template-columns: 1fr; }
    .footer-grid-light { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { gap: 20px; }
    .hero-actions { flex-direction: column; }
    .about-grid-light, .factions-grid-light { grid-template-columns: 1fr; }
    .floating-card { display: none; }
}
