body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: white;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    animation: glow 2s infinite alternate;
}

.box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
    max-width: 500px;
    width: 90%;
}

.section {
    margin-top: 20px;
}

.section h2 {
    margin-bottom: 10px;
    font-size: 1.3em;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 5px;
}

.contact a {
    color: #00d4ff;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #00d4ff;
    }
    to {
        text-shadow: 0 0 20px #00d4ff, 0 0 30px #00d4ff;
    }
}