/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    background-color: #0d0e12;
    color: #f0f1f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Modernized Fieldset Container */
fieldset {
    border: 2px solid #ff2a74;
    border-radius: 12px;
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 600px;
    width: 100%;
    background: rgba(255, 42, 116, 0.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                0 0 15px rgba(255, 42, 116, 0.1);
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

fieldset:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 
                0 0 25px rgba(255, 42, 116, 0.2);
}

/* Modernized Legend */
legend {
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ff2a74;
    background-color: #0d0e12;
    padding: 0 12px;
    font-size: 0.9rem;
    text-shadow: 0 0 8px rgba(255, 42, 116, 0.5);
}

/* Styled Link Container (For when you add URLs) */
.link-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    list-style: none;
    margin-top: 0.5rem;
}

.link-list a {
    display: block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #a5a9b8;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.link-list a:hover {
    background: rgba(255, 42, 116, 0.1);
    border-color: #ff2a74;
    color: #fff;
    transform: translateX(4px);
}