/* Retro font */
@font-face {
    font-family: 'Press Start 2P';
    src: url('fonts/PressStart2P-Regular.ttf') format('truetype');
}

body {
    font-family: 'Press Start 2P', cursive;
}
body {
    margin: 0;
    font-family: 'Press Start 2P', cursive;
    background-color: #0a0a2a; /* Dark blue background */
    color: #00bfff; /* Primary blue for text */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Header */
.header {
    background-color: #000;
    width: 100%;
    padding: 20px 0;
    border-bottom: 4px solid #00bfff; /* Primary blue for border */
    color: #00bfff; /* Primary blue for header text */
}

/* Navigation bar */
.navbar {
    width: 100%;
    background-color: #0d0d3b;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    border-bottom: 4px solid #00bfff; /* Primary blue for border */
}

.navbar a {
    color: #00bfff; /* Primary blue for links */
    padding: 14px 20px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.navbar a:hover {
    background-color: #007acc; /* Accent blue on hover */
    color: #ffffff;
}

/* Slideshow container */
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin-top: 20px;
    border: 4px solid #00bfff; /* Primary blue for slideshow border */
}

.slide {
    display: none;
    width: 100%;
    filter: contrast(0.8) brightness(1.1);
}

/* Content Sections */
.content-section {
    width: 80%;
    max-width: 800px;
    background-color: #1a1a3d; /* Dark blue for content background */
    padding: 20px;
    margin: 20px auto;
    border: 4px solid #00bfff; /* Primary blue for border */
    box-shadow: 4px 4px #0d0d3b; /* Dark blue shadow */
}

.content-section h2 {
    color: #007acc; /* Accent blue for section headers */
}

.content-section p {
    font-size: 14px;
    line-height: 1.6;
}

/* Download buttons */
.download-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-button {
    display: inline-block;
    font-size: 16px;
    margin: 10px;
    padding: 12px 24px;
    background-color: #00bfff; /* Primary blue for buttons */
    color: #0a0a2a; /* Dark blue text on button */
    text-decoration: none;
    border: 4px solid #007acc; /* Accent blue for button border */
    transition: background-color 0.3s, transform 0.2s;
}

.download-button:hover {
    background-color: #007acc; /* Accent blue on hover */
    color: #ffffff;
    transform: scale(1.05);
}

/* Contact Link Styling */
a {
    color: #00bfff; /* Primary blue for other links */
    text-decoration: none;
}

a:hover {
    color: #007acc; /* Accent blue on hover */
    text-decoration: underline;
}
/* Search Bar Section */
.search-section {
    margin: 20px auto;
    width: 80%;
    max-width: 600px;
    text-align: center;
}

#searchBar {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #00bfff; /* Primary blue */
    border-radius: 8px;
    outline: none;
    background-color: #1a1a3d; /* Dark background */
    color: #00bfff; /* Blue text */
    box-shadow: 4px 4px #0d0d3b; /* Shadow effect */
}

/* Support Topics Section */
.support-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px;
    padding: 20px;
}

.topic {
    text-align: center;
    background-color: #1a1a3d; /* Dark background */
    padding: 10px;
    border: 2px solid #00bfff; /* Blue border */
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.topic img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
    border: 2px solid #007acc; /* Accent border */
}

.topic p {
    color: #00bfff; /* Blue text */
    font-size: 14px;
}

.topic a {
    text-decoration: none;
    color: inherit;
}

.topic:hover {
    transform: scale(1.05);
    box-shadow: 4px 4px #007acc;
}

