@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;200;300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto Mono", monospace;
}

body {
    background-color: #000;
    overflow-x: hidden;
}

.main {
    min-height: 100vh;
    width: 100%;
    position: relative;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 3D Model Viewer */
model-viewer {
    width: 100%;
    height: 500px;
    max-width: 600px;
    margin-top: 4px;
    margin-bottom: -20px;
}

/* Image and Text Section */
.image-container {
    padding: 10px;
    text-align: center;
}

.image-container h1 {
    color: #00bcd4;
    font-size: 40px;
    margin-bottom: 10px;
    letter-spacing: 8px;
}

.image-container p {
    color: #00e5ff;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Input Section (Full Button Clickable Area) */
.input {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40vw;
    height: 50px;
    border-radius: 20px;
    padding: 0;
    border: none;
    background: transparent;
}

.input .full-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: rgba(202, 253, 255, 0.5);
    border: none;
    cursor: pointer;
}

.input .full-button i {
    font-size: 20px;
    color: #aed0d0;
    margin-right: 10px;
}

.input .full-button .content {
    color: #aed0d0;
    font-size: 15px;
    font-weight: 600;
}