.tool-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.tool-input {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 40px auto;
}

.tool-input input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
}

.tool-input button {
    padding: 15px 30px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
}

.upload-area {
    margin: 40px 0;
}

.upload-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 500px;
    margin: 0 auto;
}

.upload-box input {
    display: none;
}

.upload-box button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 20px;
}

.tool-options {
    margin: 40px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.tool-options label {
    display: block;
    margin: 15px 0;
    font-size: 16px;
}

.tool-options input, .tool-options select {
    margin-right: 10px;
}

.supported-platforms {
    margin-top: 50px;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    max-width: 600px;
    margin: 20px auto;
}

.platform {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
}

.batch-input textarea {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    resize: vertical;
}

.batch-input button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.batch-options {
    margin-top: 40px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}