/* =========================
   BASIC SETTINGS
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: #050008;
    color: #fff;
    font-family: Arial, sans-serif;
    overflow: hidden;
}


/* =========================
   SCREEN
========================= */

.screen {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;

    background:
        radial-gradient(circle at center,
        rgba(255, 0, 128, 0.12),
        transparent 45%);

    animation: backgroundGlow 4s infinite alternate;
}

.hidden {
    display: none;
}


/* =========================
   LOGIN BOX
========================= */

.login-box {
    width: 100%;
    max-width: 420px;
    padding: 40px 30px;
    text-align: center;

    background: rgba(15, 0, 20, 0.85);

    border: 2px solid #ff1493;
    border-radius: 25px;

    box-shadow:
        0 0 10px #ff1493,
        0 0 30px #ff1493,
        inset 0 0 20px rgba(255, 20, 147, 0.15);

    animation: boxGlow 2s infinite alternate;
}

.login-box h1 {
    color: #ff69b4;
    margin-bottom: 20px;

    text-shadow:
        0 0 5px #ff1493,
        0 0 15px #ff1493,
        0 0 30px #ff1493;
}


/* =========================
   NEON TEXT
========================= */

.neon-text,
.love-line {
    color: #ffb6e6;

    text-shadow:
        0 0 5px #ff1493,
        0 0 10px #ff1493;

    margin: 15px 0;
    line-height: 1.7;
}


/* =========================
   INPUTS
========================= */

input {
    width: 100%;
    padding: 15px;
    margin: 10px 0;

    background: rgba(0, 0, 0, 0.7);
    color: white;

    border: 2px solid #ff1493;
    border-radius: 12px;

    outline: none;
    font-size: 16px;

    box-shadow:
        0 0 8px rgba(255, 20, 147, 0.5);
}

input::placeholder {
    color: #ff9bd5;
}

input:focus {
    box-shadow:
        0 0 10px #ff1493,
        0 0 25px #ff1493;
}


/* =========================
   BUTTONS
========================= */

button {
    padding: 13px 28px;
    margin: 10px;

    background: transparent;
    color: #fff;

    border: 2px solid #ff1493;
    border-radius: 30px;

    font-size: 16px;
    font-weight: bold;

    cursor: pointer;

    text-shadow: 0 0 5px #fff;

    box-shadow:
        0 0 8px #ff1493,
        0 0 20px rgba(255, 20, 147, 0.5);

    transition: 0.3s ease;
}

button:hover {
    background: #ff1493;

    box-shadow:
        0 0 10px #ff1493,
        0 0 30px #ff1493,
        0 0 60px #ff1493;

    transform: scale(1.08);
}


/* =========================
   ERROR MESSAGE
========================= */

#loginError {
    color: #ff4d6d;
    margin-top: 15px;

    text-shadow:
        0 0 5px red,
        0 0 10px red;
}


/* =========================
   MAIN CONTENT
========================= */

.content {
    width: 100%;
    max-width: 850px;

    text-align: center;
    padding: 30px;

    animation: fadeIn 1.5s ease;
}


/* =========================
   NEON TITLES
========================= */

.neon-title {
    color: #ff69b4;

    font-size: clamp(30px, 6vw, 55px);

    margin-bottom: 30px;

    text-shadow:
        0 0 5px #fff,
        0 0 10px #ff1493,
        0 0 20px #ff1493,
        0 0 40px #ff1493;

    animation: textGlow 2s infinite alternate;
}


/* =========================
   QUESTION
========================= */

.question {
    margin: 35px 0;

    font-size: clamp(22px, 4vw, 35px);

    color: #fff;

    text-shadow:
        0 0 5px #fff,
        0 0 15px #ff1493,
        0 0 30px #ff1493;

    animation: pulse 2s infinite;
}


/* =========================
   NO MESSAGE
========================= */

#noMessage {
    margin-top: 25px;

    font-size: 25px;
    color: #ff4d6d;

    text-shadow:
        0 0 5px red,
        0 0 15px red,
        0 0 30px red;
}


/* =========================
   PHOTO GALLERY
========================= */

.photo-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

    flex-wrap: wrap;

    margin: 30px 0;
}

.photo-gallery img {
    width: 220px;
    height: 280px;

    object-fit: cover;

    border-radius: 20px;

    border: 3px solid #ff1493;

    box-shadow:
        0 0 10px #ff1493,
        0 0 25px #ff1493,
        0 0 50px rgba(255, 20, 147, 0.5);

    transition: 0.4s ease;
}

.photo-gallery img:hover {
    transform: scale(1.08) rotate(2deg);

    box-shadow:
        0 0 15px #ff1493,
        0 0 35px #ff1493,
        0 0 70px #ff1493;
}


/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn {
    display: inline-block;

    padding: 15px 30px;

    color: white;
    text-decoration: none;

    border: 2px solid #ff1493;
    border-radius: 30px;

    font-size: 18px;
    font-weight: bold;

    text-shadow: 0 0 5px white;

    box-shadow:
        0 0 10px #ff1493,
        0 0 25px #ff1493;

    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.08);

    background: #ff1493;

    box-shadow:
        0 0 15px #ff1493,
        0 0 35px #ff1493,
        0 0 60px #ff1493;
}


/* =========================
   ANIMATIONS
========================= */

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes textGlow {

    from {
        text-shadow:
            0 0 5px #fff,
            0 0 10px #ff1493,
            0 0 20px #ff1493;
    }

    to {
        text-shadow:
            0 0 5px #fff,
            0 0 15px #ff1493,
            0 0 35px #ff1493,
            0 0 60px #ff1493;
    }
}


@keyframes boxGlow {

    from {
        box-shadow:
            0 0 10px #ff1493,
            0 0 25px #ff1493;
    }

    to {
        box-shadow:
            0 0 15px #ff1493,
            0 0 40px #ff1493,
            0 0 70px rgba(255, 20, 147, 0.5);
    }
}


@keyframes pulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}


@keyframes backgroundGlow {

    from {
        background-color: #050008;
    }

    to {
        background-color: #10000f;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .login-box {
        padding: 30px 20px;
    }

    .content {
        padding: 15px;
    }

    .photo-gallery {
        gap: 10px;
    }

    .photo-gallery img {
        width: 140px;
        height: 190px;
    }

    button {
        padding: 12px 22px;
        margin: 7px;
    }
}