* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
	overflow-y: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 255, 127, 0.1) 0%, transparent 50%);
    animation: gradientShift 20s ease infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(10%, 10%) rotate(180deg); }
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #00ff7f, #8a2be2, #00ff7f);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s ease infinite;
    text-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
    z-index: 1;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px;
    color: #b8b8b8;
    z-index: 1;
}

.card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 25px;
    padding: 30px;
    margin: 10px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 20px rgba(138, 43, 226, 0.1);
    width: 320px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(0, 255, 127, 0.05), 
        transparent, 
        rgba(138, 43, 226, 0.05));
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.card:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 255, 127, 0.5);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 0 40px rgba(0, 255, 127, 0.2),
                0 0 60px rgba(138, 43, 226, 0.15);
}

.card h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #c0c0c0;
    position: relative;
    z-index: 1;
}

.button {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.8), rgba(0, 255, 127, 0.8));
    color: white;
    text-decoration: none;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(138, 43, 226, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.button:hover::before {
    left: 100%;
}

.button:hover {
    background: linear-gradient(135deg, rgba(0, 255, 127, 0.9), rgba(138, 43, 226, 0.9));
    box-shadow: 0 6px 30px rgba(0, 255, 127, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0);
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    z-index: 1;
}

.link {
    text-decoration: none;
    color: #00ff7f;
    position: relative;
    transition: all 0.3s ease;
}

.link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ff7f, #8a2be2);
    transition: width 0.3s ease;
}

.link:hover {
    color: #8a2be2;
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.5);
}

.link:hover::after {
    width: 100%;
}

.label {
    margin-top: 50px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #a0a0a0;
    z-index: 1;
    position: relative;
}