/* Night Sky Web 1.0 Theme */

body {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-family: "Courier New", sans-serif;
    text-align: center;
    cursor: url('img/star_cursor.cur'), auto;
}

.page-container {
    width: 1000px;
    margin: 0 auto;
    background-color: rgba(0, 0, 34, 0.7);
    border: 5px solid #6600cc;
    border-style: ridge;
    padding: 20px;
    box-shadow: 0 0 20px #9900FF;
}

.stardust {
    background-image: url('img/stardust.gif');
    padding: 20px;
}

/* Headers */
h1 {
    color: #ffff00;
    font-size: 36px;
    text-shadow: 2px 2px #ff00ff;
    font-family: "Courier New", cursive;
    letter-spacing: 3px;
}

h2 {
    color: #00ffff;
    font-size: 28px;
    border: 3px dotted #ff00ff;
    padding: 10px;
    background-color: #000066;
    display: inline-block;
    margin: 20px auto;
    font-family: "Courier New", monospace;
}

h3 {
    color: #ff99cc;
    font-size: 20px;
}

/* Links */
a {
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #ffff00;
    text-decoration: underline overline;
}

/* Sections */
section {
    margin: 0px 0;
}

/* Star Button Styling */
.star-buttons {
    margin: 20px 0;
}

.star-button {
    display: inline-block;
    background-color: #000066;
    border: 3px outset #6600cc;
    color: #ffff00;
    padding: 10px 20px;
    font-size: 18px;
    margin: 10px;
    font-weight: bold;
}

.star-button:hover {
    background-color: #330066;
    border-style: inset;
    text-decoration: none;
    color: #00ffff;
}

/* Discord Button */
.discord-button {
    display: inline-block;
    background-color: #5865F2;
    color: white;
    padding: 15px 25px;
    border: 3px outset #7289DA;
    text-decoration: none;
}

.discord-button:hover {
    background-color: #7289DA;
    border-style: inset;
    color: white;
}

/* Feature and Stat Boxes */
.stat-box {
    background-color: #000033;
    border: 3px groove #9900cc;
    margin: 10px;
    padding: 15px;
}

.feature-box {
    background-color: #000033;
    border: 3px groove #9900cc;
    margin: 10px;
    padding: 15px;
    min-height:250px;
}

.feature-box:hover, .stat-box:hover {
    border-color: #ff00ff;
    background-color: #000044;
}

.stat-box h3 {
    color: #ffcc00;
    font-size: 28px;
    margin: 5px 0;
}

/* Blink animation for text (recreating the <blink> tag effect) */
blink {
    animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

/* Classic spacer */
marquee {
    background-color: #000033;
    padding: 8px;
    border: 2px solid #6600cc;
}

/* Add some more web 1.0 styles */
img {
    image-rendering: pixelated;
}

p {
    line-height: 1.5;
    font-size: 16px;
}

/* Typical web 1.0 footer */
footer {
    margin-top: 30px;
    border-top: 2px groove #6600cc;
    padding-top: 15px;
}

/* Hide scrollbar for a cleaner look */
::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Gallery Styles */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
}

.gallery-item {
    margin-bottom: 25px;
    text-align: center;
}

.photo-frame {
    border: 6px ridge #9900FF;
    background-color: #000033;
    padding: 8px;
    box-shadow: 0 0 15px #6600cc;
    display: inline-block;
}

.gallery-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border: 2px solid #00FFFF;
    display: block;
}

.gallery-item p {
    margin-top: 8px;
    font-weight: bold;
}

.photo-frame:hover {
    border-color: #FF00FF;
    box-shadow: 0 0 20px #FF00FF;
    transform: scale(1.02);
    transition: all 0.3s ease;
}
