/* Pixel hover effects for Launch button */
/* Base button style */
#run-button {
    background-color: #66bfff;
    color: white;
    border: 2px solid #66bfff;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

/* Enhanced hover effect */
#run-button:hover {
    background-color: #5ab0f0 !important;
    color: #ffffff !important;
    border-color: #66d9ff !important;
    transform: scale(1.05);
    box-shadow: 0 0 10px #66d9ff, 0 0 15px rgba(102, 185, 255, 0.5);
}

#check-button {
    background-color: #4db6ac;
    color: white;
    border: 2px solid #4db6ac;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

#check-button:hover {
    background-color: #3da89e !important; /* slightly darker hover */
    color: #ffffff !important;
    border-color: #66d9ff !important;
    transform: scale(1.05);
    box-shadow: 0 0 10px #66d9ff, 0 0 15px rgba(102, 217, 255, 0.5);
}





/* Input hover effect */
.form-input {
    transition: all 0.3s ease;
}

.form-input:hover {
    border-color: #00FFCC !important;
    box-shadow: 0 0 10px #00FFCC;
}


body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
    color: #e0f2f1;
    overflow-x: hidden;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding-top: 100px;
}

.header-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.header-subtitle {
    font-size: 16px;
    color: #b2dfdb;
    margin-bottom: 30px;
    text-align: center;
    max-width: 600px;
}

.button-check {
    font-size: 14px;
    padding: 12px 30px;
    border-radius: 6px;
    background-color: #4db6ac;
    border: none;
    color: white;
    cursor: pointer;
    margin-bottom: 20px;
}

.output-box {
    background-color: #1e2b38;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #00acc1;
    width: 90%;
    max-width: 500px;
    font-size: 13px;
    margin-bottom: 30px;
    text-align: center;
}

.form-wrapper {
    background-color: #1e2b38;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #00acc1;
    width: 100%;
    max-width: 500px;
    margin-bottom: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.form-inner {
    background-color: #1e2b38;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #00acc1;
    width: 100%;
    max-width: 480px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.form-label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.form-input {
    width: 90%;
    padding: 10px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #90caf9;
    margin-bottom: 20px;
    background-color: #ffffff;
    color: #000000;
}

.checklist {
    color: #b2dfdb;
    font-size: 13px;
    margin-bottom: 20px;
}

.launch-button {
    font-size: 15px;
    padding: 14px 36px;
    border-radius: 8px;
    background-color: #64b5f6;
    border: none;
    color: white;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
}

.about-section {
    max-width: 800px;
    background-color: rgba(255, 255, 255, 0.04);
    padding: 30px;
    border-left: 6px solid #64b5f6;
    font-size: 13px;
    line-height: 1.7;
    color: #e0f2f1;
    margin-top: 10px;
}

.about-section h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-counter {
    margin-top: 200px;
    padding: 20px 10px;
    width: 100%;
    background-color: #101c26;
    color: #ffffff;
    text-align: center;
}

.footer-counter h2 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-counter p {
    font-size: 10px;
    color: #b2dfdb;
    margin-bottom: 20px;
}

#visitor-count-bottom {
    color: #7abaff;
    font-size: 15px;
    font-weight: 600;
}

#visitor-count-bottom + span {
    font-size: 10px;
    margin-left: 6px;
    font-weight: 300;
    color: #e0f2f1;
}

