/* Reset defaults */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden; /* LOCKS the scrollbar */
}

/* Container */
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh; 
    height: 100svh; /* Mobile friendly height */
    
    /* MODERN SPACING MAGIC */
    gap: 2rem; /* Creates equal space between Image, H1, P, and Button */
    padding: 2rem; /* Prevents text hitting the edge of screen */
    box-sizing: border-box; /* Ensures padding doesn't break width */
    
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

/* Image Styling */
.gif-style {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    /* Margin removed because 'gap' handles it now */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 4px solid rgba(255,255,255,0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 3rem;
}
.gif-style.pop { transform: scale(1.2); }

/* Text */
h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 0; /* Removed old margins */
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    line-height: 1.1;
}

p {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    margin: 0; /* Removed old margins */
}

.quote {
    font-size: 0.9rem;          /* Slightly smaller to create hierarchy */
    text-transform: uppercase;  /* uppercase = premium feel */
    letter-spacing: 4px;        /* Wide spacing adds elegance */
    font-weight: 600;           /* Make it slightly bold */
    
    /* Soft semi-transparent white */
    color: rgba(255, 255, 255, 0.85);
    
    /* Add a subtle top border to separate it from the title */
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 20px;          
    
    margin: 20px 0 40px 0;      /* Nice spacing around it */
}

/* Button */
.btn-awesome {
    padding: 16px 32px; /* Bigger, easier to tap */
    font-size: 1rem;
    border: 2px solid white;
    background: transparent;
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    font-weight: 600;
    margin-top:3rem;
    -webkit-tap-highlight-color: transparent;
}
.btn-awesome:hover {
    background: white;
    color: #764ba2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.btn-awesome:active { transform: translateY(0); }

/* Popup Notification */
#toast {
    visibility: hidden;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    text-align: center;
    border-radius: 12px;
    padding: 16px;
    position: fixed;
    z-index: 100;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.5s, top 0.5s, transform 0s;
}
#toast.show { visibility: visible; opacity: 1; top: 50px; }

/* Mobile */
@media (max-width: 600px) {
    .container { gap: 1rem; } /* Tighter spacing on small phones */
    h1 { font-size: 2.2rem; }
    p { font-size: 1rem; }
    .gif-style { width: 100px; height: 100px; }
    #toast { min-width: 80%; font-size: 0.9rem; }
}
