/* Base Styles */
:root {
    /* Colores principales */
    --primary-color: #4191f8;
    --primary-dark: #2a75d8;
    --secondary-color: #ff00ff;
    --accent-color: #950495;

    /* Colores de fondo */
    --bg-dark: #0a0a1a;
    --bg-darker: #050510;
    --bg-card: rgba(20, 20, 40, 0.7);
    --bg-card-hover: rgba(30, 30, 60, 0.8);

    /* Colores de texto */
    --text-light: #ffffff;
    --text-dim: #b3b3cc;
    --text-muted: #7a7a9d;

    /* Colores de acento */
    --success-color: #00ff88;
    --warning-color: #ffaa00;
    --error-color: #ff3366;

    /* Efectos de neón */
    --neon-primary: 0 0 10px rgba(65, 145, 248, 0.7), 0 0 20px rgba(65, 145, 248, 0.5), 0 0 30px rgba(65, 145, 248, 0.3);
    --neon-secondary: 0 0 10px rgba(255, 0, 255, 0.7), 0 0 20px rgba(255, 0, 255, 0.5), 0 0 30px rgba(255, 0, 255, 0.3);
    --neon-accent: 0 0 10px rgba(149, 4, 149, 0.7), 0 0 20px rgba(149, 4, 149, 0.5), 0 0 30px rgba(149, 4, 149, 0.3);

    /* Fuentes */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Bordes y sombras */
    --border-radius: 8px;
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.dark-mode {
    background-color: var(--bg-darker);
    color: var(--text-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-shadow: var(--neon-secondary);
}

img {
    max-width: 100%;
    height: auto;
}

/* Contenedores */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 0px 0;
    position: relative;
}

/* Botones */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(45deg, #00ffff, #b490ff);
    color: #050510;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
    background: linear-gradient(45deg, #b490ff, #00ffff);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: -1;
    transform: translateX(-100%) skewX(-15deg);
    transition: all 0.5s ease;
}

.btn-primary:hover::after {
    transform: translateX(100%) skewX(-15deg);
}

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

.btn-secondary:hover {
    background-color: rgba(0, 255, 255, 0.1);
    color: var(--text-light);
    border-color: var(--secondary-color);
    box-shadow: var(--neon-secondary);
    transform: translateY(-3px);
}

.full-width {
    width: 100%;
}

/* Tooltip styles para botones deshabilitados */
.tooltip-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Remover estos estilos y mantener solo los del hover::after del claim-tokens */
.tooltip-wrapper button[disabled],
.tooltip-wrapper::after,
.tooltip-wrapper:hover::after {
    display: none;
}

/* Claim Tokens */
.claim-tokens {
    margin: 0;
    box-sizing: border-box;
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.3s ease;
    background: none;
    color: #b388ff;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 4px 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(179, 136, 255, 0.5);
}

.claim-tokens:hover:not([disabled]) {
    color: #c9a9ff;
    text-shadow: 0 0 10px rgba(179, 136, 255, 0.8);
    transform: translateY(-1px);
}

.claim-tokens[disabled] {
    opacity: 0.6;
    cursor: not-allowed !important;
}

/* Estilos para tooltips de botones deshabilitados en el swap */
.disabled-swap-button:hover::after,
.swap-arrow:hover::after,
.claim-tokens:hover::after {
    content: 'Coming Soon...';
    position: fixed;
    background: rgba(0, 0, 0, 0.9);
    color: #00a8ff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    z-index: 1000000;
    box-shadow: 0 0 15px rgba(0, 168, 255, 0.3);
    border: 1px solid rgba(0, 168, 255, 0.5);
    backdrop-filter: blur(4px);
    font-family: 'Orbitron', sans-serif;
    pointer-events: none;
    bottom: 50%;
}

/* Posicionamiento del tooltip */
.disabled-swap-button,
.swap-arrow,
.claim-tokens {
    position: relative;
}

.disabled-swap-button:hover::after,
.swap-arrow:hover::after,
.claim-tokens:hover::after {
    left: 50%;
    transform: translateX(-50%);
    bottom: -40px;
}

/* Estilos específicos para Claim Tokens */
.claim-tokens {
    cursor: pointer !important;
    position: relative !important;
    transition: all 0.3s ease;
}

.claim-tokens:hover {
    color: #d4b3ff !important;
}

.claim-tokens:hover::after {
    content: 'Coming Soon...';
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: #00a8ff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    box-shadow: 0 0 15px rgba(0, 168, 255, 0.3);
    border: 1px solid rgba(0, 168, 255, 0.5);
    backdrop-filter: blur(4px);
    font-family: 'Orbitron', sans-serif;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
}

/* Efectos de texto */
.neon-text {
    color: var(--primary-color);
    text-shadow: var(--neon-primary);
}

.glitch-text {
    color: var(--accent-color);
    text-shadow: var(--neon-accent);
    position: relative;
    animation: glitch-skew 1s infinite linear alternate-reverse;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    left: 2px;
    text-shadow: -2px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -2px 0 #00ffff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(31px, 9999px, 94px, 0);
        transform: skew(0.85deg);
    }
    5% {
        clip: rect(70px, 9999px, 71px, 0);
        transform: skew(0.17deg);
    }
    10% {
        clip: rect(75px, 9999px, 92px, 0);
        transform: skew(0.4deg);
    }
    15% {
        clip: rect(46px, 9999px, 50px, 0);
        transform: skew(0.56deg);
    }
    20% {
        clip: rect(73px, 9999px, 30px, 0);
        transform: skew(0.09deg);
    }
    25% {
        clip: rect(42px, 9999px, 27px, 0);
        transform: skew(0.05deg);
    }
    30% {
        clip: rect(94px, 9999px, 19px, 0);
        transform: skew(0.47deg);
    }
    35% {
        clip: rect(34px, 9999px, 86px, 0);
        transform: skew(0.21deg);
    }
    40% {
        clip: rect(68px, 9999px, 94px, 0);
        transform: skew(0.98deg);
    }
    45% {
        clip: rect(99px, 9999px, 92px, 0);
        transform: skew(0.01deg);
    }
    50% {
        clip: rect(19px, 9999px, 93px, 0);
        transform: skew(0.34deg);
    }
    55% {
        clip: rect(75px, 9999px, 64px, 0);
        transform: skew(0.05deg);
    }
    60% {
        clip: rect(40px, 9999px, 31px, 0);
        transform: skew(0.76deg);
    }
    65% {
        clip: rect(82px, 9999px, 91px, 0);
        transform: skew(0.64deg);
    }
    70% {
        clip: rect(51px, 9999px, 69px, 0);
        transform: skew(0.98deg);
    }
    75% {
        clip: rect(45px, 9999px, 84px, 0);
        transform: skew(0.64deg);
    }
    80% {
        clip: rect(23px, 9999px, 91px, 0);
        transform: skew(0.79deg);
    }
    85% {
        clip: rect(79px, 9999px, 51px, 0);
        transform: skew(0.73deg);
    }
    90% {
        clip: rect(20px, 9999px, 87px, 0);
        transform: skew(0.02deg);
    }
    95% {
        clip: rect(71px, 9999px, 14px, 0);
        transform: skew(0.52deg);
    }
    100% {
        clip: rect(46px, 9999px, 62px, 0);
        transform: skew(0.97deg);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(65px, 9999px, 32px, 0);
        transform: skew(0.07deg);
    }
    5% {
        clip: rect(7px, 9999px, 75px, 0);
        transform: skew(0.08deg);
    }
    10% {
        clip: rect(60px, 9999px, 5px, 0);
        transform: skew(0.11deg);
    }
    15% {
        clip: rect(13px, 9999px, 21px, 0);
        transform: skew(0.77deg);
    }
    20% {
        clip: rect(61px, 9999px, 97px, 0);
        transform: skew(0.37deg);
    }
    25% {
        clip: rect(43px, 9999px, 40px, 0);
        transform: skew(0.32deg);
    }
    30% {
        clip: rect(64px, 9999px, 11px, 0);
        transform: skew(0.55deg);
    }
    35% {
        clip: rect(48px, 9999px, 81px, 0);
        transform: skew(0.17deg);
    }
    40% {
        clip: rect(23px, 9999px, 5px, 0);
        transform: skew(0.01deg);
    }
    45% {
        clip: rect(30px, 9999px, 20px, 0);
        transform: skew(0.89deg);
    }
    50% {
        clip: rect(61px, 9999px, 72px, 0);
        transform: skew(0.67deg);
    }
    55% {
        clip: rect(87px, 9999px, 34px, 0);
        transform: skew(0.34deg);
    }
    60% {
        clip: rect(2px, 9999px, 59px, 0);
        transform: skew(0.11deg);
    }
    65% {
        clip: rect(71px, 9999px, 86px, 0);
        transform: skew(0.27deg);
    }
    70% {
        clip: rect(57px, 9999px, 53px, 0);
        transform: skew(0.76deg);
    }
    75% {
        clip: rect(20px, 9999px, 35px, 0);
        transform: skew(0.4deg);
    }
    80% {
        clip: rect(15px, 9999px, 72px, 0);
        transform: skew(0.92deg);
    }
    85% {
        clip: rect(75px, 9999px, 85px, 0);
        transform: skew(0.5deg);
    }
    90% {
        clip: rect(20px, 9999px, 65px, 0);
        transform: skew(0.37deg);
    }
    95% {
        clip: rect(93px, 9999px, 9px, 0);
        transform: skew(0.07deg);
    }
    100% {
        clip: rect(19px, 9999px, 25px, 0);
        transform: skew(0.23deg);
    }
}

@keyframes glitch-skew {
    0% {
        transform: skew(1deg);
    }
    10% {
        transform: skew(-4deg);
    }
    20% {
        transform: skew(0deg);
    }
    30% {
        transform: skew(2deg);
    }
    40% {
        transform: skew(-1deg);
    }
    50% {
        transform: skew(4deg);
    }
    60% {
        transform: skew(3deg);
    }
    70% {
        transform: skew(-3deg);
    }
    80% {
        transform: skew(1deg);
    }
    90% {
        transform: skew(-2deg);
    }
    100% {
        transform: skew(0deg);
    }
}

.highlight {
    color: var(--accent-color);
}

.glow-effect {
    position: relative;
    transition: all 0.3s ease;
}

.glow-effect:hover {
    text-shadow: var(--neon-primary);
}

.glow-effect:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--primary-color);
    box-shadow: var(--neon-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.glow-effect:hover:after {
    width: 100%;
}

/* Fondo oceánico */
.ocean-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, var(--bg-darker) 0%, #0a1a2a 100%);
    overflow: hidden;
}

.ocean-background.subtle {
    opacity: 0.5;
}

.waves {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: url('../images/waves.svg') repeat-x;
    background-size: 1000px 100px;
    animation: wave 20s linear infinite;
    opacity: 0.2;
}

.bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: translateZ(0);
}

.bubbles:before,
.bubbles:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(65, 145, 248, 0.3);
    animation: bubble 15s infinite ease-in;
    transform: translateX(-50%);
    box-shadow: 0 0 5px rgba(65, 145, 248, 0.5);
}

.bubbles:before {
    animation-duration: 25s;
    opacity: 0.7;
}

.bubbles:after {
    animation-delay: 5s;
    animation-duration: 20s;
    left: 25%;
}

@keyframes wave {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}

@keyframes bubble {
    0% {
        bottom: -100px;
        opacity: 1;
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1.5) translateY(-200px);
    }
    100% {
        bottom: 1080px;
        opacity: 0;
        transform: translateX(-50%) scale(0.5) translateY(-1000px);
    }
}

/* Header y Navegación */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

header.scrolled {
    padding: 10px 0;
    background: rgba(5, 5, 16, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 255, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.5));
}

.logo span {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8),
                 0 0 20px rgba(0, 255, 255, 0.5);
    letter-spacing: 1px;
}

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

.nav-links a {
    color: #e0f7ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #b490ff);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #00ffff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.nav-links a:hover::before {
    width: 100%;
}

.nav-links a.active {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.nav-links a.active::before {
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #00ffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.mobile-menu-toggle:hover span {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 32, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    .nav-links a {
        width: 100%;
        max-width: 200px;
        text-align: center;
        padding: 12px;
    }

    .nav-links a.btn-primary {
        margin-top: 10px;
        width: 100%;
        max-width: 200px;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-container {
    display: flex;
    width: 80%;
    gap: 40px;
    align-items: flex-start;
}

.hero-left {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-right {
    flex: 1;
    max-width: 600px;
}

@media (max-width: 1200px) {
    .hero-container {
        flex-direction: column;
        align-items: center;
    }

    .hero-left {
        text-align: center;
        margin-bottom: 40px;
    }
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.hero-title.cyber-brand {
    font-size: 4.95rem; /* Reducido un 10% de 5.5rem */
    margin-bottom: 0.5rem;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, #00ffff, #b490ff, #00ffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 3s ease infinite;
}

@media (max-width: 768px) {
    .hero-left {
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .hero-title.cyber-brand {
        font-size: clamp(2rem, 8vw, 4.95rem);
        text-align: center;
        width: 100%;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.8rem);
        margin-bottom: 1rem;
        padding: 0 10px;
    }

    .hero-cta {
        font-size: clamp(1.2rem, 5vw, 2.2rem);
        padding: 12px 15px;
        margin: 0 10px;
    }

    .hero-features {
        padding: 0 10px;
    }

    .hero-feature {
        margin: 10px 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
    }

    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .hero-left {
        padding: 0 15px;
    }

    .hero-title.cyber-brand {
        font-size: clamp(1.8rem, 7vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.4rem);
    }

    .hero-cta {
        font-size: clamp(1rem, 4vw, 1.8rem);
    }

    .hero-feature {
        padding: 12px;
    }

    .hero-feature h3 {
        font-size: 1.1rem;
    }

    .hero-feature p {
        font-size: 0.9rem;
    }
}

.brand-tagline {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #b490ff;
    text-shadow: 0 0 10px rgba(180, 144, 255, 0.8);
    margin-bottom: 2rem;
    text-transform: uppercase;
    position: relative;
    display: block;
    width: 100%;
    background: rgba(10, 10, 32, 0.6);
    padding: 8px 0;
    border-radius: 30px;
    border-left: 2px solid #b490ff;
    border-right: 2px solid #b490ff;
}

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


@keyframes wave-shine {
    0% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes pulse-opacity {
    0% {
        opacity: 0.6;
        filter: blur(1px);
    }
    50% {
        opacity: 0.9;
        filter: blur(0.5px);
    }
    100% {
        opacity: 0.6;
        filter: blur(1px);
    }
}

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

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glitch-flicker {
    0% {
        opacity: 1;
    }
    10% {
        opacity: 0.8;
    }
    20% {
        opacity: 1;
    }
    30% {
        opacity: 0.6;
    }
    40% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
    60% {
        opacity: 1;
    }
    70% {
        opacity: 0.7;
    }
    80% {
        opacity: 1;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-title.ocean-neon {
        font-size: 3rem;
        padding: 0.15em 0.4em;
    }
}

@media (max-width: 480px) {
    .hero-title.ocean-neon {
        font-size: 2.2rem;
        padding: 0.1em 0.3em;
    }
}



.hero-subtitle.ocean-glow {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #e0f7ff;
    text-shadow: 0 0 8px rgba(128, 0, 255, 0.8);
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-cta.pulse-text {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    background: linear-gradient(45deg, #00ffff, #ff3366, #00ffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 2s ease infinite;
    font-weight: 800;
    padding: 15px 25px;
    border-radius: 8px;
    border: 2px solid rgba(255, 51, 102, 0.6);
    box-shadow: 0 0 25px rgba(255, 51, 102, 0.4), inset 0 0 15px rgba(0, 198, 255, 0.3);
    background-color: rgba(10, 10, 32, 0.6);
    display: inline-block;
    position: relative;
    transform: scale(1);
    transition: all 0.3s ease;
}

.hero-cta.pulse-text.urgent-cta {
    animation: gradient 2s ease infinite, pulse-scale 2s ease-in-out infinite, shake 5s ease-in-out infinite;
}

.hero-cta.pulse-text.urgent-cta::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid rgba(255, 51, 102, 0.4);
    border-radius: 12px;
    animation: pulse-border 1.5s ease-in-out infinite;
    z-index: -1;
}

.hero-cta.pulse-text.urgent-cta::after {
    content: '🔥';
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 1.5rem;
    animation: bounce 1s ease infinite;
}

.hero-cta.pulse-text:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255, 51, 102, 0.6), inset 0 0 20px rgba(0, 198, 255, 0.4);
    border-color: rgba(255, 51, 102, 0.8);
}

@keyframes pulse-scale {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulse-border {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

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

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    5%, 15% {
        transform: rotate(-1deg) scale(1.01);
    }
    10%, 20% {
        transform: rotate(1deg) scale(1.02);
    }
    25% {
        transform: rotate(0deg) scale(1);
    }
    /* El resto del tiempo se mantiene estable */
}

@keyframes pulsate {
    0% {
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.8),
                     0 0 20px rgba(0, 255, 255, 0.5),
                     0 0 30px rgba(0, 255, 255, 0.3);
    }
    100% {
        text-shadow: 0 0 15px rgba(0, 255, 255, 0.9),
                     0 0 25px rgba(0, 255, 255, 0.6),
                     0 0 35px rgba(0, 255, 255, 0.4),
                     0 0 45px rgba(0, 255, 255, 0.2);
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-buttons {
    display: flex;
    gap: 25px;
    margin: 30px 0;
    justify-content: flex-start;
}

@media (max-width: 1200px) {
    .hero-buttons {
        justify-content: center;
    }
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.3);
}

.hero-feature .feature-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-feature .feature-text {
    flex: 1;
}

.hero-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.hero-feature p {
    font-size: 0.9rem;
    color: #ddd;
    margin: 0;
}

.btn-primary.wave-effect {
    background: linear-gradient(45deg, #00ffff, #b490ff);
    color: #050510;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transition: all 0.3s ease;
    margin-left: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.btn-primary.wave-effect::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #b490ff, #00ffff);
    background-size: 200% auto;
    z-index: -1;
    border-radius: 32px;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: gradient 3s ease infinite;
}

.btn-primary.wave-effect:hover::after {
    opacity: 1;
}

.btn-primary.cyber-pulse {
    background: rgba(10, 10, 32, 0.8);
    color: #00ffff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    transition: all 0.3s ease;
    border: 2px solid #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    margin-top: 15px;
    animation: button-pulse 2s infinite;
}

.btn-primary.cyber-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00ffff, #b490ff);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-primary.cyber-pulse::after {
    content: '→';
    position: absolute;
    right: 25px;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-10px);
}

.btn-primary.cyber-pulse:hover {
    color: #050510;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.6);
    padding-right: 50px;
}

.btn-primary.cyber-pulse:hover::before {
    opacity: 1;
}

.btn-primary.cyber-pulse:hover::after {
    opacity: 1;
    transform: translateX(0);
}

@keyframes button-pulse {
    0% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.7), 0 0 40px rgba(180, 144, 255, 0.4);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    }
}

.btn-primary.wave-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

.btn-primary.wave-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transform: translateX(-100%) skewX(-15deg);
    transition: all 0.5s ease;
}

.btn-primary.wave-effect:hover::before {
    transform: translateX(100%) skewX(-15deg);
}

/* Efecto de destello para el botón cyber-pulse */
.btn-primary.cyber-pulse::before,
.btn-primary.cyber-pulse::after {
    pointer-events: none;
}

.btn-primary.cyber-pulse .flash {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: flash-animation 3s infinite;
}

@keyframes flash-animation {
    0% {
        left: -100%;
    }
    20%, 100% {
        left: 200%;
    }
}

.btn-secondary.glow-border {
    background: rgba(10, 10, 30, 0.6);
    color: #b490ff;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #b490ff;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(180, 144, 255, 0.3);
}

.btn-secondary.glow-border:hover {
    color: #fff;
    border-color: #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    transform: translateY(-3px);
}

.token-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    justify-content: center;
}

.home-stats {
    justify-content: center;
}

.stat.shimmer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(10, 10, 30, 0.7);
    padding: 20px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.stat.shimmer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.stat.shimmer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

.stat-value.neon-cyan {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.stat-value.neon-purple {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #b490ff;
    text-shadow: 0 0 10px rgba(180, 144, 255, 0.8);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dim);
    margin-top: 5px;
}

/* Estilos para la tarjeta de presale en el home */
.home-presale {
    background: rgba(10, 10, 32, 0.6);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 198, 255, 0.2);
    width: 100%;
    backdrop-filter: blur(10px);
    background: linear-gradient(145deg, rgba(10, 10, 32, 0.7), rgba(5, 5, 16, 0.9));
}

.presale-timer-container {
    padding: 20px 20px 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 198, 255, 0.3);
    margin-bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 198, 255, 0.1), transparent);
}

.presale-timer-container h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    color: #00c6ff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.8);
}

.countdown-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
}

.presale-stages {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.stage-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 198, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #aaa;
    transition: all 0.3s ease;
}

.stage-indicator.active {
    background: rgba(0, 198, 255, 0.3);
    color: white;
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.5);
}

.home-presale .presale-body {
    padding: 20px;
}

.presale-stages-info {
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stages-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin-bottom: 2px;
}

@media (max-width: 768px) {
    .stages-row {
        grid-template-columns: 1fr;
    }
}

.stage-info {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 198, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    opacity: 0.7;
    transition: all 0.3s ease;
    flex: 1;
    backdrop-filter: blur(5px);
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.3), rgba(10, 10, 32, 0.5));
    margin-bottom: 6px;
}

.stage-info.active {
    border-color: rgba(0, 198, 255, 0.5);
    opacity: 1;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.2);
    background: linear-gradient(145deg, rgba(0, 198, 255, 0.1), rgba(10, 10, 32, 0.6));
    border-left: 3px solid #00c6ff;
}

.stage-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 6px;
    font-size: 0.85rem;
}

.stage-name {
    font-weight: 700;
    color: #00c6ff;
    white-space: nowrap;
    display: inline-block;
    margin-bottom: 3px;
    font-size: 0.9rem;
    text-shadow: 0 0 5px rgba(0, 198, 255, 0.5);
}

.stage-price {
    color: #fff;
    display: block;
    font-weight: 500;
    font-size: 0.8rem;
}

.stage-progress {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #aaa;
    text-align: right;
}

.swap-input-container {
    margin-bottom: 20px;
    position: relative;
}

.swap-input-container:hover {
    transform: translateY(-3px);
}

.swap-input-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #b3b3cc;
    font-weight: 500;
}

.swap-input {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.4), rgba(10, 10, 32, 0.6));
}

.swap-input:hover, .swap-input:focus-within {
    border-color: rgba(0, 198, 255, 0.6);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 198, 255, 0.3);
}

.token-select {
    background: rgba(0, 198, 255, 0.15);
    border: 1px solid rgba(0, 198, 255, 0.4);
    color: #fff;
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.2);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.token-select:hover {
    background: rgba(0, 198, 255, 0.25);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.4);
}

.amount-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    font-family: 'Orbitron', sans-serif;
    text-align: right;
    width: 100%;
    outline: none;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    padding: 0 10px;
}

.amount-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.amount-buttons {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.amount-button {
    background: rgba(0, 198, 255, 0.15);
    border: 1px solid rgba(0, 198, 255, 0.4);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.amount-button:hover {
    background: rgba(0, 198, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 198, 255, 0.3);
}

.amount-button:active {
    transform: translateY(-1px);
}

.swap-arrow {
    display: flex;
    justify-content: center;
    margin: 5px 0;
    position: relative;
}

.swap-arrow:before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 198, 255, 0.15);
    border-radius: 50%;
    z-index: 0;
    animation: pulse-circle 2s infinite;
}

@keyframes pulse-circle {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 198, 255, 0.5);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(0, 198, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 198, 255, 0);
    }
}

.swap-arrow img {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 5px rgba(0, 198, 255, 0.8));
    animation: float 3s ease-in-out infinite;
}

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

.receive-amount {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    letter-spacing: 0.5px;
    padding: 0 10px;
    animation: pulse-text 2s infinite alternate;
}

@keyframes pulse-text {
    0% {
        text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
    }
    100% {
        text-shadow: 0 0 15px rgba(0, 255, 255, 0.9), 0 0 25px rgba(0, 255, 255, 0.5);
    }
}

.full-width {
    width: 100%;
}

.home-presale .presale-progress {
    margin-bottom: 20px;
}

.home-presale .progress-bar {
    height: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.home-presale .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00c6ff, #8a2be2);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.home-presale .progress-fill:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

.home-presale .progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #aaa;
}

.home-presale .presale-timer {
    text-align: center;
    margin-bottom: 20px;
}

.home-presale .presale-timer h3 {
    font-size: 1rem;
    color: #aaa;
    margin-bottom: 10px;
}

.countdown {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.countdown-item {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 198, 255, 0.3);
    border-radius: 12px;
    padding: 12px 5px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 0;
    backdrop-filter: blur(5px);
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.4), rgba(10, 10, 32, 0.6));
}

.countdown-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 198, 255, 0.5), transparent);
    box-shadow: 0 0 8px rgba(0, 198, 255, 0.8);
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 198, 255, 0.3);
    border-color: rgba(0, 198, 255, 0.6);
}

.countdown-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #00c6ff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.6);
    display: block;
    margin-bottom: 5px;
    animation: pulse-glow 2s infinite alternate;
}

.countdown-label {
    font-size: 0.75rem;
    color: #b3b3cc;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@keyframes pulse-glow {
    0% {
        text-shadow: 0 0 10px rgba(0, 198, 255, 0.6);
    }
    100% {
        text-shadow: 0 0 15px rgba(0, 198, 255, 0.9), 0 0 25px rgba(0, 198, 255, 0.5);
    }
}

/* About Section */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.section-title.gradient-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 3.5rem;
    text-transform: uppercase;
    background: linear-gradient(45deg, #00ffff, #b490ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.section-title.gradient-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #00ffff, #b490ff);
    border-radius: 2px;
    z-index: -1;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.about-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    background: rgba(10, 10, 30, 0.6);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 0, 255, 0.2);
}

.about-text {
    flex: 1;
    max-width: 100%;
}

.about-description.ocean-glow {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #e0f7ff;
    text-shadow: 0 0 8px rgba(128, 0, 255, 0.4);
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin: 30px 0;
}

.feature.shimmer-card {
    width: 100%;
    aspect-ratio: 1;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.about-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .features {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .section-title.gradient-title {
        font-size: 2rem;
    }
}

/* Tokenomics Section */
.tokenomics-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
}

.tokenomics-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: rgba(10, 10, 30, 0.6);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 0, 255, 0.2);
}

.tokenomics-chart-container {
    background: rgba(10, 10, 30, 0.7);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
    margin-bottom: 20px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

#tokenomicsChart {
    width: 100% !important;
    height: auto !important;
    max-height: 400px;
    aspect-ratio: 16/9;
    margin: 0 auto;
    display: block;
}

@media (max-width: 768px) {
    .tokenomics-chart-container {
        padding: 15px;
    }
    
    #tokenomicsChart {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    #tokenomicsChart {
        max-height: 250px;
    }
}

.tokenomics-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.tokenomics-item.shimmer-card {
    background: rgba(10, 10, 30, 0.7);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tokenomics-item.shimmer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.tokenomics-item.shimmer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

.tokenomics-icon.pulse-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: pulse-icon 2s infinite alternate;
}

.tokenomics-item h3.neon-cyan {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
}

.tokenomics-item h3.neon-purple {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #b490ff;
    text-shadow: 0 0 10px rgba(180, 144, 255, 0.8);
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
}

.token-supply.glow-text {
    font-size: 1.2rem;
    color: #e0f7ff;
    text-shadow: 0 0 8px rgba(128, 0, 255, 0.4);
    font-weight: 500;
    text-align: center;
    margin-bottom: 5px;
}

.distribution-list, .tax-allocation-list {
    list-style: none;
    width: 100%;
    margin-top: 15px;
}

.distribution-item {
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    padding-left: 0;
    padding-bottom: 20px;
}

.percent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 8px;
    background: linear-gradient(90deg, #00ffff, #b490ff);
    border-radius: 4px;
    transition: all 0.5s ease;
}

.distribution-item:hover .percent-bar {
    height: 12px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.distribution-percent.neon-value, .tax-percent.neon-value, .tax-allocation.neon-value {
    display: inline-block;
    min-width: 40px;
    margin-right: 10px;
    color: #00ffff;
    font-weight: 700;
    font-size: 1.1rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.distribution-label, .allocation-label {
    color: var(--text-dim);
    flex: 1;
}

.tax-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.tax-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(5, 5, 16, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
    border: 1px solid rgba(180, 144, 255, 0.3);
    transition: all 0.3s ease;
}

.tax-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(180, 144, 255, 0.5);
}

.tax-label {
    color: var(--text-dim);
    margin-top: 5px;
    font-size: 0.9rem;
}

.tax-allocation-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(5, 5, 16, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tax-allocation-item:hover {
    background: rgba(5, 5, 16, 0.5);
    transform: translateX(10px);
}

/* Roadmap Section */
.roadmap-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
}

.roadmap-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    margin-top: 50px;
}

.roadmap-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 60px;
    width: 6px;
    background: linear-gradient(to bottom, #00ffff, #b490ff);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    z-index: 1;
}

.roadmap-phase.shimmer-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    padding: 30px;
    border-radius: 15px;
    background: rgba(10, 10, 30, 0.7);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 255, 0.3);
    margin-left: 30px;
    overflow: hidden;
}

.roadmap-phase.shimmer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shimmer 3s infinite;
}

.roadmap-phase.shimmer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

.roadmap-phase.active {
    border-left: 4px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.roadmap-phase::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00ffff, #b490ff);
    border-radius: 50%;
    left: -40px;
    top: 60px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    z-index: 2;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phase-icon.pulse-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    background: rgba(5, 5, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    z-index: 1;
    animation: pulse-icon 2s infinite alternate;
    border: 2px solid rgba(0, 255, 255, 0.3);
}

.phase-icon.pulse-icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
}

.phase-title {
    flex: 1;
}

.phase-title h3.neon-cyan {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    font-family: var(--font-heading);
    font-weight: 700;
}

.phase-title h3.neon-purple {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #b490ff;
    text-shadow: 0 0 10px rgba(180, 144, 255, 0.8);
    font-family: var(--font-heading);
    font-weight: 700;
}

.phase-badge.glow-badge {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(5, 5, 16, 0.8);
    color: #e0f7ff;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.roadmap-phase:hover .phase-badge.glow-badge {
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    border-color: rgba(0, 255, 255, 0.6);
}

.phase-content {
    padding-left: 100px;
}

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

.phase-list li {
    margin-bottom: 12px;
    position: relative;
    padding: 8px 15px;
    background: rgba(5, 5, 16, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.phase-list li:hover {
    background: rgba(5, 5, 16, 0.7);
    transform: translateX(5px);
}

.check-icon, .progress-icon, .todo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-right: 10px;
    font-size: 0.9rem;
}

.check-icon {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.progress-icon {
    background: rgba(255, 170, 0, 0.2);
    color: #ffaa00;
    box-shadow: 0 0 10px rgba(255, 170, 0, 0.3);
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.todo-icon {
    background: rgba(65, 145, 248, 0.2);
    color: #4191f8;
    box-shadow: 0 0 10px rgba(65, 145, 248, 0.3);
}

.phase-list li.completed {
    color: #e0f7ff;
    border-left: 3px solid #00ff88;
}

.phase-list li.in-progress {
    color: #e0f7ff;
    border-left: 3px solid #ffaa00;
}

.phase-list li:not(.completed):not(.in-progress) {
    color: var(--text-dim);
    border-left: 3px solid transparent;
}

/* Community Section */
.community-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
}

.community-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.community-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

.community-description {
    font-size: 1.3rem;
    line-height: 1.6;
}

.social-links-container {
    background: rgba(10, 10, 30, 0.6);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 0, 255, 0.2);
    text-align: center;
}

.social-links-container h3 {
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    border-radius: 15px;
    background: rgba(10, 10, 30, 0.7);
    transition: all 0.3s ease;
    width: 180px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.social-link:hover {
    transform: translateY(-15px);
    background: rgba(15, 15, 35, 0.8);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
    border-color: rgba(0, 255, 255, 0.5);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(5, 5, 16, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.social-icon img {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.5));
}

.social-link span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: #e0f7ff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

.meme-feed {
    background: rgba(10, 10, 30, 0.6);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 0, 255, 0.2);
    text-align: center;
}

.meme-feed h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.meme-description {
    font-size: 1.1rem;
    color: #e0f7ff;
    max-width: 700px;
    margin: 0 auto 30px;
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.meme-grid img {
    width: 100%;
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.meme-grid img:hover {
    transform: scale(1.05) rotate(2deg);
    border-color: rgba(0, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
}

/* Footer */
.site-footer {
    background: linear-gradient(0deg, rgba(5, 5, 16, 0.95) 0%, rgba(10, 10, 30, 0.9) 100%);
    padding: 80px 0 20px;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
}

.footer-waves {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: url('../images/footer-waves.svg') repeat-x;
    background-size: 1000px 50px;
    opacity: 0.6;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
}

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

.footer-logo img.glow-image {
    height: 80px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
    transition: all 0.3s ease;
}

.footer-logo img.glow-image:hover {
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.8));
    transform: scale(1.1);
}

.footer-logo p.neon-cyan {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    min-width: 150px;
}

.footer-column h4.neon-cyan,
.footer-column h4.neon-purple,
.newsletter-signup h4.neon-cyan {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-column h4.neon-cyan,
.newsletter-signup h4.neon-cyan {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.footer-column h4.neon-purple {
    color: #b490ff;
    text-shadow: 0 0 10px rgba(180, 144, 255, 0.8);
}

.footer-link {
    display: block;
    margin-bottom: 12px;
    color: #e0f7ff;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-link::before {
    content: '›';
    position: absolute;
    left: 0;
    color: rgba(0, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #00ffff;
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.footer-link:hover::before {
    color: #00ffff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

.newsletter-signup {
    text-align: center;
}

.newsletter-signup p {
    color: var(--text-dim);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-input {
    background: rgba(5, 5, 16, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: var(--text-light);
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(0, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.newsletter-input::placeholder {
    color: var(--text-muted);
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(0, 255, 255, 0.1);
    text-align: center;
    padding-bottom: 20px;
}

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

.disclaimer-text {
    font-size: 0.8rem;
    max-width: 800px;
    margin: 10px auto;
    color: var(--text-muted);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-link::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }

    .footer-column {
        width: 100%;
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .token-stats {
        justify-content: center;
    }

    .about-content, .tokenomics-content {
        flex-direction: column;
    }

    .features {
        flex-direction: column;
    }

    .social-links {
        gap: 20px;
    }

    .social-link {
        width: 160px;
    }

    .home-presale .countdown {
        flex-wrap: wrap;
    }

    .container {
        width: 100%;
        padding: 0 20px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title.mega-brand {
        font-size: 3.8rem;
    }

    .brand-tagline {
        font-size: 1rem;
    }

    .brand-tagline::before,
    .brand-tagline::after {
        width: 20px;
    }

    .brand-tagline::before {
        left: -25px;
    }

    .brand-tagline::after {
        right: -25px;
    }

    .hero-cta.pulse-text {
        font-size: 1.8rem;
        padding: 12px 20px;
    }

    .hero-cta.pulse-text.urgent-cta::after {
        font-size: 1.2rem;
        top: -10px;
        right: -10px;
    }

    .nav-links {
        display: none;
    }

    .stages-row {
        flex-direction: column;
    }

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

    .wallet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-cta {
        font-size: 1.5rem;
    }

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

    .token-stats {
        flex-direction: column;
        gap: 20px;
    }

    .home-presale .countdown-item {
        min-width: 70px;
    }

    .home-presale .progress-stats {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .roadmap-container:before {
        left: 30px;
    }

    .phase-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .social-links {
        gap: 15px;
        justify-content: center;
    }

    .social-link {
        width: 140px;
        padding: 15px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
    }

    .social-icon img {
        width: 25px;
        height: 25px;
    }

    .meme-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .hero-container {
        flex-direction: column;
    }

    .hero-left, 
    .hero-right {
        width: 100%;
    }

    .hero-features {
        flex-direction: column;
    }

    .hero-feature {
        width: 100%;
        margin: 10px 0;
    }

    .tokenomics-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

    .brand-tagline {
        font-size: 0.9rem;
    }

    .brand-tagline::before,
    .brand-tagline::after {
        display: none;
    }

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

    .roadmap-phase {
        padding: 15px;
    }

    .phase-content h3 {
        font-size: 1.2rem;
    }

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

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 100%;
        max-width: 200px;
    }

    .footer-column {
        width: 100%;
        text-align: center;
    }

    .newsletter-signup {
        width: 100%;
    }

    .modal-content {
        width: 95%;
        margin: 30px auto;
    }
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}
