body {
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.4;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    text-align: center;
}

h2 {
    font-size: 1.0rem;
    margin: 2rem 0;
    color: #111111;
}

section {
    padding: 0px 0;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #444444;
    line-height: 1.2;
    text-align: left;
}

.highlight {
    background-color: #f9f9f9;
    padding: 3px 5px;
    border-left: 3px solid #111111;
    animation: blinkBorder 1.5s infinite;
}

@keyframes blinkBorder {
    0% { border-left-color: #111111; }
    50% { border-left-color: transparent; }
    100% { border-left-color: #111111; }
}

.hero {
    background-color: #ffffff;
    padding: 120px 0 60px;
    text-align: center;
}

.hero .container {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-family: 'Proxima Nova', Arial, sans-serif;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
    letter-spacing: 0.85rem;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin: 0;
    text-align: center;
}

.jumping-title {
    animation: jumpUpDown 5s ease-in-out infinite;
}

.title-line {
    display: block;
    font-size: 0.9em;
    margin-bottom: 0.15em;
    margin-right: -0.85rem; /* Compensate for letter-spacing on the last character */
}

@keyframes jumpUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.team-members {
    text-align: center;
}

.team-members a {
    color: #111111;
    text-decoration: underline;
    font-weight: 500;
}

.team-members a:hover {
    color: #555555;
}

.copyright {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, #5e72e4 0%, #825ee4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero p {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 1rem;
    color: #666666;
    text-align: center;
}

.intro {
    background-color: #ffffff;
}

.intro .container {
    text-align: left;
}

.intro p {
    font-size: 1rem;
}

.intro p strong {
    color: #111111;
    font-weight: 600;
}

.platforms {
    background-color: #ffffff;
}

.platforms .container {
    text-align: left;
}

.platforms .platform {
    background: transparent;
    padding: 20px 0;
    margin: 10px 0;
}

.platforms h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #111111;
}

blockquote {
    font-style: italic;
    font-size: 1rem;
    margin: 20px 0;
    padding: 10px 0;
    color: #666666;
    border-left: none;
    text-align: center;
}

.team {
    background-color: #ffffff;
}

.team .container {
    text-align: left;
}

.join {
    background: #ffffff;
}

.join .container {
    text-align: center;
}

.join p {
    text-align: center;
}

.button {
    display: inline-block;
    padding: 12px 24px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.button:hover {
    background: #333333;
}

/* Footer */
footer {
    background: #ffffff;
    color: #666666;
    padding: 50px 0;
    margin-top: 0;
    font-size: 0.8rem;
}

footer .container {
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        width: 85%;
    }
    
    .hero h1 {
        font-size: 2rem;
        letter-spacing: .8rem;
    }
    
    .title-line {
        margin-right: -0.25rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.0rem;
    }
}

pre {
    font-family: monospace;
    color: #111111;
    background-color: #f7f7f7;
    padding: 20px;
    overflow-x: auto;
    text-align: left;
    margin: 0 auto;
    max-width: 600px;
}