html, body { 
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
    background-image: url('../../../d2lmlpk6xgu7kg.cloudfront.net/uploads/17262513215dfd3c1b64a4f63fb3f95f4d83cd9e28.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #eaeaea;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
}

#container {
    width: 90%;
    max-width: 600px;
    margin: 1cm auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    background-color: rgba(30, 30, 30, 0.9);
}

input, button {
    width: auto;
    max-width: 250px;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

button {
    background-color: #ff5722;
    color: white;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #e64a19;
}

@media (max-width: 600px) {
    #container {
        padding: 20px;
    }

    input, button {
        padding: 15px;
        width: 90%;
    }
}

.logo {
    width: 120px;
    margin-bottom: 20px;
}

input {
    width: calc(100% - 20px);
    padding: 12px;
    margin: 15px 0;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #eaeaea;
}

.platforms {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.platform {
    width: 50px;
    margin: 0 10px;
    cursor: pointer;
    transition: border 0.3s;
}

.platform:hover {
    border: 2px solid #ff5722;
}

.amount-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.amount-option {
    margin: 10px;
    padding: 10px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.amount-option.selected {
    background-color: rgba(255, 255, 255, 0.3);
}

.robux-icon {
    width: 20px;
    margin-right: 10px;
}

.hidden {
    display: none;
}

.error {
    color: red;
    margin-top: 10px;
}

#hackingOutput {
    margin: 20px 0;
    background-color: rgba(50, 50, 50, 0.9);
    padding: 20px;
    border-radius: 5px;
    white-space: pre-wrap;
    text-align: left;
    max-height: 300px;
    overflow-y: auto;
}

#captchaSection {
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(50, 50, 50, 0.9);
    border-radius: 5px;
}

#captchaSection p {
    margin-bottom: 15px;
}

button.verify {
    margin-top: 10px;
    width: 100%;
}

/* New searchBox styles */
#searchBox {
    margin-top: 20px;
    padding: 20px;
    background-color: rgba(50, 50, 50, 0.9);
    border-radius: 5px;
    color: white;
}
