body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: hidden;
    font-family: 'Courier New', monospace;
    background-color: #0f0f1a;
    color: #00ff9d;
}

.horizontal-scroll {
    display: flex;
    height: 100vh;
    width: 300vw;
    scroll-snap-type: x mandatory;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-behavior: smooth;
}

.section {
    width: 100vw;
    height: 100vh;
    scroll-snap-align: start;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: relative;
}

.content-box {
    background-color: rgba(10, 10, 26, 0.8);
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    border: 1px solid #00ff9d;
    text-align: center;
}

#home, #about, #contact {
    background-color: #1a1a2e;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #0a0a1a;
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 255, 157, 0.3);
}

nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #00ff9d;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

.logo {
    position: absolute;
    left: 20px;
    color: #00ff9d;
    font-weight: bold;
}

.social-widget {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: rgba(10, 10, 26, 0.8);
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

.social-button:hover {
    background-color: #00ff9d;
    color: #0a0a1a;
    transform: scale(1.1);
    border-color: #00ff9d;
}

#contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#contact-form input, #contact-form textarea {
    width: calc(100% - 22px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #00ff9d;
    border-radius: 5px;
    background-color: #0a0a1a;
    color: #00ff9d;
}

#contact-form button {
    width: 100%;
    padding: 10px;
    background-color: #00ff9d;
    color: #0a0a1a;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

#contact-form button:hover {
    background-color: #00e18e;
}

#form-status {
    margin-top: 10px;
    color: #00ff9d;
}

.glow {
    text-shadow: 0 0 10px #00ff9d;
}

footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #00ff9d;
}
