/* ═══════════════════════════════════════════════════════════════════════════
   PAGE-SPECIFIC STYLES - Block Worlds
   Portal World Theme - Scroll through different elemental worlds
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── World Background System ─────────────────────────────────────────────── */

.world-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: var(--space-24) 0;
}

.world-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.world-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 20, 0.65);
    z-index: 1;
}

.section-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind content but above background */
    pointer-events: none;
}

/* Subtle Line Transition Effects */
.portal-transition {
    position: absolute;
    left: 0;
    right: 0;
    height: 40px;
    z-index: 5;
    pointer-events: none;
}

.portal-transition.portal-top {
    top: 0;
    background: linear-gradient(180deg,
            rgba(10, 12, 20, 0.9) 0%,
            transparent 100%);
}

/* Subtle glowing line - top */
.portal-transition.portal-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(100, 180, 255, 0.4) 20%,
            rgba(180, 120, 255, 0.5) 50%,
            rgba(100, 180, 255, 0.4) 80%,
            transparent 100%);
    box-shadow: 0 0 15px rgba(140, 140, 255, 0.4);
    animation: lineShimmer 6s ease-in-out infinite;
}

.portal-transition.portal-bottom {
    bottom: 0;
    background: linear-gradient(0deg,
            rgba(10, 12, 20, 0.9) 0%,
            transparent 100%);
}

/* Subtle glowing line - bottom */
.portal-transition.portal-bottom::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(100, 180, 255, 0.4) 20%,
            rgba(180, 120, 255, 0.5) 50%,
            rgba(100, 180, 255, 0.4) 80%,
            transparent 100%);
    box-shadow: 0 0 15px rgba(140, 140, 255, 0.4);
    animation: lineShimmer 6s ease-in-out infinite reverse;
}

@keyframes lineShimmer {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* ─── World Backgrounds ───────────────────────────────────────────────────── */

/* Portal/Cosmic World */
.world-portal .world-bg {
    background-image: url('../assets/images/bg_portal_hero_v2.png');
}

.world-portal .world-bg::after {
    background: linear-gradient(180deg,
            rgba(10, 12, 20, 0.4) 0%,
            rgba(20, 10, 40, 0.6) 50%,
            rgba(10, 12, 20, 0.85) 100%);
}

/* Ocean World */
.world-ocean .world-bg {
    background-image: url('../assets/images/bg-ocean.png');
}

.world-ocean .world-bg::after {
    background: linear-gradient(180deg,
            rgba(5, 20, 40, 0.5) 0%,
            rgba(10, 30, 50, 0.65) 50%,
            rgba(10, 12, 20, 0.85) 100%);
}

.world-ocean .intro-title {
    background: linear-gradient(135deg, #4dd0e1, #00bcd4, #26c6da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Grass/Paradise World */
.world-grass .world-bg {
    background-image: url('../assets/images/bg-grass.png');
}

.world-grass .world-bg::after {
    background: linear-gradient(180deg,
            rgba(10, 30, 20, 0.5) 0%,
            rgba(20, 40, 25, 0.65) 50%,
            rgba(10, 12, 20, 0.85) 100%);
}

/* Fire World */
.world-fire .world-bg {
    background-image: url('../assets/images/bg-fire.png');
}

.world-fire .world-bg::after {
    background: linear-gradient(180deg,
            rgba(40, 15, 10, 0.5) 0%,
            rgba(30, 10, 5, 0.65) 50%,
            rgba(10, 12, 20, 0.85) 100%);
}

/* Ice World */
.world-ice .world-bg {
    background-image: url('../assets/images/bg-ice.png');
}

.world-ice .world-bg::after {
    background: linear-gradient(180deg,
            rgba(15, 25, 45, 0.5) 0%,
            rgba(20, 30, 50, 0.65) 50%,
            rgba(10, 12, 20, 0.85) 100%);
}

/* Desert World */
.world-desert .world-bg {
    background-image: url('../assets/images/bg-desert.png');
}

.world-desert .world-bg::after {
    background: linear-gradient(180deg,
            rgba(45, 30, 15, 0.5) 0%,
            rgba(50, 35, 20, 0.65) 50%,
            rgba(10, 12, 20, 0.85) 100%);
}

/* Crystal Caves World */
.world-crystal .world-bg {
    background-image: url('../assets/images/bg-crystal.png');
}

.world-crystal .world-bg::after {
    background: linear-gradient(180deg,
            rgba(25, 15, 40, 0.5) 0%,
            rgba(30, 20, 45, 0.65) 50%,
            rgba(10, 12, 20, 0.85) 100%);
}

/* Storm World */
.world-storm .world-bg {
    background-image: url('../assets/images/bg-storm.png');
}

.world-storm .world-bg::after {
    background: linear-gradient(180deg,
            rgba(20, 15, 35, 0.5) 0%,
            rgba(25, 20, 40, 0.65) 50%,
            rgba(10, 12, 20, 0.85) 100%);
}

/* Sky World */
.world-sky .world-bg {
    background-image: url('../assets/images/bg-sky.png');
}

.world-sky .world-bg::after {
    background: linear-gradient(180deg,
            rgba(40, 25, 30, 0.5) 0%,
            rgba(35, 25, 35, 0.65) 50%,
            rgba(10, 12, 20, 0.85) 100%);
}

/* ─── Navigation ──────────────────────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: var(--space-4) 0;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.navbar.scrolled {
    background: rgba(10, 12, 18, 0.95);
    backdrop-filter: var(--blur-glass);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-3) 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: var(--tracking-wide);
}

.nav-logo span {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-links a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: var(--tracking-wide);
    transition: color var(--duration-fast) var(--ease-smooth);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    /* Added shadow for contrast */
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.nav-links a:not(.btn):hover {
    color: var(--color-text-primary);
}

.nav-links a:not(.btn):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Initially hide Discord button in Navbar */
.navbar .btn-discord {
    /* Ensure matching height */
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;

    opacity: 0;
    visibility: hidden;
    /* Start from below (sucked up effect), slightly smaller, motion blurred */
    transform: translateY(40px) scale(0.8) skewX(-10deg);
    pointer-events: none;
    max-width: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    filter: blur(12px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Visible state on scroll */
.navbar.scrolled .btn-discord {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1) skewX(0);
    pointer-events: all;
    max-width: 200px;
    padding: 0 var(--space-6);
    filter: blur(0);
}

/* ─── Navbar IP Widget ────────────────────────────────────────────────────── */

.nav-ip-widget {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 48px;
    /* Explicit height to match Discord button */

    gap: var(--space-3);
    padding: 0 var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Initially hidden/collapsed */
    opacity: 0;
    /* Start from below, simulating being sucked up from the page */
    transform: translateY(40px) scale(0.8) skewX(-10deg);
    pointer-events: none;
    max-width: 0;
    margin: 0;
    visibility: hidden;
    overflow: hidden;
    filter: blur(12px);
}

.navbar.scrolled .nav-ip-widget {
    opacity: 1;
    transform: translateY(0) scale(1) skewX(0);
    pointer-events: all;
    max-width: 250px;
    /* Expand to reveal */
    visibility: visible;
    margin-right: var(--space-4);
    filter: blur(0);
    padding: 0 var(--space-4);
}

.nav-ip-widget:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-primary);
}

.nav-ip-widget.copied {
    border-color: var(--color-success);
    background: rgba(10, 40, 20, 0.6);
}

.nav-ip-code {
    font-family: 'Courier New', monospace;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-primary);
    white-space: nowrap;
}

.nav-ip-widget svg {
    color: var(--color-text-secondary);
    transition: color 0.2s ease;
}

.nav-ip-widget:hover svg {
    color: var(--color-primary);
}

/* ─── Hero Section ────────────────────────────────────────────────────────── */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-20) 0;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    align-items: stretch;
    /* Ensure same height */
}

/* Make both elements identical height and centered */
.hero-cta .btn,
.hero-ip-widget {
    height: 56px;
    /* Explicit height */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 40%, hsla(270, 80%, 50%, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 20% 80%, hsla(185, 60%, 55%, 0.15) 0%, transparent 50%);
    z-index: 1;
}

#particles-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    padding: 0 var(--space-4);
    position: relative;
    z-index: 4;
}

.hero-logo {
    max-width: 700px;
    width: 100%;
    height: auto;
    display: block;
    /* Ensure block level */
    margin: 0 auto var(--space-8) auto;
    /* Top Right Bottom Left - Center horizontally */
    filter: drop-shadow(0 0 50px rgba(var(--color-primary-rgb), 0.6));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: #ffffff;
    /* Brighter text */
    margin-bottom: var(--space-10);
    max-width: 700px;
    margin-inline: auto;
    line-height: var(--leading-relaxed);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    /* Strong shadow */
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--color-text-muted);
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wider);
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
    z-index: 10;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-primary);
}

/* ─── Hero IP Widget ──────────────────────────────────────────────────────── */

.hero-ip-widget {
    display: inline-flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-8);
    background: rgba(15, 18, 28, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
    user-select: none;
    height: 56px;
    /* Match btn-lg height */
}

.hero-ip-widget:hover {
    background: rgba(15, 18, 28, 0.8);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-ip-widget:active {
    transform: translateY(0);
}

.hero-ip-icon {
    display: flex;
    color: var(--color-text-secondary);
    transition: color var(--duration-fast) var(--ease-smooth);
}

.hero-ip-widget:hover .hero-ip-icon {
    color: var(--color-primary);
}

.hero-ip-code {
    font-family: 'Courier New', monospace;
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-text-primary);
    letter-spacing: 1px;
}

.hero-ip-copy-text {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: var(--space-4);
}

.hero-ip-widget.copied {
    border-color: var(--color-success);
    background: rgba(10, 40, 20, 0.8);
}

.hero-ip-widget.copied .hero-ip-icon,
.hero-ip-widget.copied .hero-ip-copy-text {
    color: var(--color-success);
}

/* ─── Intro Section ───────────────────────────────────────────────────────── */

.intro {
    padding: var(--space-24) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;

    /* Glass Card Style */
    padding: var(--space-8) var(--space-10);
    background: rgba(15, 18, 28, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.intro-content:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.intro-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: var(--space-6);

    /* Matching Gradient Style */
    background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(34, 211, 238, 0.3));
}

.intro-text {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

/* ─── Feature Sections ────────────────────────────────────────────────────── */

.feature-section {
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
}

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

.feature-block-reverse {
    direction: rtl;
}

.feature-block-reverse>* {
    direction: ltr;
}

.feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* Center align items */
    align-self: center;
    padding: var(--space-6) var(--space-8);
    /* Compact padding */
    background: rgba(15, 18, 28, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
    /* Slightly tighter radius */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    text-align: center;
    /* Center text */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 550px;
    /* Constrain width for better readability */
    width: 100%;
    /* Ensure full width on mobile up to max */
}

.feature-text:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Feature Fancy Text Titles */
.feature-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-4);
    letter-spacing: 0.02em;

    /* Fancy Gradient Text */
    background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 50%, #22d3ee 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    /* Text Shadow for depth */
    filter: drop-shadow(0 2px 10px rgba(34, 211, 238, 0.3));
}

/* Variant colors for different worlds if needed, or keep unified style */
.feature-block-reverse .feature-text {
    text-align: center;
    /* Keep centered even in reverse */
}

.feature-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    /* Brighter text on dark glass */
    line-height: 1.7;
    max-width: 100%;
    margin: 0 auto;
    /* Center margin */
}

.feature-block-reverse .feature-description {
    margin: 0 auto;
}

.feature-image {
    perspective: 1000px;
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: transform var(--duration-normal) var(--ease-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-block:hover .feature-image img {
    transform: translateY(-10px) rotateX(2deg);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(38, 198, 218, 0.2);
}

/* ─── Community Section ───────────────────────────────────────────────────── */

.community {
    padding: var(--space-32) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.community-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;

    /* Glass Card Style for Community */
    padding: var(--space-12) var(--space-10);
    background: rgba(15, 18, 28, 0.85);
    /* Slightly darker for footer */
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.community-title-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: var(--space-6);
    filter: drop-shadow(0 0 30px rgba(150, 100, 255, 0.5));
    transition: transform var(--duration-normal) var(--ease-smooth);
}

.community-title-img:hover {
    transform: scale(1.05);
}

.community-text {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-12);
    line-height: var(--leading-relaxed);
}

.community-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.server-ip {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    justify-content: center;
}

.server-ip-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

/* ─── Footer ──────────────────────────────────────────────────────────────── */

.footer {
    padding: var(--space-12) 0 var(--space-6);
    background: rgba(5, 8, 15, 0.98);
    border-top: 1px solid var(--color-border);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    color: var(--color-text-primary);
}

.footer-logo span {
    color: var(--color-primary);
}

.footer-links {
    display: flex;
    gap: var(--space-6);
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    transition: color var(--duration-fast) var(--ease-smooth);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-disclaimer {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    max-width: 500px;
    line-height: var(--leading-relaxed);
}

.footer-copyright {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-border);
    width: 100%;
}

/* ─── Responsive Adjustments ──────────────────────────────────────────────── */

@media (max-width: 968px) {

    /* Hide nav links earlier to prevent crowding */
    .nav-links a:not(.btn) {
        display: none;
    }

    /* Hide Sticky IP Widget on tablet/mobile to save space */
    .nav-ip-widget {
        display: none !important;
    }

    .feature-block {
        grid-template-columns: 1fr;
        gap: var(--space-8);
        text-align: center;
    }

    .feature-block-reverse {
        direction: ltr;
    }

    /* Order content so image is always second on mobile if desired, or let it flow naturally */
    .feature-block .feature-image {
        order: -1;
        /* Image on top? Or keep text on top? Let's keep typical flow */
    }

    .feature-text {
        align-self: stretch;
        /* Full width cards */
        width: 100%;
        max-width: 100%;
        padding: var(--space-6);
    }

    .feature-title {
        font-size: var(--text-3xl);
        /* Slightly smaller on mobile */
    }

    .world-bg {
        background-attachment: scroll;
    }

    .portal-transition {
        height: 60px;
    }
}

@media (max-width: 768px) {
    .nav-links a:not(.btn) {
        display: none;
    }

    .hero-logo {
        max-width: 90%;
    }

    .hero-subtitle {
        font-size: var(--text-base);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .intro-title {
        font-size: var(--text-3xl);
    }

    .feature-title-img {
        max-width: 280px;
    }

    .community-title-img {
        max-width: 300px;
    }

    .portal-transition {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: var(--space-16) 0;
    }

    .copy-box {
        flex-direction: column;
        text-align: center;
    }

    .feature-title-img {
        max-width: 220px;
    }
}

/* ─── Float Animation ─────────────────────────────────────────────────────── */

@keyframes float {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}