/* ============================================
   FAUSINO - Advanced DeFi iGaming CSS 2025
   Mobile-First Responsive Design
   ============================================ */

:root {
    --primary-color: #0066FF;
    --secondary-color: #00FF88;
    --accent-color: #8B5CF6;
    --danger-color: #FF4757;
    --warning-color: #FFA726;
    --success-color: #00FF88;

    --bg-primary: #0F1419;
    --bg-secondary: #1A1F2E;
    --bg-tertiary: #213547;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-glass: rgba(255, 255, 255, 0.1);

    --text-primary: #FFFFFF;
    --text-secondary: #B4BCD0;
    --text-muted: #6B7280;

    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-neon: 0 0 20px rgba(0, 102, 255, 0.3);

    --sidebar-width: 280px;
    --sidebar-collapsed: 70px;
    --header-height: 70px;

    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background: #0E1220;
    color: #FFFFFF;
    overflow-x: hidden;
    line-height: 1.5;
}

/* ============================================
   MOBILE MENU - 2025 DESIGN
   ============================================ */

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(75, 92, 255, 0.1);
    border: 1px solid rgba(75, 92, 255, 0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    background: rgba(75, 92, 255, 0.2);
    border-color: rgba(75, 92, 255, 0.6);
    transform: scale(1.05);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: linear-gradient(135deg, #4B5CFF, #A658FF);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(75, 92, 255, 0.5);
}

.hamburger-line:not(:last-child) {
    margin-bottom: 5px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(14, 18, 32, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(75, 92, 255, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(75, 92, 255, 0.2);
    margin-bottom: 2rem;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4b5cff1a;
    border: 1px solid #4b5cff4d;
    border-radius: 10px;
    color: #8759ff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 59, 48, 0.2);
    border-color: rgba(255, 59, 48, 0.6);
    transform: scale(1.05);
}

.mobile-menu-close:active {
    transform: scale(0.95);
}

.mobile-menu-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(18, 24, 42, 0.6);
    border: 1px solid rgba(75, 92, 255, 0.2);
    border-radius: 12px;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(75, 92, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-menu-link:hover::before {
    left: 100%;
}

.mobile-menu-link:active {
    transform: scale(0.98);
}

.mobile-menu-link:hover {
    background: rgba(18, 24, 42, 0.8);
    border-color: rgba(75, 92, 255, 0.5);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(75, 92, 255, 0.3);
}

.mobile-menu-link-special {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.4);
}

.mobile-menu-link-special:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.2) 100%);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.mobile-link-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px currentColor);
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(75, 92, 255, 0.2);
}

.mobile-action-btn {
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-action-btn-outline {
    background: transparent;
    border: 2px solid #4B5CFF;
    color: #FFFFFF;
}

.mobile-action-btn-outline:hover {
    background: rgba(75, 92, 255, 0.2);
    box-shadow: 0 5px 20px rgba(75, 92, 255, 0.4);
    transform: translateY(-2px);
}

.mobile-action-btn-primary {
    background: linear-gradient(135deg, #4B5CFF 0%, #A658FF 100%);
    border: none;
    color: #FFFFFF;
    box-shadow: 0 5px 20px rgba(75, 92, 255, 0.4);
}

.mobile-action-btn-primary:hover {
    box-shadow: 0 8px 30px rgba(75, 92, 255, 0.6);
    transform: translateY(-2px);
}

.mobile-action-btn-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    color: #0E1220;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    font-weight: 800;
}

.mobile-action-btn-gold:hover {
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

/* Mobile Menu Overlay Background */
.mobile-menu::after {
    content: '';
    position: fixed;
    top: 0;
    right: 100%;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.mobile-menu.active::after {
    right: 0;
    opacity: 1;
    pointer-events: auto;
}

/* ============================================
   GRADIENT TEXT EFFECTS
   ============================================ */

.gradient-text {
    background: linear-gradient(135deg, #4B5CFF 0%, #A658FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.gradient-text-cyan {
    background: linear-gradient(135deg, #0177FB 0%, #26E5C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.gradient-text-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
    background: linear-gradient(135deg, #4B5CFF 0%, #A658FF 100%);
    box-shadow: 0 0 40px rgba(75, 92, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 0 60px rgba(75, 92, 255, 0.9);
    transform: translateY(-3px);
}

.btn-secondary {
    background: linear-gradient(135deg, #0177FB 0%, #26E5C0 100%);
    box-shadow: 0 0 40px rgba(38, 229, 192, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    box-shadow: 0 0 60px rgba(38, 229, 192, 0.8);
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    box-shadow: 0 0 70px rgba(255, 215, 0, 0.8);
    transform: translateY(-3px) scale(1.02);
}

.btn-outline {
    border: 2px solid #26E5C0;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(38, 229, 192, 0.1);
    box-shadow: 0 0 40px rgba(38, 229, 192, 0.4);
    transform: translateY(-3px);
}

.pulse-btn {
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 40px rgba(75, 92, 255, 0.6);
    }

    50% {
        box-shadow: 0 0 60px rgba(75, 92, 255, 0.9), 0 0 100px rgba(75, 92, 255, 0.5);
    }
}

.glow-on-hover {
    position: relative;
}

.glow-on-hover::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, #4B5CFF, #A658FF);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
    filter: blur(10px);
}

.glow-on-hover:hover::after {
    opacity: 0.7;
}

/* ============================================
   CARDS
   ============================================ */

.card {
    background: rgba(18, 24, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 92, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(75, 92, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.card:hover::before {
    left: 100%;
}

.card-hover:hover {
    border-color: rgba(75, 92, 255, 0.6);
    box-shadow: 0 25px 70px rgba(75, 92, 255, 0.4);
    transform: translateY(-12px);
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    background: rgba(14, 18, 32, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(75, 92, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-link {
    color: #B0B3C7;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
    font-size: 0.9375rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #4B5CFF, #A658FF);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #26E5C0;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-investor {
    color: #FFD700;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
    font-size: 0.9375rem;
}

.nav-link-investor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    transition: width 0.3s ease;
}

.nav-link-investor:hover {
    color: #FFA500;
}

.nav-link-investor:hover::after {
    width: 100%;
}

.logo-glow {
    filter: drop-shadow(0 0 20px rgba(75, 92, 255, 0.6));
    animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(75, 92, 255, 0.6));
    }

    50% {
        filter: drop-shadow(0 0 30px rgba(75, 92, 255, 0.9));
    }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    min-height: 100vh;
    position: relative;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(75, 92, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(38, 229, 192, 0.1) 0%, transparent 50%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(38, 229, 192, 0.1);
    border: 1px solid rgba(38, 229, 192, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #26E5C0;
    animation: fade-in-up 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #26E5C0;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    animation: fade-in-up 1s ease 0.2s both;
}

.hero-subtitle {
    animation: fade-in-up 1s ease 0.4s both;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glitch {
    position: relative;
    animation: glitch-text 5s infinite;
}

@keyframes glitch-text {

    0%,
    90%,
    100% {
        filter: none;
    }

    92% {
        filter: drop-shadow(2px 0 #FF00FF) drop-shadow(-2px 0 #00FFFF);
    }

    94% {
        filter: drop-shadow(-2px 0 #FF00FF) drop-shadow(2px 0 #00FFFF);
    }
}

/* Crypto Float Animation */
.crypto-float {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.crypto-icon {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: float-crypto 20s infinite ease-in-out;
    filter: drop-shadow(0 0 10px currentColor);
}

@media (min-width: 768px) {
    .crypto-icon {
        font-size: 2rem;
    }
}

@keyframes float-crypto {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-100px) rotate(90deg);
    }

    50% {
        transform: translateY(-50px) rotate(180deg);
    }

    75% {
        transform: translateY(-150px) rotate(270deg);
    }
}

/* Hero Stats */
.stat-card {
    text-align: center;
    padding: 1rem;
    background: rgba(18, 24, 42, 0.4);
    border-radius: 1rem;
    border: 1px solid rgba(75, 92, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .stat-card {
        padding: 1.5rem;
    }
}

.stat-card:hover {
    border-color: rgba(75, 92, 255, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(75, 92, 255, 0.3);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #26E5C0, #0177FB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    color: #B0B3C7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

/* Hero Graphic */
.hero-graphic {
    animation: fade-in 1.2s ease 0.5s both;
}

.floating-3d {
    animation: floating-3d 6s ease-in-out infinite;
}

@keyframes floating-3d {

    0%,
    100% {
        transform: translateY(0) rotateZ(0deg);
    }

    50% {
        transform: translateY(-30px) rotateZ(5deg);
    }
}

.gaming-card {
    position: relative;
    padding: 1.5rem;
    background: rgba(18, 24, 42, 0.5);
    border-radius: 2rem;
    border: 1px solid rgba(75, 92, 255, 0.3);
    backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
    .gaming-card {
        padding: 2rem;
    }
}

.card-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle, rgba(75, 92, 255, 0.2) 0%, transparent 70%);
    animation: rotate-glow 10s linear infinite;
    z-index: -1;
}

@keyframes rotate-glow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.dice-element {
    animation: dice-shake 3s ease-in-out infinite;
}

@keyframes dice-shake {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(5deg);
    }
}

.coin-stack {
    animation: coin-float 4s ease-in-out infinite;
}

@keyframes coin-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.slot-machine {
    animation: slot-spin 2s ease-in-out infinite;
}

@keyframes slot-spin {

    0%,
    90%,
    100% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(-5px);
    }
}

/* ============================================
   ICON CONTAINERS
   ============================================ */

.icon-container {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #4B5CFF, #A658FF);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(75, 92, 255, 0.4);
    transition: all 0.4s ease;
}

@media (min-width: 768px) {
    .icon-container {
        width: 4rem;
        height: 4rem;
    }
}

.icon-container:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(75, 92, 255, 0.6);
}

.icon-cyan {
    background: linear-gradient(135deg, #26E5C0, #0177FB);
    box-shadow: 0 10px 30px rgba(38, 229, 192, 0.4);
}

.icon-cyan:hover {
    box-shadow: 0 15px 40px rgba(38, 229, 192, 0.6);
}

.icon-purple {
    background: linear-gradient(135deg, #A658FF, #FF6C3F);
    box-shadow: 0 10px 30px rgba(166, 88, 255, 0.4);
}

.icon-purple:hover {
    box-shadow: 0 15px 40px rgba(166, 88, 255, 0.6);
}

/* ============================================
   FEATURE ITEMS
   ============================================ */

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(18, 24, 42, 0.4);
    border-radius: 1rem;
    border: 1px solid rgba(38, 229, 192, 0.2);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .feature-item {
        gap: 1rem;
        padding: 1.5rem;
    }
}

.feature-item:hover {
    border-color: rgba(38, 229, 192, 0.5);
    background: rgba(18, 24, 42, 0.6);
    transform: translateX(5px);
}

.feature-check {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #26E5C0, #0177FB);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(38, 229, 192, 0.4);
}

@media (min-width: 768px) {
    .feature-check {
        width: 2rem;
        height: 2rem;
    }
}

/* ============================================
   PLATFORM CARDS
   ============================================ */

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(75, 92, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(38, 229, 192, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    animation: particles-move 20s linear infinite;
}

@keyframes particles-move {
    from {
        background-position: 0 0, 40px 40px;
    }

    to {
        background-position: 50px 50px, 90px 90px;
    }
}

.platform-badge {
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.platform-card {
    background: rgba(18, 24, 42, 0.7);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(75, 92, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(75, 92, 255, 0.05) 0%, transparent 70%);
    animation: platform-rotate 15s linear infinite;
}

@keyframes platform-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.platform-main {
    border-color: rgba(38, 229, 192, 0.4);
}

.platform-main:hover {
    border-color: rgba(38, 229, 192, 0.7);
    box-shadow: 0 30px 80px rgba(38, 229, 192, 0.3);
    transform: translateY(-10px);
}

.platform-telegram {
    border-color: rgba(166, 88, 255, 0.4);
}

.platform-telegram:hover {
    border-color: rgba(166, 88, 255, 0.7);
    box-shadow: 0 30px 80px rgba(166, 88, 255, 0.3);
    transform: translateY(-10px);
}

.platform-icon {
    padding: 0.875rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(38, 229, 192, 0.2), rgba(1, 119, 251, 0.2));
    border: 1px solid rgba(38, 229, 192, 0.3);
    color: #26E5C0;
    animation: icon-pulse 3s ease-in-out infinite;
}

@media (min-width: 768px) {
    .platform-icon {
        padding: 1rem;
    }
}

@keyframes icon-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
}

.status-live {
    background: rgba(38, 229, 192, 0.2);
    color: #26E5C0;
    border: 1px solid rgba(38, 229, 192, 0.4);
}

.status-telegram {
    background: rgba(166, 88, 255, 0.2);
    color: #A658FF;
    border: 1px solid rgba(166, 88, 255, 0.4);
}

.status-soon {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Games Showcase */
.games-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .games-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.game-icon-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 0.75rem;
    background: rgba(75, 92, 255, 0.1);
    border: 1px solid rgba(75, 92, 255, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

@media (min-width: 768px) {
    .game-icon-large {
        padding: 1.5rem 1rem;
    }
}

.game-icon-large span:first-child {
    font-size: 2rem;
}

@media (min-width: 768px) {
    .game-icon-large span:first-child {
        font-size: 2.5rem;
    }
}

.game-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #B0B3C7;
}

@media (min-width: 640px) {
    .game-name {
        font-size: 0.875rem;
    }
}

.game-icon-large:hover {
    background: rgba(75, 92, 255, 0.2);
    border-color: rgba(75, 92, 255, 0.6);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(75, 92, 255, 0.4);
}

.game-icon-large:hover .game-name {
    color: #FFFFFF;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .platform-features {
        gap: 0.75rem;
    }
}

.feature-badge {
    padding: 0.4rem 0.875rem;
    background: rgba(38, 229, 192, 0.1);
    border: 1px solid rgba(38, 229, 192, 0.3);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #26E5C0;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .feature-badge {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

.feature-badge:hover {
    background: rgba(38, 229, 192, 0.2);
    transform: scale(1.05);
}

/* Mini App Features */
.mini-app-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .mini-app-features {
        gap: 1rem;
    }
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    background: rgba(14, 18, 32, 0.6);
    border-radius: 1rem;
    border: 1px solid rgba(166, 88, 255, 0.2);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .mini-feature {
        gap: 1rem;
        padding: 1.25rem;
    }
}

.mini-feature:hover {
    background: rgba(14, 18, 32, 0.8);
    border-color: rgba(166, 88, 255, 0.5);
    transform: translateX(5px);
}

.mini-feature-icon {
    font-size: 1.75rem;
    filter: drop-shadow(0 0 10px currentColor);
}

@media (min-width: 768px) {
    .mini-feature-icon {
        font-size: 2rem;
    }
}

/* Coming Soon Cards */
.coming-soon-card {
    background: rgba(18, 24, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 92, 255, 0.2);
    transition: all 0.3s ease;
}

.coming-soon-card:hover {
    border-color: rgba(75, 92, 255, 0.5);
    transform: translateY(-5px);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(75, 92, 255, 0.2);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4B5CFF, #A658FF);
    border-radius: 9999px;
    animation: progress-shine 2s ease-in-out infinite;
}

@keyframes progress-shine {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* ============================================
   INVESTOR CTA
   ============================================ */

.investor-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 165, 0, 0.1) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.investor-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: investor-pulse 4s ease-in-out infinite;
}

@keyframes investor-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.animate-pulse-gold {
    animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
    }
}

.investor-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(14, 18, 32, 0.6);
    border-radius: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .investor-stat {
        padding: 2rem;
    }
}

.investor-stat:hover {
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* ============================================
   ROADMAP SECTION
   ============================================ */

.roadmap-section {
    background: linear-gradient(180deg, #0E1220 0%, #12182A 100%);
}

.roadmap-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .roadmap-timeline {
        gap: 3rem;
    }
}

.roadmap-phase {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    position: relative;
}

@media (min-width: 768px) {
    .roadmap-phase {
        gap: 2rem;
    }
}

.phase-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.phase-dot {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .phase-dot {
        width: 3rem;
        height: 3rem;
    }
}

.phase-dot-completed {
    background: linear-gradient(135deg, #26E5C0, #0177FB);
    box-shadow: 0 0 30px rgba(38, 229, 192, 0.6);
    color: white;
}

.phase-dot-active {
    background: linear-gradient(135deg, #4B5CFF, #A658FF);
    box-shadow: 0 0 30px rgba(75, 92, 255, 0.6);
    position: relative;
}

.phase-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid #4B5CFF;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.phase-dot-upcoming {
    background: #666;
    box-shadow: 0 0 15px rgba(102, 102, 102, 0.3);
}

.phase-connector {
    width: 2px;
    height: 100%;
    background: #666;
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .phase-connector {
        top: 3rem;
    }
}

.phase-connector-completed {
    background: linear-gradient(180deg, #26E5C0, #0177FB);
    box-shadow: 0 0 10px rgba(38, 229, 192, 0.4);
}

.phase-connector-active {
    background: linear-gradient(180deg, #4B5CFF 0%, #666 100%);
}

.phase-content {
    padding-top: 0.5rem;
}

.phase-label {
    font-size: 1rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .phase-label {
        font-size: 1.125rem;
    }
}

.phase-date {
    font-size: 0.8125rem;
    color: #B0B3C7;
    margin-bottom: 0.875rem;
}

@media (min-width: 768px) {
    .phase-date {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
}

.phase-card {
    padding: 1.5rem;
    background: rgba(18, 24, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(75, 92, 255, 0.2);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .phase-card {
        padding: 2rem;
    }
}

.phase-card:hover {
    border-color: rgba(75, 92, 255, 0.5);
    transform: translateX(5px);
}

.phase-card-active {
    border: 2px solid rgba(75, 92, 255, 0.5);
    box-shadow: 0 10px 40px rgba(75, 92, 255, 0.3);
}

.phase-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .phase-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.phase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

@media (min-width: 768px) {
    .phase-list {
        gap: 0.75rem;
    }
}

.phase-item {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    color: #B0B3C7;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .phase-item {
        gap: 0.75rem;
        font-size: 1rem;
    }
}

.phase-item-done {
    color: #FFFFFF;
}

.phase-item-active {
    color: #FFFFFF;
    font-weight: 600;
}

.phase-check {
    font-size: 1.125rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .phase-check {
        font-size: 1.25rem;
    }
}

.phase-item-done .phase-check {
    color: #26E5C0;
}

.phase-item-active .phase-check {
    color: #4B5CFF;
    animation: pulse-check 2s ease-in-out infinite;
}

@keyframes pulse-check {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ============================================
   REWARDS SECTION
   ============================================ */

.rewards-card {
    background: rgba(18, 24, 42, 0.7);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(75, 92, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.rewards-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(75, 92, 255, 0.1) 0%, transparent 60%);
    animation: rewards-rotate 20s linear infinite;
}

@keyframes rewards-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.referral-card {
    border-color: rgba(38, 229, 192, 0.4);
}

.referral-card:hover {
    border-color: rgba(38, 229, 192, 0.7);
    box-shadow: 0 30px 80px rgba(38, 229, 192, 0.3);
    transform: translateY(-10px);
}

.affiliate-card {
    border-color: rgba(166, 88, 255, 0.4);
}

.affiliate-card:hover {
    border-color: rgba(166, 88, 255, 0.7);
    box-shadow: 0 30px 80px rgba(166, 88, 255, 0.3);
    transform: translateY(-10px);
}

.rewards-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.rewards-icon {
    padding: 0.875rem;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(38, 229, 192, 0.2), rgba(1, 119, 251, 0.2));
    border: 1px solid rgba(38, 229, 192, 0.3);
    color: #26E5C0;
    animation: rewards-icon-float 3s ease-in-out infinite;
}

@media (min-width: 768px) {
    .rewards-icon {
        padding: 1rem;
    }
}

@keyframes rewards-icon-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.reward-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 0.875rem 1.25rem;
    border-radius: 1rem;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .reward-badge {
        padding: 1rem 1.5rem;
    }
}

.reward-badge-cyan {
    background: rgba(38, 229, 192, 0.15);
    border: 2px solid rgba(38, 229, 192, 0.4);
    box-shadow: 0 0 30px rgba(38, 229, 192, 0.3);
}

.reward-badge-purple {
    background: rgba(166, 88, 255, 0.15);
    border: 2px solid rgba(166, 88, 255, 0.4);
    box-shadow: 0 0 30px rgba(166, 88, 255, 0.3);
}

.rewards-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .rewards-breakdown {
        gap: 1rem;
    }
}

.breakdown-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.25rem;
    background: rgba(14, 18, 32, 0.6);
    border-radius: 1rem;
    border: 1px solid rgba(75, 92, 255, 0.2);
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .breakdown-item {
        gap: 1rem;
        padding: 1.5rem;
    }
}

.breakdown-item:hover {
    background: rgba(14, 18, 32, 0.8);
    border-color: rgba(75, 92, 255, 0.5);
    transform: translateX(5px);
}

.breakdown-icon {
    font-size: 1.75rem;
    filter: drop-shadow(0 0 10px currentColor);
}

@media (min-width: 768px) {
    .breakdown-icon {
        font-size: 2rem;
    }
}

.breakdown-content {
    flex: 1;
}

.breakdown-title {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .breakdown-title {
        font-size: 1.125rem;
    }
}

.breakdown-desc {
    font-size: 0.8125rem;
    color: #B0B3C7;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .breakdown-desc {
        font-size: 0.875rem;
    }
}

.breakdown-value {
    font-size: 0.9375rem;
    font-weight: 700;
}

@media (min-width: 768px) {
    .breakdown-value {
        font-size: 1rem;
    }
}

.example-earnings {
    padding: 1.25rem;
    background: rgba(14, 18, 32, 0.8);
    border-radius: 1rem;
    border: 2px solid rgba(75, 92, 255, 0.3);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .example-earnings {
        padding: 1.5rem;
    }
}

.example-header {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.875rem;
}

@media (min-width: 768px) {
    .example-header {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
}

.example-content {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

@media (min-width: 768px) {
    .example-content {
        gap: 0.75rem;
    }
}

.example-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #B0B3C7;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .example-row {
        font-size: 1rem;
    }
}

.example-value {
    font-size: 1.125rem;
    font-weight: 800;
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .example-value {
        font-size: 1.25rem;
    }
}

.tier-system {
    padding: 1.25rem;
    background: rgba(14, 18, 32, 0.8);
    border-radius: 1rem;
    border: 2px solid rgba(166, 88, 255, 0.3);
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .tier-system {
        padding: 1.5rem;
    }
}

.tier-header {
    font-size: 1rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.875rem;
}

@media (min-width: 768px) {
    .tier-header {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
}

.tier-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
}

@media (min-width: 640px) {
    .tier-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}

.tier-item {
    padding: 0.875rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 2px solid;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .tier-item {
        padding: 1rem;
    }
}

.tier-item:hover {
    transform: scale(1.05);
}

.tier-bronze {
    background: rgba(205, 127, 50, 0.1);
    border-color: rgba(205, 127, 50, 0.4);
}

.tier-bronze:hover {
    box-shadow: 0 10px 30px rgba(205, 127, 50, 0.3);
}

.tier-silver {
    background: rgba(192, 192, 192, 0.1);
    border-color: rgba(192, 192, 192, 0.4);
}

.tier-silver:hover {
    box-shadow: 0 10px 30px rgba(192, 192, 192, 0.3);
}

.tier-gold {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
}

.tier-gold:hover {
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.tier-name {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .tier-name {
        font-size: 1rem;
    }
}

.tier-req {
    font-size: 0.6875rem;
    color: #B0B3C7;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .tier-req {
        font-size: 0.75rem;
    }
}

.tier-rate {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #FFFFFF;
}

@media (min-width: 768px) {
    .tier-rate {
        font-size: 0.875rem;
    }
}

.combined-benefits {
    position: relative;
    z-index: 1;
}

.benefits-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.benefits-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 60%);
    animation: benefits-pulse 10s ease-in-out infinite;
}

@keyframes benefits-pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.benefit-box {
    text-align: center;
    padding: 1.5rem;
    background: rgba(14, 18, 32, 0.6);
    border-radius: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .benefit-box {
        padding: 2rem;
    }
}

.benefit-box:hover {
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 0.875rem;
    filter: drop-shadow(0 0 15px currentColor);
}

@media (min-width: 768px) {
    .benefit-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.625rem;
}

@media (min-width: 768px) {
    .benefit-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
}

.benefit-desc {
    font-size: 0.8125rem;
    color: #B0B3C7;
    line-height: 1.5;
}

@media (min-width: 768px) {
    .benefit-desc {
        font-size: 0.875rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #12182A;
    border-top: 1px solid rgba(75, 92, 255, 0.2);
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .footer {
        padding: 3rem 0;
    }
}

.footer-link {
    color: #B0B3C7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
}

.footer-link:hover {
    color: #26E5C0;
    padding-left: 5px;
}

.social-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #4B5CFF, #A658FF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .social-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
}

.social-icon:hover {
    background: linear-gradient(135deg, #A658FF, #FF6C3F);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(75, 92, 255, 0.5);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(75, 92, 255, 0.1);
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        padding-top: 2rem;
    }
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */

.radial-gradient {
    background: radial-gradient(circle at top center, rgba(75, 92, 255, 0.15) 0%, transparent 70%);
}

.radial-gradient-cyan {
    background: radial-gradient(circle at center, rgba(38, 229, 192, 0.15) 0%, transparent 70%);
}

.radial-gradient-gold {
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-spacing {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .section-spacing {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .section-spacing {
        padding: 100px 0;
    }
}

/* ============================================
   RESPONSIVE UTILITIES
   ============================================ */

@media (max-width: 1023px) {
    body.menu-open {
        overflow: hidden;
    }
}

/* Prevent text selection on interactive elements */
.mobile-menu-btn,
.mobile-menu-close,
.mobile-action-btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Remove scrollbar from mobile menu */
.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: rgba(14, 18, 32, 0.5);
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: rgba(75, 92, 255, 0.5);
    border-radius: 3px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(75, 92, 255, 0.7);
}

/* IMPORTANTE: Ocultar el botón hamburguesa cuando el menú está activo */
.mobile-menu-btn.active {
    opacity: 0;
    pointer-events: none;
}

/* Crypto Floating Icons */
.crypto-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0;
    animation: float-crypto 20s infinite ease-in-out;
    pointer-events: none;
    filter: drop-shadow(0 0 10px rgba(75, 92, 255, 0.5));
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .crypto-icon {
        width: 30px;
        height: 30px;
    }
}

@keyframes float-crypto {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) rotate(0deg) scale(0.5);
    }

    10% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.6;
        transform: translateY(-100vh) translateX(50px) rotate(180deg) scale(1);
    }

    90% {
        opacity: 0.4;
    }

    100% {
        opacity: 0;
        transform: translateY(-120vh) translateX(100px) rotate(360deg) scale(0.5);
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}