/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Press Start 2P', sans-serif; /* Add a retro pixel font from Google Fonts */
}

/* Body Styling */
body {
    background: #0d0d0d; /* Dark background for a retro aesthetic */
    color: #ffffff; /* White text for readability */
    line-height: 1.6;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #1a1a1a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.logo {
    font-size: 24px;
    color: #00ffcc; /* Vibrant retro green */
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00ffcc;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    background: linear-gradient(145deg, #1a1a1a, #2b2b2b);
    color: #ffffff;
    padding: 20px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #cccccc;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    text-decoration: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
}

.play-btn {
    background: #00ffcc;
    color: #0d0d0d;
}

.play-btn:hover {
    background: #00e6b8;
}

.trailer-btn {
    background: transparent;
    color: #00ffcc;
    border: 2px solid #00ffcc;
}

.trailer-btn:hover {
    background: #00ffcc;
    color: #0d0d0d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* for about.html */
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Press Start 2P', 'Arial', sans-serif; /* Add retro pixel fonts */
}

body {
    background: #0d0d0d; /* Dark mode aesthetic */
    color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
    scroll-behavior: smooth;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #111;
    border-bottom: 2px solid #00ffcc;
}

.logo {
    font-size: 28px;
    color: #00ffcc;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 6px rgba(0, 255, 204, 0.3);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: #00ffcc;
}

.nav-links a.active::after {
    content: '';
    width: 100%;
    height: 2px;
    background: #00ffcc;
    position: absolute;
    bottom: -5px;
    left: 0;
}

/* About Section */
.about-section {
    padding: 60px 20px;
    background: linear-gradient(145deg, #0d0d0d, #1a1a1a);
    color: #ffffff;
    text-align: center;
}

.about-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #00ffcc;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-in-out;
}

.about-section p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
    animation: fadeIn 1.5s ease-in-out;
}

.about-section h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #00e6b8;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    animation: fadeIn 2s ease-in-out;
}

.features-list {
    list-style-type: none;
    padding: 0;
}

.features-list li {
    font-size: 18px;
    margin: 15px 0;
    text-align: left;
    padding-left: 40px;
    position: relative;
    animation: slideIn 1.5s ease-out;
}

.features-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #00ffcc;
    font-size: 20px;
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background: #111;
    border-top: 2px solid #00ffcc;
    font-size: 14px;
    color: #ccc;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section h1 {
        font-size: 36px;
    }

    .about-section h2 {
        font-size: 24px;
    }

    .features-list li {
        font-size: 16px;
        padding-left: 30px;
    }

    .logo {
        font-size: 22px;
    }

    .nav-links a {
        font-size: 12px;
    }
}

/* styles of features.html */
/* Features Section */
.features {
    padding: 60px 20px;
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00ffcc;
}

.features p {
    font-size: 16px;
    margin-bottom: 40px;
    color: #cccccc;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-item {
    background: #2b2b2b;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s, background 0.3s;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #00ffcc;
}

.feature-item p {
    font-size: 14px;
    color: #cccccc;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: #333333;
}

/* Footer */
.footer {
    padding: 20px;
    background: #0d0d0d;
    text-align: center;
    color: #cccccc;
    font-size: 14px;
}

/* styles for screenshots.html */
/* Screenshots Page */
.screenshots-page {
    text-align: center;
    padding: 50px 20px;
    color: #ffffff;
}

.screenshots-page h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.screenshots-page p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
}

/* Gallery Layout */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.gallery-item {
    position: relative;
    border: 2px solid #333;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    display: block;
    border-bottom: 2px solid #333;
}

.gallery-item p {
    padding: 10px;
    font-size: 14px;
    color: #cccccc;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #cccccc;
    text-align: center;
    padding: 20px 0;
    margin-top: 50px;
}

/* styles for contact.html */
/* Contact Section */
.contact {
    padding: 50px 20px;
    text-align: center;
    background: #1a1a1a;
    color: #ffffff;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #cccccc;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #00ffcc;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #00ffcc;
    border-radius: 4px;
    background: #0d0d0d;
    color: #ffffff;
    font-size: 14px;
}

input::placeholder, textarea::placeholder {
    color: #999999;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #00e6b8;
}

button {
    width: 100%;
    cursor: pointer;
}

.footer {
    padding: 20px;
    background: #0d0d0d;
    color: #cccccc;
}

.footer p {
    margin-bottom: 10px;
}

.footer .social-links a {
    color: #00ffcc;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer .social-links a:hover {
    color: #00e6b8;
}

/* styles for play.html */
/* Play Page Styles */
.play-page {
    padding: 40px 20px;
    text-align: center;
    color: #ffffff;
}

.play-page h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.play-page p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #cccccc;
}

.downloads {
    margin: 30px 0;
}

.platforms .btn.download-btn {
    margin: 10px;
    background: #00ffcc;
    color: #0d0d0d;
    padding: 12px 20px;
    font-size: 16px;
    display: inline-block;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.platforms .btn.download-btn:hover {
    background: #00e6b8;
}

.trailer iframe {
    margin-top: 20px;
    border-radius: 8px;
    border: 2px solid #00ffcc;
}

.requirements {
    margin: 30px auto;
    max-width: 800px;
    color: #cccccc;
}

.system-reqs {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.system-reqs th, .system-reqs td {
    border: 1px solid #333;
    padding: 15px;
    text-align: left;
}

.system-reqs th {
    background-color: #222;
    color: #00ffcc;
}

.system-reqs td ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* styles for trailer.html */
/* Trailer Page */
.trailer-container {
    text-align: center;
    padding: 50px 20px;
    color: #ffffff;
}

.trailer-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #00ffcc;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.trailer-container p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #cccccc;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto 40px; /* Adds spacing below the video */
    border: 4px solid #00ffcc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

/* Button Group Spacing */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adds spacing between buttons */
    margin-top: 20px; /* Adds spacing above the buttons */
}

.btn {
    text-decoration: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
}

.back-btn {
    background: #2b2b2b;
    color: #00ffcc;
    border: 2px solid #00ffcc;
}

.back-btn:hover {
    background: #00ffcc;
    color: #0d0d0d;
}

.play-btn {
    background: #00ffcc;
    color: #0d0d0d;
}

.play-btn:hover {
    background: #00e6b8;
}