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

body {
    margin: 0;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1b1b3a, #0a0a23);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

h1 {
    color: #fff;
    font-size: 3em;
    text-shadow: 0 0 20px #00eaff;
    margin-bottom: 40px;
}

.link-card {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px 40px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.link-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 255, 255, 0.4);
}
