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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #666;
    background: #e6e6e6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #e6e6e6;
    border-radius: 20px;
    box-shadow: 
        20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
    margin: 20px;
    max-width: 900px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.1),
        -2px -2px 4px rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.hero-content h2 {
    font-size: 2.5rem;
    color: #777;
    line-height: 1.2;
    text-shadow: 
        1px 1px 3px rgba(0, 0, 0, 0.1),
        -1px -1px 3px rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-content p {
    margin-top: 3rem;
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 3rem;
    line-height: 1.8;
    text-shadow: 
        1px 1px 2px rgba(255, 255, 255, 0.8),
        -1px -1px 2px rgba(0, 0, 0, 0.1);
}

.nuke-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.button-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 2px;
    text-shadow: 
        1px 1px 2px rgba(255, 255, 255, 0.8),
        -1px -1px 2px rgba(0, 0, 0, 0.1);
}

.nuke-button {
    background: #e6e6e6;
    border: none;
    padding: 20px 40px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 
        12px 12px 24px #bebebe,
        -12px -12px 24px #ffffff;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    min-width: 280px;
    justify-content: space-between;
}

.nuke-switch {
    width: 80px;
    height: 40px;
    background: #e6e6e6;
    border-radius: 25px;
    position: relative;
    box-shadow: 
        inset 4px 4px 8px #bebebe,
        inset -4px -4px 8px #ffffff;
    display: flex;
    align-items: center;
    padding: 4px;
}

.nuke-indicator {
    width: 32px;
    height: 32px;
    background: linear-gradient(145deg, #ff4444, #cc0000);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.2),
        -2px -2px 6px rgba(255, 255, 255, 0.1),
        inset -2px -2px 4px rgba(0, 0, 0, 0.2),
        inset 2px 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
}

.nuke-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #ffaaaa;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

.button-text {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    text-shadow: 
        1px 1px 2px rgba(255, 255, 255, 0.8),
        -1px -1px 2px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
}

.warning-text {
    font-size: 0.7rem;
    color: #999;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 
        1px 1px 2px rgba(255, 255, 255, 0.8),
        -1px -1px 2px rgba(0, 0, 0, 0.1);
}

.nuke-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        16px 16px 32px #bebebe,
        -16px -16px 32px #ffffff;
}

.nuke-button:active {
    transform: translateY(0);
    box-shadow: 
        inset 6px 6px 12px #bebebe,
        inset -6px -6px 12px #ffffff;
}

.nuke-button:active .nuke-indicator {
    transform: translateX(36px) scale(0.9);
    background: linear-gradient(145deg, #ff6666, #ff0000);
    box-shadow: 
        2px 2px 6px rgba(0, 0, 0, 0.3),
        -1px -1px 4px rgba(255, 255, 255, 0.1),
        inset -1px -1px 3px rgba(0, 0, 0, 0.3),
        inset 1px 1px 3px rgba(255, 255, 255, 0.1);
}

.nuke-button.activated {
    background: linear-gradient(145deg, #ff9999, #ffcccc);
    color: #cc0000;
}

.nuke-button.activated .nuke-indicator {
    transform: translateX(36px);
    background: linear-gradient(145deg, #ff0000, #990000);
    box-shadow: 
        0 0 10px rgba(255, 0, 0, 0.5),
        4px 4px 8px rgba(0, 0, 0, 0.2),
        inset -2px -2px 4px rgba(0, 0, 0, 0.3),
        inset 2px 2px 4px rgba(255, 255, 255, 0.1);
}

.nuke-button.activated .nuke-indicator::before {
    background: #ffffff;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}


@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    
    .hero {
        margin: 10px;
        border-radius: 15px;
        box-shadow: 
            15px 15px 45px #bebebe,
            -15px -15px 45px #ffffff;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .nuke-button {
        padding: 15px 25px;
        min-width: 240px;
    }
    
    .button-text {
        font-size: 0.9rem;
    }
    
    .nuke-switch {
        width: 60px;
        height: 30px;
    }
    
    .nuke-indicator {
        width: 24px;
        height: 24px;
    }
    
    .nuke-button.activated .nuke-indicator,
    .nuke-button:active .nuke-indicator {
        transform: translateX(26px) scale(0.9);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 20px 15px;
        margin: 5px;
        border-radius: 12px;
        box-shadow: 
            10px 10px 30px #bebebe,
            -10px -10px 30px #ffffff;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .nuke-button {
        padding: 12px 20px;
        min-width: 200px;
        flex-direction: column;
        gap: 10px;
    }
    
    .button-label,
    .warning-text {
        font-size: 0.6rem;
    }
}