@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Video */
#bgVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

/* Dark Overlay */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: -2;
}

/* Main Layout */
.main-container {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Cover Section */
.cover {
    text-align: center;
    color: #ffffff;
    padding: 0 10px;
}

.cover div {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.cover p {
    font-size: 15px;
    margin-top: 8px;
    opacity: 0.85;
}

/* Card */
.card {
    width: 100%;
    max-width: 420px;
    /* background: rgba(255, 255, 255, 0.95); */
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* Card Header */
.card-header {
    text-align: center;
}

.bot-img {
    width: 200px;
}

/* Card Body */
.card-body {
    padding: 0 30px;
    text-align: center;
}

.pair__wrapper,
.platform__wrapper {
    text-align: center;
}

#selectator_platform__box,#selectator_pair__box,#selectator_time__box {
    min-height: 30px !important;
    margin-bottom: 10px;
}


.platform__select {
    width: 100%;
}


.pair__select {
    width: 90%;
}


.time__select {
    width: 80%;
}

/* Button */
button {
    width: 50%;
    padding: 15px;
    border-radius: 10px;
    border: none;
    background: #fec200;
    color: #000;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
}

button:disabled {
    background: #888;
}

/* Status */
.status {
    margin-top: 10px;
    text-align: center;
    min-height: 80px;
}

#loader {
    font-size: 14px;
    color: #555;
}

#result {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 700;
}

/* Mobile Improvements */
@media (max-width: 480px) {
    .cover h1 {
        font-size: 30px;
    }

    .card-body {
        padding: 20px;
    }

    .main-container {
        padding: 30px 15px;
    }
}