@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400&family=Inter:wght@300&display=swap');

body {
    margin: 0;
    padding: 0;
    background: #000 url('/assets/starryNight.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.frost-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    width: 380px; 
    height: 100vh; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    box-sizing: border-box;
}

.logo-img {
    width: 200px;
    display: block;
}

h2 {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 32px;
    letter-spacing: 2px;
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: center;
    color: white;
    text-transform: none; /* Ensures Initial Caps from HTML are preserved */
}

.main-btn {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px;
    margin: 10px 0;
    border-radius: 0px;
    cursor: pointer;
    width: 100%;
    
    font-family: 'Times New Roman', Times, serif;
    text-transform: uppercase;
    font-size: 11px; /* Slightly smaller for better spacing */
    letter-spacing: 4px; /* Enhanced spacing for that luxury feel */
    
    transition: 0.4s;
}

.main-btn:hover:not(:disabled) {
    background: white;
    color: black;
}

.main-btn:disabled {
    opacity: 0.15;
    cursor: not-allowed;
}

#result {
    margin-top: 25px;
    background: transparent; /* Makes the box transparent to show the stars */
    font-family:'Times New Roman', Times, serif;
    color: white;             /* Sets the result text to white */
    font-style: italic;      /* Italics for the signature soul interpretation */
    font-size: 16px;         /* Matches the size of the buttons */
    text-align: center;
    width: 310px;
}

.footer-links {
    margin-top: 40px; 
    padding-bottom: 30px;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.4;
    text-align: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

/* This target screens smaller than 600px (standard phones) */
@media (max-width: 600px) {
  
  /* 1. Target your interactive box (replace .container with your actual class name) */
  .frost-box {
    width: 95% !important;  /* Takes up almost the full width of the phone */
    max-width: 350px;       /* Keeps it from getting too huge on small tablets */
    margin: 10px auto !important; /* Centers it and moves it to the top */
    height: auto !important; /* Lets it grow if the content needs more space */
    position: relative !important; 
    left: 0 !important;
    top: 0 !important;
    transform: none !important; /* Disables any desktop centering tricks */
  }

  /* 2. Fix the background image so it doesn't shrink the content */
  body {
    background-size: cover; /* Ensures the image fills the screen background */
    background-attachment: fixed; 
  }
}
