@font-face {
    font-family: 'Leet';
    src: url('leet_font.ttf') format('truetype');
}

body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
    color: white;
    font-family: 'Leet', 'Lucida Console', Monaco, monospace;
    height: 100%;
    width: 100%;
}

/* Overlay styles */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 1;
    transition: opacity 2s ease;
    z-index: 10;
}

#proceed {
    font-size: 48px;
    animation: pulse 2s infinite;
}

/* Main Content Styles */
#content {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease;
}

/* Particle Background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1;
}

/* Message and Socials Container */
#message-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 3s forwards;
    animation-delay: 2s;
}

#message {
    font-size: 36px;
    margin-bottom: 30px;
}

#message p {
    margin: 10px 0;
}

#socials {
    font-size: 24px;
}

#socials p {
    margin: 5px 0;
}

#socials a {
    color: #00aced;
    text-decoration: none;
    transition: color 0.3s;
}

#socials a:hover {
    color: #ff0000;
}

/* Keyframe Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
