:root {
--primary-cyan: #00f3ff;
--primary-pink: #ff0055;
--primary-purple: #8b5cf6;
--dark-bg: #0a0a1a;
--card-bg: #1a1a2e;
--card-hover: #252540;
--text-primary: #ffffff;
--text-secondary: #a0e7ff;
--text-muted: #cccccc;
--border-color: #333355;
--success: #10b981;
--warning: #f59e0b;
--accent: #a020f0;
}
html {
scroll-behavior: smooth;
}
body {
background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #0a1a2e 100%);
background-attachment: fixed;
color: var(--text-primary);
font-family: 'Poppins', sans-serif;
line-height: 1.6;
overflow-x: hidden;
}
/* ===== ANIMATIONS ===== */
@keyframes slideDown {
from { transform: translateY(-100%); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.6; }
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(50px); }
to { opacity: 1; transform: translateY(0); }
}
/* ===== NAVIGATION ===== */
.navbar {
position: fixed;
top: 0;
left: 0;
right: 0;
background: rgba(26, 26, 46, 0.85);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(0, 243, 255, 0.2);
padding: 1rem 0;
z-index: 1000;
animation: slideDown 0.6s ease-out;
}
.nav-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.nav-logo {
font-family: 'Orbitron', sans-serif;
font-size: 2rem;
font-weight: 900;
background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
color: transparent;
background-clip: text;
text-decoration: none;
display: flex;
align-items: center;
gap: 0.6rem;
transition: transform 0.3s ease;
}
.nav-logo:hover {
transform: scale(1.08);
}
.nav-logo i {
color: var(--primary-cyan);
animation: pulse 2s ease-in-out infinite;
}
.nav-menu {
display: flex;
list-style: none;
gap: 2.5rem;
align-items: center;
}
.nav-link {
color: var(--text-primary);
text-decoration: none;
font-weight: 500;
font-size: 1.05rem;
position: relative;
padding: 0.5rem 0;
transition: color 0.3s ease;
display: flex;
align-items: center;
gap: 0.5rem;
}
.nav-link::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--primary-cyan), var(--primary-pink));
transition: width 0.4s ease;
}
.nav-link:hover,
.nav-link.active {
color: var(--primary-cyan);
}
.nav-link:hover::after,
.nav-link.active::after {
width: 100%;
}
.nav-profile {
display: flex;
align-items: center;
gap: 1rem;
padding: 0.6rem 1.2rem;
background: rgba(0, 243, 255, 0.1);
border: 1px solid rgba(0, 243, 255, 0.3);
border-radius: 50px;
transition: all 0.4s ease;
}
.nav-profile:hover {
background: rgba(0, 243, 255, 0.2);
border-color: var(--primary-cyan);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(0, 243, 255, 0.35);
}
.nav-avatar {
width: 40px;
height: 40px;
background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 1rem;
color: #000;
}
.nav-username {
font-weight: 600;
}
.nav-toggle {
display: none;
flex-direction: column;
gap: 6px;
cursor: pointer;
}
.nav-toggle span {
width: 30px;
height: 3px;
background: var(--primary-cyan);
border-radius: 3px;
transition: all 0.3s ease;
}
/* ===== HERO CAROUSEL ===== */
.hero-carousel {
margin-top: 80px;
position: relative;
height: 680px;
overflow: hidden;
}
.carousel-slide {
position: absolute;
inset: 0;
background-size: cover;
background-position: center;
opacity: 0;
transition: opacity 1.2s ease;
display: flex;
align-items: center;
justify-content: center;
}
.carousel-slide.active {
opacity: 1;
z-index: 1;
}
.carousel-slide::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.4));
}
.slide-content {
position: relative;
z-index: 2;
text-align: center;
max-width: 900px;
padding: 2rem;
animation: fadeInUp 1.2s ease-out;
}
.slide-content h3 {
font-family: 'Orbitron', sans-serif;
font-size: 4.5rem;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, var(--primary-cyan), var(--primary-pink));
color: transparent;
background-clip: text;
text-shadow: 0 0 50px rgba(0, 243, 255, 0.6);
}
.slide-content p {
font-size: 1.5rem;
color: var(--text-secondary);
margin-bottom: 2.5rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
/* ===== BUTTONS ===== */
.cta-button {
display: inline-flex;
align-items: center;
gap: 0.8rem;
padding: 1.2rem 3rem;
background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple));
color: white;
text-decoration: none;
border-radius: 50px;
font-weight: 600;
font-size: 1.15rem;
transition: all 0.4s ease;
box-shadow: 0 12px 35px rgba(0, 243, 255, 0.4);
border: none;
cursor: pointer;
}
.cta-button:hover {
transform: translateY(-5px);
box-shadow: 0 20px 50px rgba(0, 243, 255, 0.5);
}
.cta-button.downloaded {
background: var(--success);
cursor: not-allowed;
transform: none;
}
/* ===== CONTAINER ===== */
.container {
max-width: 1400px;
margin: 0 auto;
padding: 6rem 2rem 5rem;
}
/* ===== HEADERS & SECTIONS ===== */
.section-title {
font-family: 'Orbitron', sans-serif;
font-size: 2.5rem;
color: var(--primary-cyan);
margin: 4rem 0 2.5rem;
text-transform: uppercase;
letter-spacing: 3px;
position: relative;
padding-left: 20px;
}
.section-title::before {
content: '';
position: absolute;
left: 0;
top: 50%;
width: 6px;
height: 60%;
background: var(--primary-pink);
transform: translateY(-50%);
}
/* ===== GAMES GRID ===== */
.games-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
gap: 2.5rem;
}
.game-card {
background: var(--card-bg);
backdrop-filter: blur(12px);
border-radius: 24px;
overflow: hidden;
border: 1px solid var(--border-color);
transition: all 0.5s ease;
}
.game-card:hover {
transform: translateY(-15px);
border-color: var(--primary-pink);
box-shadow: 0 15px 40px rgba(255, 0, 85, 0.25);
}
.game-image {
height: 220px;
background-size: cover;
background-position: center;
transition: transform 0.6s ease;
}
.game-card:hover .game-image {
transform: scale(1.1);
}
.game-details {
padding: 1.8rem;
}
.game-details h3 {
font-family: 'Orbitron', sans-serif;
font-size: 1.4rem;
margin-bottom: 0.8rem;
}
/* ===== SEARCH BAR ===== */
.search-bar {
position: relative;
max-width: 700px;
margin: 2.5rem auto 0;
}
.search-bar i {
position: absolute;
left: 1.8rem;
top: 50%;
transform: translateY(-50%);
color: var(--primary-cyan);
font-size: 1.3rem;
}
.search-bar input {
width: 100%;
padding: 1.2rem 4rem;
background: rgba(37, 37, 64, 0.7);
border: 1px solid var(--border-color);
border-radius: 50px;
color: white;
font-size: 1.1rem;
outline: none;
transition: border-color 0.3s ease;
}
.search-bar input:focus {
border-color: var(--primary-cyan);
box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}
/* ===== NOTIFICATION ===== */
.notification {
position: fixed;
top: 100px;
right: 30px;
background: rgba(0, 243, 255, 0.95);
color: #000;
padding: 1.2rem 2.5rem;
border-radius: 12px;
z-index: 2000;
transform: translateX(150%);
transition: transform 0.6s ease;
font-weight: bold;
font-size: 1.1rem;
box-shadow: 0 8px 30px rgba(0, 243, 255, 0.4);
}
.notification.show {
transform: translateX(0);
}
/* ===== PROFILE SPECIFIC ===== */
.profile-header,
.games-header {
text-align: center;
margin-bottom: 4rem;
padding: 4rem 2rem;
background: rgba(26, 26, 46, 0.7);
backdrop-filter: blur(20px);
border-radius: 32px;
border: 1px solid var(--border-color);
}
.profile-header h1,
.games-header h1 {
font-family: 'Orbitron', sans-serif;
font-size: 3.5rem;
margin-bottom: 1.5rem;
background: linear-gradient(135deg, var(--primary-cyan), var(--primary-purple), var(--primary-pink));
color: transparent;
background-clip: text;
}
/* ===== DOWNLOAD PAGE SPECIFIC ===== */
.download-hero {
padding: 140px 0 100px;
text-align: center;
background: linear-gradient(rgba(10, 10, 12, 0.85), rgba(10, 10, 12, 0.85)), url('images/all.jpg');
background-size: cover;
background-position: center;
border-bottom: 3px solid var(--primary-purple);
}
.download-hero h1 {
font-family: 'Orbitron', sans-serif;
font-size: 4rem;
margin-bottom: 1.5rem;
background: linear-gradient(to right, #fff, var(--accent));
color: transparent;
background-clip: text;
}
.version-badge {
background: var(--accent);
padding: 8px 20px;
border-radius: 30px;
font-size: 1rem;
font-weight: bold;
display: inline-block;
margin-bottom: 30px;
}
/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
.nav-menu {
gap: 1.5rem;
}
.slide-content h3 {
font-size: 3.8rem;
}
}
@media (max-width: 992px) {
.nav-menu {
position: fixed;
top: 80px;
left: 0;
right: 0;
background: rgba(10, 10, 26, 0.98);
flex-direction: column;
padding: 3rem 2rem;
transform: translateY(-150%);
transition: transform 0.5s ease;
gap: 2rem;
}
.nav-menu.active {
transform: translateY(0);
}
.nav-toggle {
display: flex;
}
.hero-carousel {
height: 580px;
}
}
@media (max-width: 768px) {
.nav-logo {
font-size: 1.7rem;
}
.slide-content h3 {
font-size: 3rem;
}
.slide-content p {
font-size: 1.3rem;
}
.hero-carousel {
height: 500px;
}
.container {
padding: 5rem 1.5rem 4rem;
}
.games-grid {
grid-template-columns: 1fr;
}
}
@media (max-width: 480px) {
.slide-content h3 {
font-size: 2.5rem;
}
.cta-button {
padding: 1rem 2rem;
font-size: 1rem;
}
}