:root {
    --primary-bg: linear-gradient(135deg, #200122, #6f0000);
    --primary-text: #ffffff;
    --secondary-text: #a1a1aa;
    --accent-color: #f43f5e;
    --card-bg: #ffffff;
    --card-shadow: rgba(0, 0, 0, 0.2);
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 0;
    font-family: 'Roboto', Arial, sans-serif;
    background: var(--primary-bg);
    color: var(--primary-text);
    min-height: 100vh; /* Full viewport height */
    gap: 30px; /* Consistent spacing */
    text-align: center;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem); /* Scales dynamically */
    margin-bottom: 20px;
}

p {
    font-size: clamp(1rem, 3vw, 1.5rem); /* Scales dynamically */
    line-height: 1.6;
    margin-bottom: 20px;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Consistent spacing between links */
    width: 100%; /* Allow full width for mobile */
    max-width: 400px; /* Constrain width on larger screens */
}

a {
    display: block;
    width: 100%; /* Fill container width */
    padding: 15px;
    text-align: center;
    color: var(--accent-color);
    text-decoration: none;
    background: var(--card-bg);
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    font-size: clamp(1rem, 2vw, 1.2rem); /* Scales dynamically */
    box-shadow: 0 4px 6px var(--card-shadow);
    transition: all 0.3s ease;
}

a:hover {
    background: var(--accent-color);
    color: var(--primary-text);
    box-shadow: 0 6px 10px var(--card-shadow);
}

img {
    width: clamp(100px, 15vw, 150px); /* Scales dynamically */
    height: clamp(100px, 15vw, 150px);
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: scale(1.1); /* Slightly larger on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    body {
        gap: 20px;
        padding: 15px;
    }

    .links {
        gap: 15px;
    }

    a {
        padding: 12px;
    }

    img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    body {
        gap: 15px;
    }

    h1 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }

    a {
        font-size: 0.9rem;
    }

    img {
        width: 80px;
        height: 80px;
    }
}