/* SkillDraw Landing Page Styles */

/* Modern Landing Page Styles */
.hero-section {
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(135deg, #16a34a 0%, #22c55e 30%, #10b981 70%, #16a34a 100%);
    }
    100% {
        background: linear-gradient(135deg, #22c55e 0%, #10b981 30%, #16a34a 70%, #22c55e 100%);
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    animation: floatingOrbs 12s ease-in-out infinite;
}

@keyframes floatingOrbs {
    0%, 100% {
        background: 
            radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 40%),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    }
    50% {
        background: 
            radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.2) 0%, transparent 45%),
            radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 55%),
            radial-gradient(circle at 60% 60%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 
        2px 2px 4px rgba(0,0,0,0.3),
        0 0 30px rgba(255, 215, 0, 0.3);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #ffd700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 
            2px 2px 4px rgba(0,0,0,0.3),
            0 0 30px rgba(255, 215, 0, 0.3);
    }
    100% {
        text-shadow: 
            2px 2px 4px rgba(0,0,0,0.3),
            0 0 40px rgba(255, 215, 0, 0.6),
            0 0 60px rgba(255, 215, 0, 0.4);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    border: none;
    color: #1a1a1a;
    font-weight: 900;
    font-size: 2.5rem;
    padding: 2rem 4rem;
    border-radius: 60px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 
        0 8px 25px rgba(255, 215, 0, 0.5),
        0 0 0 0 rgba(255, 215, 0, 0.6),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: buttonPulse 2s ease-in-out infinite;
    min-width: 500px;
    display: inline-block;
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 15px rgba(255, 215, 0, 0.4),
            0 0 0 0 rgba(255, 215, 0, 0.6);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 6px 20px rgba(255, 215, 0, 0.5),
            0 0 0 8px rgba(255, 215, 0, 0.1);
    }
}

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

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
    color: #1a1a1a;
}

.section-padding {
    padding: 5rem 0;
}

.how-it-works {
    background: white;
}

.step-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16a34a, #22c55e, #10b981);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 
        0 8px 25px rgba(22, 163, 74, 0.4),
        0 0 0 0 rgba(22, 163, 74, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.step-icon:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.step-icon:hover {
    transform: scale(1.05);
}

.step-card {
    transition: transform 0.3s ease;
}

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

.prize-section {
    background: linear-gradient(135deg, #1a1a1a, #374151);
    color: white;
    position: relative;
    width: 100vw;
    margin: 0;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
}

.prize-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
}

.prize-section .container {
    position: relative;
    z-index: 1;
}

.prize-highlight {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    animation: prizeGlow 2s ease-in-out infinite alternate;
}

.prize-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    animation: shimmer 3s linear infinite;
    pointer-events: none;
}

@keyframes prizeGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}

.email-section {
    background: linear-gradient(45deg, #16a34a, #22c55e);
    color: white;
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin: 0;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
}

.email-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.email-section .container {
    position: relative;
    z-index: 1;
}

.email-form {
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    border: none;
    border-radius: 25px 0 0 25px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    flex: 1;
    outline: none;
}

.email-button {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    border: none;
    color: #1a1a1a;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0 25px 25px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.email-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    color: #1a1a1a;
}

.success-message {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 1rem;
    margin-top: 1rem;
    display: none;
    backdrop-filter: blur(10px);
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 2rem;
}

.preview-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.preview-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(22, 163, 74, 0.1);
}

.preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: rgba(22, 163, 74, 0.3);
}

.preview-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.preview-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.preview-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.preview-features li i {
    flex-shrink: 0;
    width: 20px;
}

.modern-footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 2rem;
    width: 100vw;
    margin: 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-links {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 1.5rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #16a34a;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-button {
        font-size: 1.8rem;
        padding: 1.5rem 2.5rem;
        min-width: 350px;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-input {
        border-radius: 25px;
        margin-bottom: 1rem;
    }
    
    .email-button {
        border-radius: 25px;
    }
    
    .footer-links {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
}

/* Demo Game Styles */
.demo-game-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e2e8f0;
}

.demo-game-area {
    height: 300px;
    border: 3px solid #e2e8f0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.demo-game-area.waiting {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
    animation: waiting-pulse 1.5s ease-in-out infinite;
}

.demo-game-area.click-now {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-color: #16a34a;
    animation: success-glow 0.5s ease-in-out infinite;
}

.demo-game-area.too-early {
    background: linear-gradient(135deg, #fecaca 0%, #fca5a5 100%);
    border-color: #dc2626;
    animation: error-shake 0.5s ease-in-out;
}

.demo-game-content {
    text-align: center;
    user-select: none;
}

@keyframes waiting-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }
}

@keyframes success-glow {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6);
    }
    50% { 
        box-shadow: 0 0 0 15px rgba(22, 163, 74, 0);
    }
}

@keyframes error-shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.demo-reaction-display {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
}

.demo-reaction-display.success {
    color: #16a34a;
}

.demo-reaction-display.fail {
    color: #dc2626;
}

/* Pulse animation for CTAs */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.cta-button {
    animation: pulse 2s infinite;
}