/* shared.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Arial', sans-serif;
    background-image: url('bg_01.webp'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* This makes the background stay fixed */
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: transparent;
}

.logo {
    font-size: 2rem;
    font-family: 'Courier New', Courier, monospace;
    color: #76ff03;
    text-shadow: 0 0 10px #00ff55;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #90ee90;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffff00;
}

.content-wrapper {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-size: 3rem;
    color: #00ff55;
    text-align: center;
    text-shadow: 0 0 10px #00ff55;
    margin-bottom: 30px;
}

.text-content {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    max-height: 70vh;
    overflow-y: auto;
    line-height: 1.8;
    font-size: 1.2rem;
}

.hero {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-image: url('bg_01.webp'); /* Replace with your image */
	background-size: cover;
	background-position: center;
	height: 100vh;
	position: relative;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6); /* Dark overlay for better readability */
}

.hero-content {
	z-index: 2;
	color: #fff;
	padding-top: 200px;
}

.hero h1 {
	font-size: 4rem;
	font-family: 'Courier New', Courier, monospace;
	text-shadow: 0 0 10px #00ff55;
	color: #00ff55;
}

.hero .play-ref {
	font-size: 4rem;
	font-family: 'Courier New', Courier, monospace;
	text-shadow: 0 0 10px #00ff55;
	color: #00ff55;
	text-decoration: none;
}

.hero .play-btn {
	margin-top: 30px;
	padding: 15px 30px;
	font-size: 1.5rem;
	background-color: #76ff03;
	color: #000;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	text-shadow: 0 0 5px #000;
	transition: background-color 0.3s;
	text-decoration: none;
}

.hero .play-btn:hover {
	background-color: #ffcc00;
}

.neon-text {
	font-family: 'Courier New', Courier, monospace;
	font-size: 3rem;
	color: #00ff55;
	text-shadow: 0 0 10px #00ff55, 0 0 20px #00ff55, 0 0 30px #00ff55;
}


footer {
    text-align: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    font-size: 1rem;
    color: #90ee90;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 20px 10px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .text-content {
        font-size: 1rem;
    }
	
	.hero h1 {
		font-size: 2.5rem;
	}

	.hero .play-btn {
		font-size: 1.2rem;
		padding: 10px 20px;
	}
}
