body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    margin: 0;
    padding: 2rem;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 8px 8px 0px #000000;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #555;
    margin-bottom: 2rem;
}

.input-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.input-group input[type="text"],
.input-group select,
.input-group input[type="file"] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #000000;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    box-sizing: border-box;
}

.input-group input[type="file"] {
    padding: 0.5rem;
}

#calculateAuraButton {
    margin-top: 1rem;
}

#result-section {
    margin-top: 2rem;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #000;
    box-shadow: 5px 5px 0px #000;
}

#previewImage {
    width: 100%;
    height: auto;
    display: block;
}

.aura-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 70%;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(50px);
}

.aura-info-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background-color: #ffffff;
    border: 2px solid #000;
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    box-shadow: 5px 5px 0px #000;
}

.mini-aura-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

#mini-aura {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.aura-text h2 {
    margin: 0;
    font-size: 1.2em;
    font-weight: 600;
}

.aura-text p {
    margin: 5px 0 0;
    font-size: 1.5em;
    font-weight: 700;
}

#aura-name, #aura-rating {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hidden {
    display: none;
}
