/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1a1a2e;
    color: #e0e0e0;
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Press Start 2P', cursive;
    color: #fca311;
}

/* Header */
header {
    background-color: #162447;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 4px solid #fca311;
}

header h1 {
    font-size: 3rem;
    margin: 0;
}

header .tagline {
    font-size: 1.2rem;
    color: #e0e0e0;
    font-family: 'Roboto', sans-serif;
}

/* Main Content Sections */
main section {
    padding: 4rem 0;
    text-align: center;
}

main section:nth-child(odd) {
    background-color: #1f4068;
}

main section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Hero Section */
#hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.cta-button {
    display: inline-block;
    background-color: #fca311;
    color: #162447;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s;
    font-family: 'Press Start 2P', cursive;
}

.cta-button:hover {
    background-color: #ffb74d;
    transform: scale(1.05);
}

/* Features Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.feature-item {
    background: #162447;
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid #fca311;
}

.feature-item h3 {
    margin-top: 0;
}

/* Screens & Experience Section */
#screens ul, #experience ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

#screens li, #experience li {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: #162447;
    color: #bbb;
    text-align: center;
    padding: 2rem 0;
    border-top: 4px solid #fca311;
}

footer p {
    margin: 0.5rem 0;
}

footer strong {
    color: #fca311;
}
