html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    background: #000607;
    font-family: "Be Vietnam Pro", sans-serif;
    color: white;
}

.nav-link, .dropdown-toggle {
    color: #0f94b1;
}

    .nav-link:hover, .dropdown-toggle:hover {
        color: #0a5b6d;
        transition: 0.5s;
    }

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: lightgray;
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.form-floating input {
    background-color: #222 !important;
    color: #fff;
    border: 1px solid #333;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

    .form-floating input:focus {
        border-color: #1e90ff;
        color: #fff;
        box-shadow: 0 0 5px rgba(30, 144, 255, 0.6);
    }

/*Play Game*/
.game-play-container {
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
}

    .game-play-container a {
        text-decoration: none;
    }

.game-iframe-container {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.game-iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-dark {
    background-color: #222;
    border: 1px solid #444;
    font-size: 1rem;
    padding: 10px 15px;
}

    .btn-dark:hover {
        background-color: #333;
        color: #fff;
    }

    .btn-dark i {
        font-size: 1.2rem;
    }

/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
    .game-iframe {
        height: 80vh;
    }
}