* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: #000;
}

.adm-root {
    background: linear-gradient(125deg, #000000, #2b0b13, #4a051c, #000000);
    background-size: 400% 400%;
    animation: aurora 15s ease infinite;
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

@keyframes aurora {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.adm-wrapper {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.adm-media-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.adm-media-box img {
    max-height: 45vh;
    width: auto;
    max-width: 90%;
    border-radius: 20px;
    object-fit: contain;
    box-shadow: 0 15px 35px rgba(255, 20, 147, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.adm-header {
    padding: 20px;
    text-align: center;
}

.adm-header h1 {
    font-size: 26px;
    color: #fff;
    margin: 0;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(255, 0, 85, 0.5);
}

.adm-content {
    padding: 10px 30px 40px 30px;
    text-align: center;
}

.adm-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    margin: 0 0 30px 0;
}

.adm-btn-submit {
    background: linear-gradient(45deg, #ff0055, #ff4081);
    color: #fff !important;
    padding: 20px;
    text-decoration: none;
    border-radius: 16px;
    display: block;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 0, 85, 0.4);
}