@import url('https://fonts.googleapis.com/css2?family=Lateef:wght@200;300;400;500;600;700;800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html, body {
    background-color: #000;
    font-family: "Courier New", monospace;
    color: #00FF00;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.box {
    background-color: #1e1e1e;
    border-radius: 10px;
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background-color: #333;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.title {
    color: #00FF00;
    font-size: 20px;
    font-weight: bold;
    font-family: "Courier New", monospace;
    letter-spacing: 1px;
}

.buttons {
    display: flex;
    align-items: center;
    padding: 10px;
}

.button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.red { background-color: #FF605C; }
.yellow { background-color: #FFD94A; }
.green { background-color: #A8FF60; }

.output-container {
    background-color: #000;
    color: #00FF00;
    font-family: "Courier New", monospace;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    overflow-y: auto; 
}

.input-container {
    display: flex;
    align-items: center;
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
    transition: background-color 0.3s, transform 0.2s;
    cursor: pointer;
    user-select: none;
}

.input-container input {
    flex: 1;
    background-color: #1e1e1e;
    font-family: "Lateef", serif;
    border: 2px solid #00FF00;
    border-radius: 5px;
    color: #00FF00;
    padding: 10px;
    font-size: 20px;
    outline: none;
}

#send-button {
    background-color: #5ca3ff;
    border: none;
    color: #ffffff;
    padding: 10px 20px;
    margin-left: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 16px;
    display: flex;
    align-items: center;
}

#send-button:hover {
    background-color: #00FF00;
    transform: scale(1.1);
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    background-color: #333;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-button:hover {
    background-color: #00FF00;
    transform: scale(1.1);
}

footer {
    text-align: center;
    color: #00FF00;
    padding: 10px;
    font-size: 14px;
    width: 90%;
    max-width: 1000px;
}

.support-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.support-button {
    background-color: #0070ba;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.support-button:hover {
    background-color: #005ea6;
    transform: scale(1.1);
}
