/* Hi Fu Mi - Styles */
/* Playful, mystical gaming universe aesthetic */

:root {
    --hifumi-primary: #4ECDC4;
    --hifumi-secondary: #45B7AA;
    --hifumi-accent: #FFE66D;
    --hifumi-dark: #1a1a2e;
    --hifumi-darker: #0f0f1a;
    --hifumi-light: #E8F5F3;
    --hifumi-mystical: #a855f7;
    --hifumi-gradient: linear-gradient(135deg, #4ECDC4 0%, #45B7AA 50%, #3AA99D 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fredoka', sans-serif;
    background: var(--hifumi-darker);
    color: var(--hifumi-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Pattern */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(78, 205, 196, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 230, 109, 0.05) 0%, transparent 70%);
    z-index: -1;
    animation: bgPulse 10s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(78, 205, 196, 0.2);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--hifumi-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.logo-icon {
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--hifumi-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--hifumi-gradient);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: var(--hifumi-dark) !important;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(78, 205, 196, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    z-index: 1;
}

.hero-icon {
    margin-bottom: 2rem;
}

.hero-icon img {
    width: 150px;
    height: 150px;
    border-radius: 30px;
    box-shadow: 
        0 10px 40px rgba(78, 205, 196, 0.3),
        0 0 60px rgba(78, 205, 196, 0.2);
    animation: floatIcon 4s ease-in-out infinite;
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--hifumi-primary), var(--hifumi-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--hifumi-mystical);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(232, 245, 243, 0.8);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: floatAround 8s ease-in-out infinite;
}

.float-1 { top: 20%; left: 10%; animation-delay: 0s; }
.float-2 { top: 30%; right: 15%; animation-delay: 2s; }
.float-3 { bottom: 25%; left: 20%; animation-delay: 4s; }
.float-4 { bottom: 35%; right: 10%; animation-delay: 6s; }

@keyframes floatAround {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(10deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-30px) rotate(5deg); }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--hifumi-gradient);
    color: var(--hifumi-dark);
    box-shadow: 0 5px 25px rgba(78, 205, 196, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(78, 205, 196, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--hifumi-light);
    border: 2px solid var(--hifumi-primary);
}

.btn-secondary:hover {
    background: var(--hifumi-primary);
    color: var(--hifumi-dark);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: 6rem 2rem;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--hifumi-primary), var(--hifumi-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: rgba(232, 245, 243, 0.7);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* World Section */
.world {
    background: rgba(26, 26, 46, 0.5);
}

.world-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.world-card {
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.world-card:hover {
    transform: translateY(-5px);
    background: rgba(78, 205, 196, 0.15);
    border-color: var(--hifumi-primary);
    box-shadow: 0 10px 40px rgba(78, 205, 196, 0.2);
}

.world-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.world-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--hifumi-primary);
}

.world-card p {
    color: rgba(232, 245, 243, 0.7);
}

/* Creatures Section */
.creatures-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.creature-card {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.2), rgba(78, 205, 196, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 160px;
}

.creature-card:hover {
    transform: scale(1.05);
    border-color: var(--hifumi-mystical);
    box-shadow: 0 5px 30px rgba(168, 85, 247, 0.3);
}

.creature-type {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--hifumi-accent);
}

.creature-card p {
    font-size: 0.9rem;
    color: rgba(232, 245, 243, 0.6);
}

/* Law Badges in Hero */
.hero-cta-box {
    margin-top: 2rem;
}

.law-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.law-badge {
    background: rgba(78, 205, 196, 0.15);
    border: 1px solid rgba(78, 205, 196, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--hifumi-primary);
}

.law-badge em {
    font-style: normal;
    color: rgba(232, 245, 243, 0.7);
    font-weight: 400;
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

/* Universal Law Section */
.universal-law {
    background: rgba(168, 85, 247, 0.1);
    padding: 5rem 2rem;
    text-align: center;
}

.law-content {
    max-width: 800px;
    margin: 0 auto;
}

.law-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--hifumi-accent);
    line-height: 1.8;
    border-left: 4px solid var(--hifumi-mystical);
    padding-left: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.law-description {
    font-size: 1.1rem;
    color: rgba(232, 245, 243, 0.8);
    line-height: 1.8;
}

/* Origins Section */
.origins {
    background: rgba(26, 26, 46, 0.5);
}

.origins-story {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.origin-card {
    background: rgba(78, 205, 196, 0.08);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.origin-card:hover {
    transform: translateY(-5px);
    border-color: var(--hifumi-primary);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.15);
}

.origin-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.origin-card h3 {
    font-size: 1.4rem;
    color: var(--hifumi-primary);
    margin-bottom: 1rem;
}

.origin-card p {
    color: rgba(232, 245, 243, 0.8);
    line-height: 1.7;
}

/* Token History */
.token-history {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(78, 205, 196, 0.2);
}

.token-history > h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--hifumi-accent);
    margin-bottom: 2rem;
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.token-card {
    background: rgba(255, 230, 109, 0.1);
    border: 1px solid rgba(255, 230, 109, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.token-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.token-card h4 {
    color: var(--hifumi-accent);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.token-card p {
    color: rgba(232, 245, 243, 0.7);
    font-size: 0.95rem;
}

.token-process {
    background: rgba(78, 205, 196, 0.05);
    border-radius: 20px;
    padding: 2rem;
}

.token-process h4 {
    text-align: center;
    color: var(--hifumi-primary);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.process-step span {
    width: 40px;
    height: 40px;
    background: var(--hifumi-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hifumi-dark);
    font-weight: 700;
    flex-shrink: 0;
}

.process-step p {
    color: rgba(232, 245, 243, 0.8);
    font-size: 0.95rem;
}

/* Islands Section */
.islands {
    padding: 6rem 2rem;
}

.island-clusters {
    max-width: 1400px;
    margin: 0 auto;
}

.cluster {
    margin-bottom: 4rem;
}

.cluster-title {
    font-size: 1.6rem;
    color: var(--hifumi-mystical);
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--hifumi-mystical);
}

.island-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.island-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(78, 205, 196, 0.15);
    border-radius: 16px;
    padding: 1.8rem;
    position: relative;
    transition: all 0.3s ease;
}

.island-card:hover {
    transform: translateY(-5px);
    border-color: var(--hifumi-primary);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.15);
}

.island-number {
    position: absolute;
    top: -10px;
    left: 15px;
    background: var(--hifumi-gradient);
    color: var(--hifumi-dark);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.island-card h4 {
    color: var(--hifumi-primary);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    margin-top: 0.5rem;
}

.island-type {
    color: var(--hifumi-accent);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.island-card p:last-child {
    color: rgba(232, 245, 243, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
}

.island-eden {
    border-color: rgba(255, 230, 109, 0.3);
    background: linear-gradient(145deg, rgba(255, 230, 109, 0.1), rgba(26, 26, 46, 0.8));
}

.island-dark {
    border-color: rgba(168, 85, 247, 0.3);
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.15), rgba(26, 26, 46, 0.8));
}

.island-champion {
    border-color: rgba(255, 107, 107, 0.3);
    background: linear-gradient(145deg, rgba(255, 107, 107, 0.1), rgba(26, 26, 46, 0.8));
}

/* Characters Section */
.characters {
    background: rgba(26, 26, 46, 0.5);
    padding: 6rem 2rem;
}

.character-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.character-card {
    background: rgba(78, 205, 196, 0.08);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.character-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.15);
}

.character-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.character-icon {
    font-size: 2.5rem;
}

.character-origin {
    font-size: 0.8rem;
    color: var(--hifumi-mystical);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.character-card h3 {
    font-size: 1.5rem;
    color: var(--hifumi-primary);
    margin-bottom: 0.3rem;
}

.character-role {
    color: var(--hifumi-accent);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.character-card p:last-child {
    color: rgba(232, 245, 243, 0.75);
    line-height: 1.7;
}

.character-seeker {
    border-color: rgba(78, 205, 196, 0.4);
    background: linear-gradient(145deg, rgba(78, 205, 196, 0.15), rgba(26, 26, 46, 0.8));
}

.character-villain {
    border-color: rgba(255, 107, 107, 0.3);
    background: linear-gradient(145deg, rgba(255, 107, 107, 0.1), rgba(26, 26, 46, 0.8));
}

.character-dark {
    border-color: rgba(168, 85, 247, 0.4);
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.15), rgba(26, 26, 46, 0.8));
}

.character-champion {
    border-color: rgba(255, 230, 109, 0.3);
    background: linear-gradient(145deg, rgba(255, 230, 109, 0.1), rgba(26, 26, 46, 0.8));
}

.character-tragic {
    border-color: rgba(255, 230, 109, 0.4);
    background: linear-gradient(145deg, rgba(255, 230, 109, 0.15), rgba(26, 26, 46, 0.8));
}

/* Story Section */
.story {
    padding: 6rem 2rem;
}

.story-acts {
    max-width: 900px;
    margin: 0 auto;
}

.act {
    margin-bottom: 3rem;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(78, 205, 196, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.act-header {
    background: var(--hifumi-gradient);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.act-number {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--hifumi-dark);
    opacity: 0.8;
}

.act-header h3 {
    font-size: 1.5rem;
    color: var(--hifumi-dark);
}

.act-content {
    padding: 2rem;
}

.act-content p {
    color: rgba(232, 245, 243, 0.85);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.antagonist-list {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.antagonist-list h4 {
    color: #FF6B6B;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.antagonist-list ul {
    list-style: none;
    padding: 0;
}

.antagonist-list li {
    color: rgba(232, 245, 243, 0.8);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.antagonist-list li::before {
    content: "⚠";
    position: absolute;
    left: 0;
}

.choice-box {
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.choice-box h4 {
    color: var(--hifumi-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    text-align: center;
}

.choices {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.choice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(26, 26, 46, 0.5);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.choice:hover {
    background: rgba(78, 205, 196, 0.15);
}

.choice-icon {
    font-size: 1.5rem;
}

.choice p {
    margin: 0;
    color: rgba(232, 245, 243, 0.85);
}

/* Themes Section */
.themes {
    background: rgba(168, 85, 247, 0.08);
    padding: 6rem 2rem;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.theme-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-5px);
    border-color: var(--hifumi-mystical);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
}

.theme-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.theme-card h3 {
    color: var(--hifumi-mystical);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.theme-card p {
    color: rgba(232, 245, 243, 0.75);
    line-height: 1.6;
}

/* Evolution Section */
.evolution {
    padding: 6rem 2rem;
}

.evolution-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.evolution-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--hifumi-primary), var(--hifumi-mystical));
}

.evo-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 30px;
}

.evo-dot {
    position: absolute;
    left: -25px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--hifumi-primary);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.5);
}

.evo-content h4 {
    color: var(--hifumi-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.evo-content p {
    color: rgba(232, 245, 243, 0.8);
    line-height: 1.7;
}

/* Gameplay Section */
.gameplay {
    background: rgba(26, 26, 46, 0.5);
}

.gameplay-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.gameplay-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 220px;
}

.gp-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.gameplay-item h3 {
    font-size: 1.4rem;
    color: var(--hifumi-primary);
    margin-bottom: 0.5rem;
}

.gameplay-item p {
    color: rgba(232, 245, 243, 0.7);
}

/* Future Section */
.future-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.future-card {
    background: rgba(255, 230, 109, 0.1);
    border: 1px solid rgba(255, 230, 109, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    min-width: 180px;
    transition: all 0.3s ease;
}

.future-card:hover {
    transform: translateY(-5px);
    border-color: var(--hifumi-accent);
    box-shadow: 0 10px 30px rgba(255, 230, 109, 0.2);
}

.future-card span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.future-card h3 {
    color: var(--hifumi-accent);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.future-card p {
    color: rgba(232, 245, 243, 0.6);
    font-size: 0.85rem;
}

/* Play Section */
.play {
    text-align: center;
    padding: 8rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(78, 205, 196, 0.1));
}

/* Footer */
.footer {
    background: var(--hifumi-dark);
    padding: 3rem 2rem;
    border-top: 1px solid rgba(78, 205, 196, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--hifumi-primary);
    margin-bottom: 0.25rem;
}

.footer-brand p {
    color: rgba(232, 245, 243, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(232, 245, 243, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-copyright {
    width: 100%;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(78, 205, 196, 0.1);
    color: rgba(232, 245, 243, 0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-icon img {
        width: 120px;
        height: 120px;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .gameplay-features {
        gap: 2rem;
    }
}

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

    .btn {
        padding: 0.8rem 2rem;
    }
}
