:root {
    /* Football Fintech Palette */
    --bg-dark: #022c22; /* Deep green/black for stadium night feel */
    --bg-card: rgba(6, 78, 59, 0.7); /* Translucent dark green */
    --primary: #10b981; /* Bright grass green */
    --primary-glow: rgba(16, 185, 129, 0.5);
    --accent: #fbbf24; /* Trophy Gold */
    --text-main: #f0fdf4;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.15);
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #b45309 100%);
    
    /* Spacing & Radius */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    
    /* Font */
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 50% 0%, #065f46 0%, transparent 70%),
        radial-gradient(circle at 85% 30%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Glows */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.2;
}

.bg-glow-1 {
    top: -150px;
    left: -150px;
    background: var(--primary);
}

.bg-glow-2 {
    bottom: -150px;
    right: -150px;
    background: var(--accent);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.9);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: white;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
    border: 2px solid rgba(255,255,255,0.2);
}

.text-highlight {
    color: var(--accent);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: var(--text-main);
}

.btn-nav {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Decorative Football Field Circle */
.hero-grid::before {
    content: '';
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: -1;
}

.hero-grid::after {
    content: '';
    position: absolute;
    right: 15%; /* Inside the circle */
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: -1;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 20px -5px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px var(--primary-glow);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.trust-badges {
    display: flex;
    gap: 32px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--primary);
}

/* Phone Mockup CSS - Enhanced */
.phone-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    border: 4px solid #333;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    animation: floatPhone 6s ease-in-out infinite;
}

a .phone-mockup:hover {
    transform: translateY(-10px) scale(1.02) rotate(2deg);
    box-shadow: 0 30px 60px -12px rgba(59, 130, 246, 0.4);
    border-color: var(--primary);
    cursor: pointer;
    animation-play-state: paused;
}

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

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 20;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #f1f5f9;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* App UI Styles */
.app-top-bar {
    padding: 12px 20px 0;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: #1e293b;
}

.icons {
    display: flex;
    gap: 6px;
}

.app-ui {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

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

.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #1e293b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.greeting {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.greeting span { font-size: 0.8rem; color: #64748b; }
.greeting strong { font-size: 1rem; color: #0f172a; }

.notification-dot {
    position: relative;
    color: #1e293b;
}

.notification-dot::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #f1f5f9;
}

.balance-card-modern {
    background: var(--bg-dark);
    color: white;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.balance-card-modern .label {
    font-size: 0.85rem;
    opacity: 0.7;
}

.balance-card-modern .amount {
    font-size: 2rem;
    font-weight: 700;
    margin: 8px 0;
}

.growth {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.tag.positive {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.3), 0 4px 6px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}

.icon-box.blue { background: radial-gradient(circle at 30% 30%, #60a5fa, #1d4ed8); }
.icon-box.purple { background: radial-gradient(circle at 30% 30%, #a78bfa, #5b21b6); }
.icon-box.green { background: radial-gradient(circle at 30% 30%, #34d399, #047857); }
.icon-box.orange { background: radial-gradient(circle at 30% 30%, #fbbf24, #b45309); }

.live-match-widget {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 16px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-weight: 700;
    color: white;
}

.live-badge {
    background: #ef4444;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
}

.match-score-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.team-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #e2e8f0;
}

.team-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: #64748b;
}

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

.score-col .score {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.score-col .time {
    font-size: 0.8rem;
    color: #ef4444;
    font-weight: 600;
}

.prediction-bar {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    position: relative;
    margin-bottom: 8px;
}

.bar-fill {
    height: 100%;
    background: #3b82f6;
    border-radius: 3px;
}

.pred-text {
    font-size: 0.7rem;
    color: #64748b;
}

.app-bottom-nav {
    background: white;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 1.2rem;
}

.app-bottom-nav .active { color: #3b82f6; }

.fab-btn {
    width: 48px;
    height: 48px;
    background: #0f172a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -24px;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.3);
}

/* Floating Elements */
.float-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.float-card:hover {
    transform: scale(1.1) !important;
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--primary);
    cursor: default;
}

.float-1 {
    top: 100px;
    right: -40px;
    animation-delay: 1s;
}

.float-2 {
    bottom: 100px;
    left: -40px;
    animation-delay: 3s;
}

.float-card .icon {
    width: 32px;
    height: 32px;
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-card .text {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

.float-card .text span { color: #94a3b8; }
.float-card .text strong { color: white; }

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

/* Features Section */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.9);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.icon-blue { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.icon-purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.icon-green { background: rgba(16, 185, 129, 0.1); color: #10b981; }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
}

/* App Showcase */
.app-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, transparent 100%);
}

.showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin: 32px 0;
}

.feature-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-list i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 4px;
}

.feature-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.feature-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.btn-wide {
    padding: 16px 48px;
    font-size: 1.1rem;
}

/* Dark UI Phone */
.dark-ui {
    background: #0f172a;
    color: white;
    padding: 24px;
}

.chart-container {
    margin-top: 40px;
    margin-bottom: 32px;
}

.chart-container h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    opacity: 0.8;
}

.mock-chart {
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
}

.bar {
    width: 100%;
    background: #1e293b;
    border-radius: 4px;
}

.bar.active {
    background: var(--primary);
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trans-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #1e293b;
    border-radius: 12px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.trans-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.trans-details span { font-size: 0.9rem; font-weight: 600; }
.trans-details small { font-size: 0.75rem; color: #94a3b8; }

.amount.positive { color: #34d399; }
.amount.negative { color: #ef4444; }

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-item {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.stars {
    color: #f59e0b;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-item p {
    font-style: italic;
    margin-bottom: 24px;
    color: #cbd5e1;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-small {
    width: 32px;
    height: 32px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Footer */
footer {
    background: #020617;
    padding: 80px 0 20px;
    border-top: 1px solid var(--border);
}

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

.footer-col h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.footer-col h4 {
    margin-bottom: 24px;
    color: white;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

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

.qr-box {
    background: white;
    padding: 8px;
    border-radius: 12px;
    display: inline-block;
}

.qr-box img {
    display: block;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-grid, .showcase-container, .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .trust-badges {
        justify-content: center;
    }

    .phone-container {
        margin-top: 40px;
    }

    .nav-links, .btn-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }
    
    .float-card {
        display: none; /* Hide floating elements on mobile to prevent overflow */
    }
    
    h1 { font-size: 2.5rem; }
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
}
/ * . b g - p a t t e r n - f i e l d   S t y l e s * / 
 
 . b g - p a t t e r n - f i e l d   { 
 
         p o s i t i o n :   f i x e d ; 
 
         t o p :   0 ; 
 
         l e f t :   0 ; 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   1 0 0 % ; 
 
         / *   S u b t l e   g r i d   p a t t e r n   * / 
 
         b a c k g r o u n d - i m a g e :   
 
                 l i n e a r - g r a d i e n t ( r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 0 3 )   1 p x ,   t r a n s p a r e n t   1 p x ) , 
 
                 l i n e a r - g r a d i e n t ( 9 0 d e g ,   r g b a ( 2 5 5 , 2 5 5 , 2 5 5 , 0 . 0 3 )   1 p x ,   t r a n s p a r e n t   1 p x ) ; 
 
         b a c k g r o u n d - s i z e :   5 0 p x   5 0 p x ; 
 
         z - i n d e x :   - 2 ; 
 
         m a s k - i m a g e :   r a d i a l - g r a d i e n t ( c i r c l e   a t   c e n t e r ,   b l a c k   4 0 % ,   t r a n s p a r e n t   1 0 0 % ) ; 
 
         p o i n t e r - e v e n t s :   n o n e ; 
 
 } 
 
 
 
 / *   A d d   s p e c i a l i z e d   f o o t b a l l   a n i m a t i o n s   * / 
 
 @ k e y f r a m e s   f l o a t   { 
 
         0 % ,   1 0 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   } 
 
         5 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 p x ) ;   } 
 
 } 
 
 
 
 . l o g o - i c o n   i   { 
 
         a n i m a t i o n :   f l o a t   3 s   e a s e - i n - o u t   i n f i n i t e ; 
 
 } 
 
  
 / *   H u g e   R o t a t i n g   F o o t b a l l   B a c k g r o u n d   * /  
 . h e r o   {  
         p o s i t i o n :   r e l a t i v e ;  
         o v e r f l o w :   h i d d e n ;  
 }  
  
 . h e r o - b g - f o o t b a l l   {  
         p o s i t i o n :   a b s o l u t e ;  
         r i g h t :   - 1 5 % ;  
         t o p :   - 1 0 % ;  
         f o n t - s i z e :   5 0 v w ;   / *   R e s p o n s i v e   h u g e   s i z e   * /  
         c o l o r :   v a r ( - - p r i m a r y ) ;  
         o p a c i t y :   0 . 0 3 ;  
         z - i n d e x :   0 ;  
         a n i m a t i o n :   r o t a t e B a l l   1 2 0 s   l i n e a r   i n f i n i t e ;  
         p o i n t e r - e v e n t s :   n o n e ;  
         l i n e - h e i g h t :   1 ;  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . h e r o - b g - f o o t b a l l   {  
                 r i g h t :   - 3 0 % ;  
                 t o p :   1 0 % ;  
                 f o n t - s i z e :   8 0 v w ;  
         }  
 }  
  
 @ k e y f r a m e s   r o t a t e B a l l   {  
         f r o m   {   t r a n s f o r m :   r o t a t e ( 0 d e g ) ;   }  
         t o   {   t r a n s f o r m :   r o t a t e ( 3 6 0 d e g ) ;   }  
 }  
  
 / *   A d d   s p e c i a l i z e d   f o o t b a l l   a n i m a t i o n s   * /  
 @ k e y f r a m e s   f l o a t   {  
         0 % ,   1 0 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ;   }  
         5 0 %   {   t r a n s f o r m :   t r a n s l a t e Y ( - 1 0 p x ) ;   }  
 }  
  
 . l o g o - i c o n   i   {  
         a n i m a t i o n :   f l o a t   3 s   e a s e - i n - o u t   i n f i n i t e ;  
 }  
 

/* Ubicacion Section */
.ubicacion {
    padding: 100px 0;
}

.ubicacion .map-wrapper {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.ubicacion .map-link {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
