:root { --bg-color: #050505; --card-bg: #0f0f0f; --primary-color: #00f2ff; --secondary-color: #7000ff; --text-color: #ffffff; --text-dim: #a0a0a0; --accent-glow: rgba(0, 242, 255, 0.3); --glass-bg: rgba(255, 255, 255, 0.03); --glass-border: rgba(255, 255, 255, 0.08); } * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; } body { background-color: var(--bg-color); color: var(--text-color); overflow-x: hidden; line-height: 1.6; } .glow-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 50% -20%, var(--secondary-color), transparent 50%), radial-gradient(circle at 80% 80%, var(--primary-color), transparent 50%); opacity: 0.15; z-index: -1; filter: blur(100px); } nav { display: flex; justify-content: space-between; align-items: center; padding: 2rem 5%; position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(5, 5, 5, 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid var(--glass-border); } .logo { font-size: 1.8rem; font-weight: 800; letter-spacing: 2px; } .logo span { color: var(--primary-color); text-shadow: 0 0 10px var(--primary-color); } .nav-links a { color: var(--text-color); text-decoration: none; margin-left: 2rem; font-weight: 500; transition: 0.3s; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; } .nav-links a:hover { color: var(--primary-color); } .cta-nav { background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)); padding: 0.8rem 1.5rem; border-radius: 50px; font-weight: 700 !important; } .hero { height: 100vh; display: flex; align-items: center; padding: 0 10%; gap: 5%; } .hero-content { flex: 1; } .hero-content h1 { font-size: 4.5rem; line-height: 1.1; font-weight: 800; margin-bottom: 1.5rem; font-family: 'Space Grotesk', sans-serif; } .hero-content h1 span { background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .hero-content p { font-size: 1.2rem; color: var(--text-dim); margin-bottom: 2.5rem; max-width: 600px; } .hero-btns { display: flex; gap: 1.5rem; } .btn-primary { padding: 1.2rem 2.5rem; background: var(--primary-color); color: #000; text-decoration: none; font-weight: 700; border-radius: 5px; transition: 0.3s; box-shadow: 0 0 20px var(--accent-glow); } .btn-secondary { padding: 1.2rem 2.5rem; border: 1px solid var(--glass-border); color: var(--text-color); text-decoration: none; font-weight: 700; border-radius: 5px; transition: 0.3s; background: var(--glass-bg); } .btn-primary:hover { transform: translateY(-5px); box-shadow: 0 0 30px var(--primary-color); } .hero-visual { flex: 1; position: relative; } .hero-img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 1px solid var(--glass-border); } .price-badge { position: absolute; bottom: -20px; right: -20px; background: var(--secondary-color); padding: 1.5rem; border-radius: 50%; font-weight: 800; font-size: 1.2rem; box-shadow: 0 10px 30px rgba(112, 0, 255, 0.5); animation: float 3s ease-in-out infinite; } @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } } .offers { padding: 100px 10%; background: rgba(255,255,255,0.02); } .section-title { text-align: center; font-size: 3rem; margin-bottom: 4rem; font-family: 'Space Grotesk', sans-serif; } .offers-container { display: flex; justify-content: center; gap: 2rem; } .offer-card { background: var(--card-bg); padding: 3rem; border-radius: 20px; width: 400px; border: 1px solid var(--glass-border); position: relative; transition: 0.4s; } .offer-card:hover { transform: scale(1.05); border-color: var(--primary-color); } .offer-card.bundle { border: 2px solid var(--secondary-color); background: linear-gradient(135deg, #0f0f0f, #1a0a2e); } .offer-tag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--secondary-color); padding: 0.5rem 1.5rem; border-radius: 20px; font-size: 0.8rem; font-weight: 800; } .offer-header { font-size: 1.2rem; color: var(--text-dim); margin-bottom: 1rem; letter-spacing: 2px; } .offer-price { font-size: 4rem; font-weight: 800; margin-bottom: 2rem; } .offer-price span { font-size: 1rem; color: var(--text-dim); } .offer-features { list-style: none; margin-bottom: 3rem; } .offer-features li { margin-bottom: 1rem; color: var(--text-dim); display: flex; align-items: center; } .offer-features li::before { content: '✓'; color: var(--primary-color); margin-right: 1rem; font-weight: bold; } .offer-btn { display: block; text-align: center; padding: 1.2rem; background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--text-color); text-decoration: none; border-radius: 10px; font-weight: 700; transition: 0.3s; } .offer-card.bundle .offer-btn { background: var(--secondary-color); } .games-grid { padding: 100px 10%; } .grid-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; } .game-card { background: var(--card-bg); border-radius: 15px; overflow: hidden; border: 1px solid var(--glass-border); transition: 0.3s; } .game-card:hover { transform: translateY(-10px); } .game-card img { width: 100%; height: 350px; object-fit: cover; } .game-info { padding: 1.5rem; } .game-info h3 { margin-bottom: 0.5rem; } .game-info p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 1rem; } .game-price { font-size: 1.2rem; font-weight: 800; color: var(--primary-color); } footer { padding: 3rem; text-align: center; border-top: 1px solid var(--glass-border); color: var(--text-dim); } @media (max-width: 1024px) { .hero { flex-direction: column; text-align: center; padding-top: 150px; } .hero-content h1 { font-size: 3rem; } .offers-container { flex-direction: column; align-items: center; } .offer-card { width: 100%; max-width: 400px; } }