* {
    font-family: 'Inter', sans-serif;
}

:root {
    --primary-gradient: linear-gradient(135deg, #21eb02 0%, #1a9b01 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #21eb02 0%, #15a301 100%);
    --dark-gradient: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #16213e 100%);
    --primary-color: #21eb02;
    --primary-dark: #15a301;
}

.gradient-text {
    background: linear-gradient(135deg, #21eb02 0%, #15a301 50%, #0f8001 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.glass-effect {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-effect-enhanced {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-gradient {
    background: var(--dark-gradient);
    position: relative;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
    animation: heroGradient 15s ease infinite;
}

@keyframes heroGradient {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.card-gradient {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 50%, rgba(245, 158, 11, 0.15) 100%);
    position: relative;
    overflow: hidden;
}

.card-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
    opacity: 0;
}

.card-gradient:hover::before {
    animation: shimmer 0.5s ease;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.btn-gradient {
    background: var(--primary-gradient);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-gradient::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-gradient:hover::before {
    left: 100%;
}

.btn-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(33, 235, 2, 0.5), 0 0 20px rgba(33, 235, 2, 0.3);
}

.btn-gradient-accent {
    background: var(--accent-gradient);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-gradient-accent:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(33, 235, 2, 0.5), 0 0 20px rgba(33, 235, 2, 0.3);
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

.floating-delayed {
    animation: floating 4s ease-in-out infinite;
    animation-delay: 2s;
}

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

.pulse {
    animation: pulse 2s infinite;
}

.pulse-slow {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.slide-in {
    animation: slideIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slide-in-left {
    animation: slideInLeft 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slide-in-right {
    animation: slideInRight 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.crypto-pattern {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.scroll-smooth {
    scroll-behavior: smooth;
}

.hover-scale {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.hover-lift {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.rotate-180 {
    transform: rotate(180deg);
}

/* Enhanced Typography */
.text-shadow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.text-shadow-glow {
    text-shadow: 0 0 20px rgba(33, 235, 2, 0.5);
}

/* Loading Animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #21eb02;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Card Styles */
.card-enhanced {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.card-enhanced:hover::before {
    opacity: 1;
}

.card-enhanced:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(33, 235, 2, 0.3);
}

/* Particle Background */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-up 15s infinite linear;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Enhanced Navigation */
.nav-enhanced {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Enhanced Buttons */
.btn-enhanced {
    background: var(--primary-gradient);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(33, 235, 2, 0.3);
}

.btn-enhanced::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-enhanced:hover::before {
    left: 100%;
}

.btn-enhanced:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(33, 235, 2, 0.5), 0 0 20px rgba(33, 235, 2, 0.3);
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero-gradient h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-gradient p {
        font-size: 1.1rem;
    }
    
    .card-enhanced {
        margin-bottom: 1rem;
        padding: 1.5rem;
    }
    
    .floating {
        animation: none;
    }
    
    .floating-delayed {
        animation: none;
    }
    
    .particles {
        display: none;
    }
    
    /* Navigation mobile improvements */
    .nav-enhanced {
        padding: 0.5rem 0;
    }
    
    .nav-enhanced .container {
        padding: 0 1rem;
    }
    
    /* Hero section mobile */
    #home {
        min-height: auto;
        padding: 6rem 0 3rem 0;
    }
    
    #home .container {
        padding: 0 1rem;
    }
    
    #home .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #home .slide-in-left {
        text-align: center;
    }
    
    #home .flex {
        justify-content: center;
    }
    
    #home .glass-effect-enhanced {
        display: inline-block;
        text-align: left;
    }
    
    /* Typography mobile */
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-7xl {
        font-size: 3rem;
    }
    
    .text-3xl {
        font-size: 1.5rem;
    }
    
    .text-2xl {
        font-size: 1.3rem;
    }
    
    .text-xl {
        font-size: 1.1rem;
    }
    
    /* Button mobile */
    .btn-enhanced {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .glass-effect-enhanced {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Coin mobile */
    .coin-logo {
        width: 40px;
        height: 40px;
    }
    
    .coin-logo-large {
        width: 60px;
        height: 60px;
    }
    
    .coin-simple {
        width: 40px;
        height: 40px;
    }
    
    .coin-simple-large {
        width: 60px;
        height: 60px;
    }
    
    /* Feature cards mobile */
    .card-enhanced .w-20 {
        width: 4rem;
        height: 4rem;
    }
    
    .card-enhanced h3 {
        font-size: 1.3rem;
    }
    
    .card-enhanced p {
        font-size: 0.95rem;
    }
    
    /* Stats mobile */
    .glass-effect-enhanced .flex {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .glass-effect-enhanced .space-x-6 > * + * {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    /* Section spacing mobile */
    section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Grid mobile */
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lg\\:grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .md\\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    /* Mobile menu improvements */
    #mobileMenu {
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    #mobileMenu .space-y-4 > * + * {
        margin-top: 1rem;
    }
    
    #mobileMenu a {
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        transition: background-color 0.3s;
    }
    
    #mobileMenu a:hover {
        background-color: rgba(102, 126, 234, 0.1);
    }
    
    /* Plans section mobile */
    #plans .grid {
        grid-template-columns: 1fr;
        max-width: none;
    }
    
    #plans .card-enhanced {
        text-align: center;
    }
    
    #plans .text-center {
        text-align: center;
    }
    
    /* Income section mobile */
    #income .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #income .glass-effect-enhanced {
        padding: 1.5rem;
    }
    
    /* Fixed deposit mobile */
    #fixed-deposit .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Testimonials mobile */
    #testimonials .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    #testimonials .text-3xl {
        font-size: 1.5rem;
    }
    
    /* Footer mobile */
    footer .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    footer .flex {
        justify-content: center;
    }
    
    footer .space-x-8 {
        gap: 1rem;
    }
    
    /* CTA section mobile */
    .bg-gradient-to-r .flex {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .bg-gradient-to-r button {
        width: 100%;
        max-width: 300px;
    }
    
    /* FAQ mobile */
    .max-w-3xl {
        max-width: none;
    }
    
    /* Hide complex animations on mobile for performance */
    .coin-spin,
    .coin-float,
    .coin-bounce {
        animation: none;
    }
    
    .coin-glow {
        animation: pulse 2s infinite;
    }
}

/* Extra small mobile */
@media (max-width: 480px) {
    .hero-gradient h1 {
        font-size: 2rem;
    }
    
    .text-7xl {
        font-size: 2.5rem;
    }
    
    .text-5xl {
        font-size: 2rem;
    }
    
    .text-3xl {
        font-size: 1.3rem;
    }
    
    .text-2xl {
        font-size: 1.2rem;
    }
    
    .btn-enhanced {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .glass-effect-enhanced {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .coin-logo {
        width: 35px;
        height: 35px;
    }
    
    .coin-logo-large {
        width: 50px;
        height: 50px;
    }
    
    .coin-simple {
        width: 35px;
        height: 35px;
    }
    
    .coin-simple-large {
        width: 50px;
        height: 50px;
    }
    
    .card-enhanced {
        padding: 1rem;
    }
    
    .card-enhanced .w-20 {
        width: 3rem;
        height: 3rem;
    }
    
    section {
        padding: 2rem 0;
    }
    
    #home {
        padding: 5rem 0 2rem 0;
    }
    
    #testimonials .grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet improvements */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-gradient h1 {
        font-size: 3.5rem;
    }
    
    .text-7xl {
        font-size: 4rem;
    }
    
    #home .grid {
        gap: 3rem;
    }
    
    .card-enhanced {
        padding: 1.75rem;
    }
    
    #testimonials .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lg\\:grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large mobile landscape */
@media (max-width: 768px) and (orientation: landscape) {
    #home {
        min-height: auto;
        padding: 4rem 0 2rem 0;
    }
    
    .hero-gradient h1 {
        font-size: 2.2rem;
    }
    
    #home .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .floating-delayed {
        display: none;
    }
}






.reward-section{
    width:100%;
    max-width:420px;
    margin:auto;
    text-align:center;
    padding:25px;
    background:linear-gradient(135deg,#0f172a,#1e293b);
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    color:#fff;
}

/* Title */
.reward-title{
    font-size:26px;
    font-weight:700;
    margin-bottom:5px;
}

/* Subtitle */
.reward-subtitle{
    font-size:14px;
    color:#cbd5f5;
    margin-bottom:20px;
}

/* Box */
.reward-box{
    background:rgba(255,255,255,0.08);
    padding:20px;
    border-radius:15px;
    backdrop-filter:blur(10px);
}

/* Amount */
.reward-amount{
    font-size:32px;
    font-weight:bold;
    color:#38bdf8;
}

/* Text */
.reward-text{
    font-size:14px;
    color:#94a3b8;
    margin-top:5px;
}

/**/
.reward-section{
    width:100%;
    max-width:420px;
    margin:auto;
    margin-top:50px;
}

.card{
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:20px;
    overflow:hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    transition:0.3s;
}

.card:hover{
    transform: translateY(-5px);
}

.card-header{
    padding:18px;
    font-size:20px;
    font-weight:600;
    color:#22c55e;
    border-bottom:1px solid rgba(255,255,255,0.08);
}

table{
    width:100%;
    border-collapse:collapse;
}

th, td{
    padding:14px;
    text-align:center;
}

th{
    color:#94a3b8;
}

tbody tr{
    border-top:1px solid rgba(255,255,255,0.05);
}

tbody tr:hover{
    background: rgba(255,255,255,0.05);
}

td:last-child{
    color:#22c55e;
    font-weight:600;
}

/* Mobile */
@media(max-width:480px){
    th, td{
        padding:10px;
        font-size:13px;
    }
}

