:root {
    --ow-purple: rgb(216, 45, 45);
    --ow-green: #fa5a1b;
    --ow-dark: #000000;
    --ow-gray: #101011;
    --neon-effect: drop-shadow(0 0 15px var(--ow-green));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
html {
    scroll-behavior: smooth;
}
body {
    background: var(--ow-dark);
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}


header {
    position: fixed;
    width: 100%;
    padding: 0.5rem 2%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 60%, transparent);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(253, 83, 10, 0.3);
    transition: all 0.3s ease;
}

.header-scroll {
    padding: 0.3rem 2%;
    background: rgba(3, 3, 3, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px; 
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: var(--ow-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::before {
    width: 100%;
}


.log-in {
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    margin-left: 1.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.log-in:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.25) 0%, 
        rgba(255, 255, 255, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.log-in i {
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.log-in:hover i {
    transform: scale(1.15) translateX(3px);
    color: #ff732c;
}


.log-in::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, 
        transparent 40%, 
        rgba(255, 255, 255, 0.15) 50%, 
        transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.log-in:hover::after {
    opacity: 1;
}


.log-in:active {
    transform: translateY(0);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
}


.bottom-nav {
    display: none; 
}


@media (max-width: 768px) {
   
    .nav-links {
        display: none;
    }
    #mobile {
        display: inline-flex;
        }

   
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #000;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        justify-content: space-around;
        padding: 10px 0;
        z-index: 1000;
    }
    
    .bottom-nav a {
        text-decoration: none;
        color: white;
        font-size: 0.9rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .bottom-nav a i {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }
}


main {
    padding-top: 70px;
    padding-bottom: 70px; 
}



.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.matrix-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--ow-dark) 40%, rgba(215, 15, 15, 0.1));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
color: #ffff;
    animation: textFlow 8s infinite linear;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    padding: 5rem 8%;
    position: relative;
}

.feature-card {
    background: linear-gradient(145deg, var(--ow-gray), rgba(248, 51, 51, 0.1));
    border: 1px solid rgba(255, 45, 30, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 40px rgba(255, 75, 10, 0.3);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(254, 85, 6, 0.1), transparent);
    transform: rotate(45deg);
    animation: hologram 6s infinite linear;
}


@keyframes textFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes hologram {
    0% { transform: rotate(45deg) translateX(-50%); }
    100% { transform: rotate(45deg) translateX(50%); }
}


.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, var(--ow-green) 20%, transparent 70%);
    border-radius: 50%;
    filter: var(--neon-effect);
    animation: particleFloat 20s infinite linear;
}






@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 3rem;
    }
}

.platforms-section {
padding: 8rem 5%;
background: var(--ow-dark);
position: relative;
overflow: hidden;
}

.section-header {
text-align: center;
margin-bottom: 4rem;
max-width: 800px;
margin-left: auto;
margin-right: auto;
}

.section-title {
font-size: 2.8rem;
font-weight: 600;
color: #fff;
margin-bottom: 1.5rem;
position: relative;
display: inline-block;
}

.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: var(--ow-green);
transition: width 0.3s ease;
}

.section-title:hover::after {
width: 100px;
}

.section-subtitle {
color: rgba(255, 255, 255, 0.85);
font-size: 1.1rem;
line-height: 1.6;
}

.platforms-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}

.platform-card {
background: rgba(255, 255, 255, 0.02);
border-radius: 16px;
padding: 2.5rem;
position: relative;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
border: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-card:hover {
transform: translateY(-8px);
background: rgba(255, 255, 255, 0.04);
border-color: var(--ow-green);
box-shadow: 0 16px 32px rgba(255, 75, 10, 0.1);
}

.platform-header {
margin-bottom: 1.5rem;
text-align: center;
}

.platform-icon {
width: 80px;
height: 80px;
margin: 0 auto 1.5rem;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.02);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.08);
transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
border-color: var(--ow-green);
transform: scale(1.05);
}

.platform-icon img {
width: 40px;
height: 40px;
object-fit: contain;
filter: brightness(0) invert(1);
}



.platform-card h3 {
font-size: 1.5rem;
font-weight: 500;
color: #fff;
margin-bottom: 0.5rem;
}

.platform-description {
color: rgba(255, 255, 255, 0.7);
font-size: 0.95rem;
line-height: 1.6;
text-align: center;
}

.platform-border {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
pointer-events: none;
border-radius: 16px;
overflow: hidden;
}

.platform-border::after {
content: '';
position: absolute;
width: 150%;
height: 150%;
background: conic-gradient(
from 180deg at 50% 50%,
transparent 0%,
var(--ow-green) 20%,
transparent 40%
);
animation: rotateBorder 4s linear infinite;
opacity: 0;
transition: opacity 0.3s ease;
}

.platform-card:hover .platform-border::after {
opacity: 0.15;
}

@keyframes rotateBorder {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
.section-title {
font-size: 2rem;
}

.platforms-grid {
grid-template-columns: 1fr;
}

.platform-card {
padding: 2rem;
}
}
.ai-section {
padding: 8rem 5%;
background: linear-gradient(45deg, var(--ow-dark) 40%, rgba(70, 15, 215, 0.05));
position: relative;
overflow: hidden;
}

.ai-container {
max-width: 1400px;
margin: 0 auto;
}

.ai-main-card {
background: rgba(255, 255, 255, 0.02);
border-radius: 24px;
padding: 3rem;
margin-bottom: 4rem;
position: relative;
border: 1px solid rgba(255, 255, 255, 0.08);
transition: all 0.4s ease;
}

.ai-main-card:hover {
border-color: var(--ow-green);
box-shadow: 0 0 40px rgba(255, 75, 10, 0.1);
}

.ai-core {
display: flex;
align-items: center;
gap: 4rem;
margin-bottom: 3rem;
}

.ai-globe {
width: 300px;
height: 300px;
border-radius: 50%;
position: relative;
background: rgba(255, 255, 255, 0.02);
flex-shrink: 0;
}

.circuit-pattern {
position: absolute;
width: 100%;
height: 100%;
background-image: radial-gradient(circle, 
rgba(255,255,255,0.05) 10%, 
transparent 30%);
animation: rotate 60s linear infinite;
}

.ai-pulse {
position: absolute;
width: 100%;
height: 100%;
border: 2px solid var(--ow-green);
border-radius: 50%;
animation: pulse 3s ease-in-out infinite;
}

.ai-logo {
position: absolute;
width: 40%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
filter: drop-shadow(0 0 15px var(--ow-green));
}

.ai-stats {
flex-grow: 1;
display: grid;
gap: 2rem;
}

.stat-item {
background: rgba(255, 255, 255, 0.02);
padding: 1.5rem;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
}

.stat-item:hover {
border-color: var(--ow-green);
transform: translateY(-3px);
}

.stat-value {
display: block;
font-size: 2.5rem;
font-weight: 700;
background: linear-gradient(45deg, #fff, var(--ow-green));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.stat-label {
color: rgba(255, 255, 255, 0.7);
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 1px;
}

.ai-features {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}

.feature-pill {
background: rgba(255, 255, 255, 0.03);
padding: 0.8rem 1.5rem;
border-radius: 2rem;
border: 1px solid rgba(255, 255, 255, 0.08);
font-size: 0.9rem;
transition: all 0.3s ease;
}

.feature-pill:hover {
background: var(--ow-green);
color: #fff;
transform: scale(1.05);
}

.ai-features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.ai-card {
background: rgba(255, 255, 255, 0.02);
padding: 2rem;
border-radius: 16px;
position: relative;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.05);
}

.ai-card:hover {
border-color: var(--ow-green);
background: rgba(255, 255, 255, 0.03);
}

.ai-icon {
width: 50px;
height: 50px;
margin-bottom: 1.5rem;
background: rgba(255, 255, 255, 0.02);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
}

.ai-progress {
position: absolute;
bottom: 0;
left: 0;
height: 3px;
background: var(--ow-green);
animation: progress 2s ease-in-out infinite;
}

@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

@keyframes pulse {
0% { opacity: 0.2; transform: scale(0.95); }
50% { opacity: 0.5; transform: scale(1); }
100% { opacity: 0.2; transform: scale(0.95); }
}

@keyframes progress {
0% { width: 0%; }
100% { width: 100%; }
}

@media (max-width: 1200px) {
.ai-core {
flex-direction: column;
text-align: center;
}

.ai-globe {
width: 250px;
height: 250px;
}
}

.token-section {
padding: 8rem 5%;
background: linear-gradient(45deg, var(--ow-dark) 40%, rgba(15, 70, 215, 0.05));
position: relative;
overflow: hidden;
}

.token-main-card {
background: rgba(255, 255, 255, 0.02);
border-radius: 24px;
padding: 3rem;
margin-bottom: 4rem;
border: 1px solid rgba(255, 255, 255, 0.08);
transition: all 0.4s ease;
}

.token-globe {
width: 250px;
height: 250px;
border-radius: 50%;
position: relative;
background: rgba(255, 255, 255, 0.02);
margin: 0 auto;
}

.blockchain-pattern {
position: absolute;
width: 100%;
height: 100%;
background-image: 
linear-gradient(45deg, 
transparent 65%,
rgba(255,255,255,0.03) 75%,
transparent 85%),
linear-gradient(-45deg, 
transparent 65%,
rgba(255,255,255,0.03) 75%,
transparent 85%);
animation: rotate 40s linear infinite;
}

.token-pulse {
position: absolute;
width: 100%;
height: 100%;
border: 2px solid var(--ow-purple);
border-radius: 50%;
animation: pulse 3s ease-in-out infinite;
}

.token-logo {
position: absolute;
width: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
filter: drop-shadow(0 0 15px var(--ow-purple));
}

.token-stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 2rem;
margin-top: 3rem;
}

.token-utilities-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin: 4rem 0;
}

.utility-card {
background: rgba(255, 255, 255, 0.02);
padding: 2rem;
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.05);
transition: all 0.3s ease;
}

.utility-card:hover {
border-color: var(--ow-purple);
transform: translateY(-5px);
}

.utility-icon {
font-size: 2rem;
color: var(--ow-purple);
margin-bottom: 1rem;
}

.token-price {
font-size: 1.2rem;
color: var(--ow-green);
margin-top: 1rem;
font-weight: 700;
}

.token-plans {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 4rem;
}

.plan-tier {
background: rgba(255, 255, 255, 0.02);
padding: 2rem;
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.08);
position: relative;
overflow: hidden;
}

.plan-tier.pro {
border: 2px solid var(--ow-purple);
transform: scale(1.05);
}

.lynx-amount {
font-size: 2rem;
color: var(--ow-green);
margin: 1rem 0;
font-weight: 700;
}

.plan-features {
list-style: none;
margin: 1.5rem 0;
}

.plan-features li {
margin-bottom: 0.8rem;
font-size: 0.9rem;
}

.plan-features i {
color: var(--ow-green);
margin-right: 0.5rem;
}

@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
.token-globe {
width: 200px;
height: 200px;
}

.plan-tier.pro {
transform: none;
}
}

.unified-access-section {
padding: 8rem 5%;
background: linear-gradient(45deg, var(--ow-dark) 40%, rgba(15, 70, 215, 0.03));
position: relative;
overflow: hidden;
}

.unified-header {
text-align: center;
margin-bottom: 4rem;
}

.unified-title {
font-size: 2.8rem;
font-weight: 600;
color: #fff;
margin-bottom: 1rem;
position: relative;
}

.unified-subtitle {
color: rgba(255, 255, 255, 0.85);
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

.unified-container {
max-width: 1200px;
margin: 0 auto;
}

.unified-core {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
}

.unified-shield {
position: relative;
width: 500px;
height: 500px;
margin: 0 auto;
}

.shield-main-icon {
position: absolute;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}

.shield-main-icon i {
font-size: 12rem;
color: var(--ow-green);
filter: drop-shadow(0 0 25px rgba(255, 75, 10, 0.3));
animation: shieldPulse 2s ease-in-out infinite;
}

.platforms-circle {
position: absolute;
width: 100%;
height: 100%;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
padding: 6rem;
}

.platform-circle-icon {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.platform-circle-icon img {
width: 60%;
filter: grayscale(1) brightness(2);
transition: all 0.3s ease;
}

.platform-circle-icon:hover img {
filter: none;
transform: scale(1.1);
}

.shield-protection-rays {
position: absolute;
width: 100%;
height: 100%;
background: radial-gradient(circle, 
rgba(255, 75, 10, 0.1) 0%, 
transparent 60%);
animation: raysRotation 20s linear infinite;
}

.security-benefits {
display: grid;
gap: 2rem;
}

.security-benefit-card {
background: rgba(255, 255, 255, 0.02);
padding: 2rem;
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.08);
transition: all 0.3s ease;
}

.security-benefit-card:hover {
border-color: var(--ow-green);
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.03);
}

.security-benefit-card i {
font-size: 2rem;
color: var(--ow-green);
margin-bottom: 1rem;
}


.unified-cta {
text-align: center;
margin-top: 4rem;
}

.unified-access-button {
position: relative;
background: linear-gradient(45deg, var(--ow-green), var(--ow-purple));
color: white;
border: none;
padding: 1.2rem 2.5rem;
font-size: 1.1rem;
border-radius: 30px;
cursor: pointer;
overflow: hidden;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 0.8rem;
}

.button-arrow {
transition: transform 0.3s ease;
}

.button-glow {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: radial-gradient(circle, 
rgba(255, 255, 255, 0.3) 0%, 
transparent 70%);
opacity: 0;
transition: opacity 0.3s ease;
}

.unified-access-button:hover {
transform: scale(1.05);
box-shadow: 0 0 25px rgba(255, 75, 10, 0.3);
}

.unified-access-button:hover .button-arrow {
transform: translateX(5px);
}

.unified-access-button:hover .button-glow {
opacity: 1;
}

/* Animaciones */
@keyframes shieldPulse {
0% { transform: scale(1); opacity: 0.8; }
50% { transform: scale(1.05); opacity: 1; }
100% { transform: scale(1); opacity: 0.8; }
}

@keyframes raysRotation {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}


@media (max-width: 1200px) {
.unified-core {
grid-template-columns: 1fr;
}

.unified-shield {
width: 400px;
height: 400px;
}

.platforms-circle {
padding: 4rem;
}
}

@media (max-width: 768px) {
.unified-shield {
width: 300px;
height: 300px;
}

.shield-main-icon i {
font-size: 8rem;
}

.platforms-circle {
padding: 3rem;
}

.security-benefit-card {
padding: 1.5rem;
}
}


.platform-circle-icon {
width: 100px;
height: 100px;
background: var(--ow-gray);
border-radius: 15px; 
display: flex;
justify-content: center;
align-items: center;
transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
position: relative;

animation: popIn 1s ease-out forwards, neonPulse 2.5s infinite alternate;
}


.platform-circle-icon::before {
content: '';
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
border: 2px solid transparent;
border-radius: 15px;
background: linear-gradient(45deg, var(--ow-purple), var(--ow-green));
z-index: -1;
opacity: 0;

transition: opacity 0.4s ease;
}

.platform-circle-icon:hover::before {
opacity: 1;
}

.platform-circle-icon img {
width: 60%;
filter: var(--neon-effect);
transition: transform 0.3s ease, filter 0.3s ease;
}


.platform-circle-icon:hover {
transform: scale(1.1) rotateY(15deg) rotateZ(5deg);
filter: brightness(1.5) saturate(1.5);
box-shadow: 0 0 20px var(--ow-green), 0 0 40px var(--ow-green);
}

.platform-circle-icon:hover img {
transform: scale(1.2) rotate(10deg);
filter: drop-shadow(0 0 25px var(--ow-green));
}


@keyframes popIn {
0% {
transform: scale(0.5) rotate(-20deg);
opacity: 0;
}
100% {
transform: scale(1) rotate(0deg);
opacity: 1;
}
}


@keyframes neonPulse {
0% {
box-shadow: 0 0 5px var(--ow-green), 0 0 15px var(--ow-green);
filter: brightness(1);
}
100% {
box-shadow: 0 0 15px var(--ow-green), 0 0 30px var(--ow-green);
filter: brightness(1.2);
}
}


@keyframes continuousRotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}

.platform-circle-icon.rotate {
animation: continuousRotate 10s linear infinite;
}

.apps-showcase-section {
padding: 8rem 5%;
background: linear-gradient(45deg, var(--ow-dark) 40%, rgba(70, 15, 215, 0.03));
position: relative;
overflow: hidden;
}

.apps-header {
text-align: center;
margin-bottom: 4rem;
}

.apps-main-title {
font-size: 2.8rem;
font-weight: 600;
color: #fff;
margin-bottom: 1rem;
position: relative;
}

.apps-subtitle {
color: rgba(255, 255, 255, 0.85);
font-size: 1.1rem;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}

.apps-grid-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
gap: 3rem;
max-width: 1200px;
margin: 0 auto;
}

.app-card {
background: rgba(255, 255, 255, 0.02);
border-radius: 20px;
padding: 2.5rem;
position: relative;
border: 1px solid rgba(255, 255, 255, 0.08);
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.app-card:hover {
transform: translateY(-10px);
border-color: var(--ow-green);
box-shadow: 0 20px 40px rgba(255, 75, 10, 0.1);
}

.app-icon-container {
width: 120px;
height: 120px;
margin: 0 auto 2rem;
position: relative;
}

.app-icon {
width: 100%;
height: 100%;
object-fit: contain;
position: relative;
z-index: 2;
}

.app-float-effect {
position: absolute;
width: 100%;
height: 100%;
background: radial-gradient(circle, 
var(--ow-green) 0%, 
transparent 60%);
opacity: 0.1;
animation: float 4s ease-in-out infinite;
}

@keyframes float {
0% { transform: translateY(0) rotate(0deg); }
50% { transform: translateY(-20px) rotate(10deg); }
100% { transform: translateY(0) rotate(0deg); }
}

.app-content {
text-align: center;
}

.app-title {
font-size: 1.8rem;
margin-bottom: 1rem;
color: #fff;
}

.app-description {
color: rgba(255, 255, 255, 0.7);
margin-bottom: 2rem;
font-size: 1rem;
}

.app-features {
list-style: none;
margin: 2rem 0;
padding: 0;
}

.app-features li {
margin-bottom: 1rem;
font-size: 0.95rem;
color: rgba(255, 255, 255, 0.8);
display: flex;
align-items: center;
gap: 0.8rem;
justify-content: center;
}

.app-features i {
color: var(--ow-green);
width: 20px;
}

.app-actions {
display: flex;
justify-content: center;
align-items: center;
gap: 1.5rem;
margin-top: 2rem;
}

.download-button {
padding: 0.8rem 2rem;
border-radius: 30px;
text-decoration: none;
font-weight: 500;
display: flex;
align-items: center;
gap: 0.8rem;
transition: all 0.3s ease;
}

.download-button.android {
background: linear-gradient(45deg, rgb(216, 45, 45), rgb(225, 76, 39));
color: #fff;
}

.download-button.ios {
background: linear-gradient(45deg, rgb(216, 45, 45), rgb(225, 76, 39));
color: #fff;
}

.download-button:hover {
transform: scale(1.05);
box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.app-version {
color: rgba(255, 255, 255, 0.5);
font-size: 0.9rem;
}

.app-platform-badge {
position: absolute;
top: 20px;
right: 20px;
font-size: 1.5rem;
color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
.apps-grid-container {
grid-template-columns: 1fr;
}

.app-card {
padding: 2rem;
}

.app-icon-container {
width: 100px;
height: 100px;
}

.apps-main-title {
font-size: 2.2rem;
}
}
.cta-button {
padding: 1rem 2.5rem;
font-size: 1.1rem;
background: transparent;
border: 2px solid rgba(255, 255, 255, 0.9);
border-radius: 8px;
margin-top: 15px;
color: white;
cursor: pointer;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
font-weight: 500;
letter-spacing: 1px;
text-transform: uppercase;
}

.cta-button:hover {
background: rgba(255, 255, 255, 0.05);
border-color: rgba(255, 255, 255, 1);
transform: translateY(-2px);
}

.cta-button:active {
transform: translateY(0);
border-color: rgba(255, 255, 255, 0.8);
background: rgba(255, 255, 255, 0.02);
}

.cta-button::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 0;
height: 0;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
transform: translate(-50%, -50%);
transition: width 0.3s ease, height 0.3s ease;
}

.cta-button:hover::after {
width: 150px;
height: 150px;
}

.cta-button:focus {
outline: none;
box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.log-in {
position: relative;
padding: 0.8rem 1.5rem;
border-radius: 8px;

border: 1.5px solid rgba(255, 255, 255, 0.3);
backdrop-filter: blur(12px);
transition: all 0.3s ease;
margin-left: 1.5rem;
font-weight: 600;
display: inline-flex;
align-items: center;
gap: 0.7rem;
}

.log-in:hover {
background: linear-gradient(135deg, 
rgba(255, 255, 255, 0.25) 0%, 
rgba(255, 255, 255, 0.15) 100%);
border-color: rgba(255, 255, 255, 0.6);
transform: translateY(-2px);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.log-in i {
transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.log-in:hover i {
transform: scale(1.15) translateX(3px);
color: #ff732c;
}


.log-in::after {
content: '';
position: absolute;
top: -1px;
left: -1px;
right: -1px;
bottom: -1px;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}

.log-in:hover::after {
opacity: 1;
}


.log-in:active {
transform: translateY(0);
background: linear-gradient(135deg, 
rgba(255, 255, 255, 0.1) 0%, 
rgba(255, 255, 255, 0.05) 100%);
}

#mobile {
display: none;
}

@media (max-width: 768px) {
    
    .particles {
        display: none !important;
    }
    #mobile {
        display: inline-flex !important;
        }


    }
    
@media (max-width: 480px) {
 
    header {
        padding: 0.4rem 1%;
    }
    
 
    .logo {
        height: 50px;
    }
    
   
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
   
    .log-in {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
   
    .platform-card,
    .ai-main-card,
    .token-main-card,
    .app-card {
        padding: 1.5rem;
    }
    
     .section-title {
        font-size: 1.8rem;
    }
    
   
  
    .bottom-nav {
        padding: 8px 0;
    }
    
    .bottom-nav a {
        font-size: 0.8rem;
    }
    
   
    .hero-grid {
        gap: 1.5rem;
    }
}










.main-footer {
    background: linear-gradient(180deg, #0a0a0c 0%, #000000 100%);
    border-top: 2px solid rgba(255, 75, 10, 0.2);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-section h4 {
    color: var(--ow-green);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-left: 10px;
    border-left: 3px solid var(--ow-green);
}

.footer-links li {
    margin: 0.8rem 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--ow-green);
    transform: translateX(5px);
}

.social-grid {
    display: grid;
    text-decoration: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-icon {
    background: #fa5a1b;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.social-icon:hover {
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 75, 10, 0.3);
}

.newsletter {
    position: relative;
    display: flex;
    margin-top: 1.5rem;
}

.newsletter input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 8px 0 0 8px;
    color: white;
}

.newsletter-btn {
    background: var(--ow-green);
    color: white;
    border: none;
    padding: 0 1.2rem;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #ff5722;
}

.footer-bottom {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
}

.legal-links a {
    color: inherit;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--ow-green);
}

.badges {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.minecraft-badge {
    height: 35px;
    filter: drop-shadow(0 0 5px rgba(255, 75, 10, 0.3));
}

.ssl-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ow-green);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .badges {
        justify-content: center;
        margin-top: 1rem;
    }
}

.footer-links{


    list-style: none;
}
.footer-links a {
position: relative;
color: rgba(255, 255, 255, 0.7);
display: flex;
list-style: none;
text-decoration: none;
align-items: center;
gap: 0.8rem;
padding: 8px 12px;
border-radius: 6px;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 75, 10, 0.05) 50%,
    transparent 100%
);
background-size: 200% auto;
background-position: 100% 0;
}

.footer-links a:hover {
color: var(--ow-green);
transform: translateX(10px);
background-position: 0 0;
box-shadow: 0 0 15px rgba(255, 75, 10, 0.1);
}

.footer-links a::before {
content: "";
position: absolute;
left: -15px;
height: 100%;
width: 3px;
background: var(--ow-green);
transform: scaleY(0);
transition: transform 0.3s ease;
}

.footer-links a:hover::before {
transform: scaleY(1);
}

/* Mejoras para los social icons */
.social-icon {
position: relative;
overflow: hidden;
border: 1px solid rgba(255,255,255,0.1);
transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.social-icon::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
background: linear-gradient(
    45deg,
    transparent 20%,
    rgba(255,255,255,0.1) 50%,
    transparent 80%
);
transform: translateX(-100%);
transition: transform 0.4s ease;
}

.social-icon:hover::after {
transform: translateX(100%);
}

.social-icon:hover {
transform: translateY(-3px) scale(1.1);
box-shadow: 0 5px 25px rgba(255, 75, 10, 0.3);
}

/* Mejoras para el newsletter */
.newsletter input {
transition: all 0.3s ease;
border: 1px solid rgba(255,255,255,0.2);
}

.newsletter input:focus {
border-color: var(--ow-green);
box-shadow: 0 0 15px rgba(255, 75, 10, 0.2);
}

.newsletter-btn {
position: relative;
overflow: hidden;
background: linear-gradient(
    45deg,
    var(--ow-green),
    #ff5722
);
transition: all 0.3s ease;
}

.newsletter-btn::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
background: rgba(255,255,255,0.1);
transform: translateX(-100%);
transition: transform 0.3s ease;
}

.newsletter-btn:hover::after {
transform: translateX(0);
}

.newsletter-btn:hover {
transform: scale(1.05);
}

/* Mejoras para los legal links */
.legal-links a {
position: relative;
padding: 4px 0;
}

.legal-links a::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 1px;
background: var(--ow-green);
transition: width 0.3s ease;
}

.legal-links a:hover::after {
width: 100%;
}

.legal-links a:hover {
color: var(--ow-green);
}

/* Efecto de borde luminoso en secciones */
.footer-section {
position: relative;
}

.footer-section::after {
content: "";
position: absolute;
top: 0;
right: -15px;
height: 100%;
width: 1px;
background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255,75,10,0.3) 50%,
    transparent 100%
);
}

@media (max-width: 768px) {
.footer-section::after {
    display: none;
}
}
