* {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

body {
    overflow-x: hidden;
}

.gradient-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    position: relative;
}

.gradient-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    animation: pulse-gradient 8s ease-in-out infinite;
}

@keyframes pulse-gradient {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.card-glow {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
                0 10px 10px -5px rgba(0, 0, 0, 0.04), 
                0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-glow:hover {
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25),
                0 0 30px rgba(16, 185, 129, 0.1);
    transform: translateY(-5px);
}

.text-gradient {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.poker-chip {
    animation: float 6s ease-in-out infinite;
}

.poker-card {
    animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-placeholder {
    background: linear-gradient(45deg, #1e293b, #334155);
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.play-button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-button:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.6);
}

.nav-link {
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.pricing-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    transition: left 0.5s;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.2);
}

.roadmap-item {
    position: relative;
    opacity: 0;
    animation: slideInLeft 0.6s ease-out forwards;
}

.roadmap-item:nth-child(1) { animation-delay: 0.1s; }
.roadmap-item:nth-child(2) { animation-delay: 0.2s; }
.roadmap-item:nth-child(3) { animation-delay: 0.3s; }
.roadmap-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.roadmap-item::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 60px;
    width: 2px;
    height: calc(100% - 60px);
    background: linear-gradient(180deg, #10b981, transparent);
}

.roadmap-item:last-child::before {
    display: none;
}

.feature-icon {
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.svg-decoration {
    position: absolute;
    opacity: 0.3;
    animation: floatSlow 8s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(16, 185, 129, 0.3));
}

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.hero-chip {
    animation: spinFloat 10s ease-in-out infinite;
}

@keyframes spinFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-40px) rotate(360deg);
    }
}

.hero-cards {
    animation: cardSway 6s ease-in-out infinite;
}

@keyframes cardSway {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(-20px) rotate(-10deg);
    }
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.doc-card {
    transition: all 0.3s ease;
}

.doc-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 41, 59, 0.8);
}

.form-input {
    transition: all 0.3s ease;
}

.form-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.social-icon {
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px) rotate(10deg);
    background: linear-gradient(135deg, #10b981, #3b82f6);
}

.stats-number {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-animation {
    opacity: 0;
    animation: staggerFade 0.6s ease-out forwards;
}

.stagger-animation:nth-child(1) { animation-delay: 0.1s; }
.stagger-animation:nth-child(2) { animation-delay: 0.2s; }
.stagger-animation:nth-child(3) { animation-delay: 0.3s; }
.stagger-animation:nth-child(4) { animation-delay: 0.4s; }
.stagger-animation:nth-child(5) { animation-delay: 0.5s; }
.stagger-animation:nth-child(6) { animation-delay: 0.6s; }

@keyframes staggerFade {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #10b981, #3b82f6, #10b981);
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
    animation: rotateBorder 3s linear infinite;
}

.glow-effect:hover::after {
    opacity: 0.7;
}

@keyframes rotateBorder {
    0% {
        filter: hue-rotate(0deg);
    }
    100% {
        filter: hue-rotate(360deg);
    }
}

@media (max-width: 768px) {
    .svg-decoration {
        opacity: 0.15;
        width: 80px !important;
        height: 80px !important;
    }
    
    .hero-chip {
        width: 60px !important;
        height: 60px !important;
    }
    
    .hero-cards {
        width: 100px !important;
        height: 100px !important;
    }
    
    h1 {
        font-size: 2.5rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
    }
    
    .pricing-card {
        margin-top: 2rem;
    }
    
    .pricing-card .absolute {
        top: -1rem;
    }
    
    .roadmap-item {
        padding-left: 1rem;
    }
    
    .nav-link {
        font-size: 0.875rem;
    }
    
    .btn-primary, button {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
    .text-4xl {
        font-size: 2rem !important;
    }
    
    .text-5xl {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    .svg-decoration {
        display: none;
    }
    
    h1 {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem !important;
    }
    
    .grid {
        gap: 1rem !important;
    }
    
    #videoModal > div {
        max-width: 95%;
        padding: 1.5rem !important;
    }
    
    #videoModal h3 {
        font-size: 1.25rem !important;
    }
    
    #videoModal button {
        padding: 0.5rem 1rem !important;
        font-size: 0.875rem !important;
    }
}
