.typewriter {
    animation: typewriter 2s steps(20) 1s forwards, blink 1s infinite;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid transparent;
}

.fade-in-delayed {
    animation: fadeInUp 1s ease-out 3s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes typewriter {
    0% { 
        width: 0; 
        border-right-color: #14b8a6; 
    }
    99% { 
        border-right-color: #14b8a6; 
    }
    100% { 
        width: 100%; 
        border-right-color: transparent; 
    }
}

@keyframes blink {
    0%, 50% { 
        border-right-color: transparent; 
    }
    51%, 100% { 
        border-right-color: #14b8a6; 
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-ring {
    0% { 
        transform: scale(1); 
        opacity: 1; 
    }
    100% { 
        transform: scale(1.5); 
        opacity: 0; 
    }
}

.pulse-ring {
    animation: pulse-ring 2s infinite;
}

.gradient-text {
    background: linear-gradient(to right, #ffffff, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(20, 184, 166, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.1);
}

.section-header {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-left: 4px solid #14b8a6;
}

/* Commands button styles */
.commands-button-container {
    display: inline-block;
    position: relative;
}

.commands-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, #14b8a6 0%, #0891b2 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
    position: relative;
    overflow: hidden;
    group: true;
}

.commands-button::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 ease;
}

.commands-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.4);
    background: linear-gradient(135deg, #0891b2 0%, #14b8a6 100%);
}

.commands-button:hover::before {
    left: 100%;
}

.commands-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3);
}

/* Anti-raid feature cards with special styling */
.antiraid-card {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.antiraid-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.1);
    transform: translateY(-2px);
}

.antiraid-info {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(245, 101, 101, 0.1) 100%);
    border-left: 4px solid #ef4444;
}