:root {
--primary-color: #d4af37;
--secondary-color: #1a1a1a;
--bg-color: #0b0b0b;
--text-white: #ffffff;
--text-gray: #b0b0b0;
--accent-gold: #f1c40f;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
body {
background-color: var(--bg-color);
color: var(--text-white);
line-height: 1.6;
}
header {
background: linear-gradient(180deg, #1f1f1f 0%, #000 100%);
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid var(--primary-color);
}
.header-top {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
max-width: 1200px;
margin: 0 auto;
}
.platform-name {
font-size: 24px;
font-weight: bold;
color: var(--primary-color);
text-transform: uppercase;
letter-spacing: 1px;
}
.login-btn {
background: linear-gradient(to bottom, #d4af37, #aa8a2e);
color: #000;
border: none;
padding: 8px 20px;
border-radius: 4px;
font-weight: bold;
cursor: pointer;
text-transform: uppercase;
}
.nav-bar {
background: #111;
display: flex;
justify-content: space-around;
padding: 10px 0;
max-width: 1200px;
margin: 0 auto;
}
.nav-bar a {
color: var(--text-white);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: color 0.3s;
}
.nav-bar a:hover {
color: var(--primary-color);
}
.hero {
padding: 40px 20px;
text-align: center;
background: radial-gradient(circle, #222 0%, #000 100%);
}
.hero h1 {
font-size: 28px;
color: var(--primary-color);
margin-bottom: 15px;
}
.hero p {
max-width: 800px;
margin: 0 auto 25px;
color: var(--text-gray);
}
.cta-group {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}
.btn-large {
padding: 12px 30px;
border-radius: 5px;
font-weight: bold;
cursor: pointer;
text-transform: uppercase;
border: none;
min-width: 160px;
}
.btn-register {
background: var(--primary-color);
color: #000;
}
.btn-download {
background: transparent;
color: var(--primary-color);
border: 1px solid var(--primary-color);
}
.section-title {
text-align: center;
font-size: 22px;
margin: 40px 0 20px;
color: var(--primary-color);
text-transform: uppercase;
position: relative;
}
.section-title::after {
content: '';
display: block;
width: 50px;
height: 2px;
background: var(--primary-color);
margin: 10px auto;
}
.game-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
.game-card {
background: #1a1a1a;
border-radius: 8px;
overflow: hidden;
border: 1px solid #333;
transition: transform 0.3s;
}
.game-card:hover {
transform: translateY(-5px);
border-color: var(--primary-color);
}
.game-card img {
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
display: block;
}
.game-info {
padding: 10px;
text-align: center;
}
.game-info a {
color: var(--text-white);
text-decoration: none;
font-size: 14px;
font-weight: 600;
}
.winners-section {
padding: 20px;
background: #111;
}
.winners-list {
max-width: 800px;
margin: 0 auto;
height: 300px;
overflow-y: auto;
border: 1px solid #333;
padding: 10px;
background: #000;
}
.winner-item {
display: flex;
justify-content: space-between;
padding: 10px;
border-bottom: 1px solid #222;
font-size: 13px;
}
.winner-name { color: var(--accent-gold); }
.winner-amount { color: #2ecc71; font-weight: bold; }
.reviews-section {
padding: 40px 20px;
max-width: 1200px;
margin: 0 auto;
}
.review-card {
background: #1a1a1a;
padding: 20px;
margin-bottom: 20px;
border-left: 4px solid var(--primary-color);
}
.review-stars { color: var(--accent-gold); margin-bottom: 10px; }
.review-author { font-style: italic; color: var(--text-gray); margin-top: 10px; display: block; }
.faq-section {
padding: 40px 20px;
max-width: 1200px;
margin: 0 auto;
}
.faq-item {
margin-bottom: 15px;
background: #111;
padding: 15px;
border-radius: 5px;
}
.faq-q {
font-weight: bold;
color: var(--primary-color);
margin-bottom: 8px;
}
.faq-a {
color: var(--text-gray);
font-size: 14px;
}
footer {
background: #000;
padding: 40px 20px;
text-align: center;
border-top: 1px solid var(--primary-color);
}
.footer-social {
margin-bottom: 20px;
}
.footer-social a {
color: var(--text-white);
margin: 0 15px;
font-size: 20px;
text-decoration: none;
}
.footer-copy {
color: var(--text-gray);
font-size: 12px;
}
@media (min-width: 768px) {
.game-grid { grid-template-columns: repeat(5, 1fr); }
.hero h1 { font-size: 42px; }
.hero p { font-size: 18px; }
}