body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(to bottom, #fff 0%, #fff 40%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(to right, #0ed2da, #5f29c7);
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #ccc 1px, transparent 1px);
    background-size: 50px 100%;
    pointer-events: none;
    opacity: 0.3;
}

.fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to bottom,
    rgba(255,255,255,0.8) 0%,
    rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 30px;
    font-size: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.link-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.link-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.link-button:hover {
    background-color: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.notice {
    margin-top: 40px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h6 {
    margin: 10px 0;
    color: #555;
    font-weight: normal;
}

.warning {
    color: #e74c3c;
    font-weight: bold;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .container {
        padding: 20px 15px;
    }
}