body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

#particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: move 5s linear infinite;
}

@keyframes move {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-1000px);
        opacity: 0;
    }
}

.container {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 600px;
    width: 90%;
    box-sizing: border-box;
    backdrop-filter: blur(10px);
    z-index: 1;
    position: relative;
    margin: 20px auto;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

header img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #ffffff;
}

header h1 {
    font-size: 2.5em;
    margin: 10px 0;
}

header p {
    color: #b3b3b3;
    font-size: 1em;
    margin: 10px 0;
}

section {
    margin: 20px 0;
}

section h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    border-bottom: 2px solid #3498db;
    display: inline-block;
    padding-bottom: 5px;
}

.link-button {
    background-color: #3498db;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.link-button i {
    font-size: 1.5em;
    position: absolute;
    left: 15px;
}

.link-button:hover {
    background-color: #2980b9;
}

@media (max-width: 600px) {
    header h1 {
        font-size: 2em;
    }
    
    section h2 {
        font-size: 1.5em;
    }
    
    header p {
        font-size: 0.9em;
    }
}
