:root {
--primary-color: linear-gradient(135deg, #FFD700, #FFA500);
--secondary-color: #4A4A4A;
--background-color: #F0F0F0;
--shadow-color: rgba(0,0,0,0.2);
}
body {
font-family: 'Arial', sans-serif;
background-color: var(--background-color);
margin: 0;
padding: 0;
color: var(--secondary-color);
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 0 auto;
text-align: center;
box-shadow: 0 10px 25px var(--shadow-color);
background-color: white;
min-height: 100vh;
}
.email {
font-weight: bold;
color: #333;
font-size: 20px;
margin: 20px 0;
}
header {
background: var(--primary-color);
padding: 1rem;
box-shadow: 0 4px 6px var(--shadow-color);
position: relative;
z-index: 10;
}
header h1 {
color: black;
font-size: 2.5rem;
margin: 0;
text-shadow: 2px 2px 4px var(--shadow-color);
}
nav {
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 1rem;
}
nav a {
color: black;
text-decoration: none;
padding: 0.5rem 1rem;
border-radius: 5px;
transition: all 0.3s ease;
box-shadow: 0 2px 4px var(--shadow-color);
}
nav a:hover {
background-color: rgba(0,0,0,0.1);
transform: translateY(-2px);
box-shadow: 0 4px 8px var(--shadow-color);
}
.game-banner {
position: relative;
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 300px;
background: linear-gradient(135deg, #4A90E2, #50C878);
}
.game-banner img {
max-width: 100%;
max-height: 400px;
border-radius: 10px;
box-shadow: 0 10px 20px var(--shadow-color);
transition: transform 0.3s ease;
object-fit: cover;
}
.game-banner-fallback {
display: none;
color: white;
text-align: center;
padding: 2rem;
background: rgba(0,0,0,0.3);
border-radius: 10px;
}
.game-banner img:hover {
transform: scale(1.02);
}
.cta-button {
background: var(--primary-color);
color: black;
padding: 1rem 2rem;
text-decoration: none;
border-radius: 5px;
margin: 1rem 0;
font-weight: bold;
box-shadow: 0 5px 15px var(--shadow-color);
transition: all 0.3s ease;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 7px 20px var(--shadow-color);
}
#updates {
background-color: #f9f9f9;
padding: 1rem;
border-radius: 10px;
margin: 1rem;
}
#updates ul {
list-style-type: none;
padding: 0;
}
#updates li {
background-color: white;
margin: 0.5rem 0;
padding: 1rem;
border-radius: 5px;
box-shadow: 0 3px 10px var(--shadow-color);
transition: transform 0.3s ease;
}
#updates li:hover {
transform: translateX(10px);
}
.legal-links {
margin-top: 2rem;
}
.legal-buttons {
display: flex;
justify-content: center;
gap: 1rem;
}
.legal-buttons a {
background-color: var(--secondary-color);
color: white;
text-decoration: none;
padding: 0.5rem 1rem;
border-radius: 5px;
box-shadow: 0 3px 6px var(--shadow-color);
transition: all 0.3s ease;
}
.legal-buttons a:hover {
transform: translateY(-2px);
box-shadow: 0 4px 10px var(--shadow-color);
}
footer {
background-color: var(--secondary-color);
color: white;
padding: 1rem;
margin-top: 2rem;
box-shadow: 0 -5px 15px var(--shadow-color);
}
@media (max-width: 600px) {
.container {
width: 100%;
box-shadow: none;
}
.legal-buttons {
flex-direction: column;
align-items: center;
}
.legal-buttons a {
width: 80%;
margin: 0.5rem 0;
}
}
.modal {
display: none;
position: fixed;
z-index: 1;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.5);
}
.modal-content {
background-color: #fefefe;
margin: auto;
padding: 20px;
border-radius: 10px;
width: 80%;
max-width: 500px;
text-align: center;
}
.close {
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
cursor: pointer;
}
.close:hover,
.close:focus {
color: black;
}
.discord-icon {
width: 100px;
height: 100px;
}
.discord-btn {
display: inline-block;
margin-top: 15px;
padding: 10px 20px;
background-color: #5865F2;
color: white;
text-decoration: none;
border-radius: 8px;
}
