@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&display=swap');
:root {
--bg-dark: #e0f2fe;
--bg-card: rgba(255, 255, 255, 0.85);
--primary: #ff8c00;
--primary-glow: rgba(255, 140, 0, 0.6);
--secondary: #0ea5e9;
--secondary-glow: rgba(14, 165, 233, 0.6);
--text-main: #0f172a;
--text-muted: #475569;
--border-color: rgba(203, 213, 225, 0.6);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Outfit', sans-serif;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
display: block;
}
summary {
display: list-item;
}
body {
background-color: var(--bg-dark);
color: var(--text-main);
line-height: 1.6;
overflow-x: hidden;
}
section {
padding: 80px 5%;
}
a {
text-decoration: none;
color: inherit;
transition: all 0.3s ease;
}
ul {
list-style: none;
}
.site-header {
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(15px);
position: fixed;
top: 0;
width: 100%;
z-index: 1000;
border-bottom: 1px solid var(--border-color);
padding: 15px 5%;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: clamp(16px, 5vw, 24px);
font-weight: 900;
color: var(--text-main);
text-transform: uppercase;
letter-spacing: 2px;
}
.logo span {
color: var(--primary);
}
.nav-links {
display: flex;
gap: 25px;
}
.nav-links li a {
font-size: 16px;
font-weight: 600;
color: var(--text-main);
}
.nav-links li a:hover {
color: var(--primary);
}
.auth-btns {
display: flex;
gap: 15px;
align-items: center;
}
.btn {
padding: 12px 25px;
border-radius: 8px;
font-weight: 700;
text-decoration: none;
cursor: pointer;
transition: all 0.3s ease;
border: none;
outline: none;
font-size: 16px;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 4px 0 rgba(0,0,0,0.2);
}
.btn:active {
transform: translateY(4px);
box-shadow: 0 0 0 rgba(0,0,0,0.2);
}
.form-group input:focus, .form-group textarea:focus {
border-color: var(--secondary);
}
.btn-full {
width: 100%;
margin-top: 10px;
}
.cookie-banner {
position: fixed;
bottom: 20px;
left: 5%;
right: 5%;
background: var(--bg-card);
border: 1px solid var(--border-color);
padding: 20px;
border-radius: 10px;
display: none;
justify-content: space-between;
align-items: center;
z-index: 1500;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}
.cookie-banner.active {
display: flex;
}
.cookie-text {
flex: 1;
margin-right: 20px;
font-size: 14px;
color: var(--text-muted);
}
.ai-widget {
position: fixed;
bottom: 30px;
right: 30px;
width: 60px;
height: 60px;
background: linear-gradient(135deg, var(--primary), #4b0082);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
box-shadow: 0 0 20px var(--primary-glow);
z-index: 1000;
animation: pulse 2s infinite;
}
.ai-widget svg {
width: 30px;
height: 30px;
fill: #fff;
}
@keyframes pulse {
0% { transform: scale(1); box-shadow: 0 0 20px var(--primary-glow); }
50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(255, 140, 0, 0.8); }
100% { transform: scale(1); box-shadow: 0 0 20px var(--primary-glow); }
}
.page-header {
margin-top: 70px;
padding: 60px 5% 40px;
text-align: center;
background: linear-gradient(to bottom, rgba(255, 140, 0, 0.1), transparent);
}
.page-header h1 {
font-size: clamp(28px, 6vw, 42px);
color: var(--secondary);
margin-bottom: 15px;
}
.page-content {
max-width: 900px;
margin: 0 auto;
padding: 0 5% 80px;
}
.page-content p {
margin-bottom: 20px;
color: var(--text-muted);
}
.page-content h2, .page-content h3 {
color: var(--text-main);
margin: 30px 0 15px;
}
.page-content ul, .page-content ol {
margin-bottom: 20px;
padding-left: 20px;
color: var(--text-muted);
}
.page-content li {
margin-bottom: 10px;
}
.mobile-menu-btn {
display: none;
background: none;
border: none;
cursor: pointer;
font-size: 28px;
color: var(--text-main);
z-index: 1000;
padding: 5px;
}
.site-header.collapsed .nav-links,
.site-header.collapsed .auth-btns {
display: none;
flex-direction: column;
width: 100%;
text-align: center;
padding: 0;
}
.site-header.collapsed .nav-links li {
margin: 5px 0;
width: 100%;
}
.site-header.collapsed .nav-links a {
font-size: 18px;
display: block;
padding: 12px 20px;
margin: 0 20px;
border-radius: 8px;
font-weight: 600;
transition: all 0.2s ease;
}
.site-header.collapsed .nav-links a:hover {
background: rgba(0, 0, 0, 0.04);
color: var(--primary);
}
.site-header.collapsed .auth-btns {
gap: 15px;
padding: 20px;
border-top: 1px solid var(--border-color);
margin-top: auto;
width: 100%;
}
.site-header.collapsed .mobile-menu-btn {
display: block;
}
.site-header.collapsed.mobile-active {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(20px);
height: 100vh;
align-items: center;
flex-direction: column;
justify-content: flex-start;
padding-top: 80px;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 999;
transition: all 0.3s ease;
}
.site-header.collapsed.mobile-active .logo {
position: absolute;
top: 20px;
left: 20px;
}
.site-header.collapsed.mobile-active .mobile-menu-btn {
position: absolute;
top: 20px;
right: 20px;
font-size: 36px;
background: var(--bg-card);
border-radius: 50%;
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.site-header.collapsed.mobile-active .nav-links,
.site-header.collapsed.mobile-active .auth-btns {
display: flex;
animation: fadeInMenu 0.4s ease forwards;
}
.site-header.collapsed.mobile-active .auth-btns {
margin-top: 40px;
}
@keyframes fadeInMenu {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
.hero {
flex-direction: column;
text-align: center;
padding-top: 100px;
}
.hero h1 {
font-size: 40px;
}
.split-block, .split-block.reverse {
flex-direction: column;
}
.game-block {
flex-direction: column;
}
.cookie-banner {
flex-direction: column;
text-align: center;
gap: 15px;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
.footer-content {
flex-direction: column;
}
}
.pros-cons-grid {
display: flex;
gap: 30px;
margin-top: 40px;
}
@media (max-width: 768px) {
.pros-cons-grid {
flex-direction: column;
}
}
.pro-con-card {
flex: 1;
background: var(--bg-card);
backdrop-filter: blur(12px);
border-radius: 20px;
padding: 30px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
position: relative;
overflow: hidden;
}
.pro-card {
border-top: 4px solid #00ff88;
}
.con-card {
border-top: 4px solid #ff3366;
}
.pro-con-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 25px;
font-size: 24px;
font-weight: 700;
}
.pro-con-header svg {
width: 32px;
height: 32px;
fill: var(--text-main);
}
.pro-card .pro-con-header {
color: #00ff88;
}
.con-card .pro-con-header {
color: #ff3366;
}
.pro-con-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 15px;
}
.pro-con-list li {
display: flex;
align-items: flex-start;
gap: 15px;
background: rgba(0, 0, 0, 0.02);
padding: 15px;
border-radius: 12px;
font-size: 15px;
color: var(--text-muted);
transition: transform 0.3s ease, background 0.3s ease;
}
.pro-con-list li:hover {
transform: translateX(5px);
background: rgba(0, 0, 0, 0.05);
}
.pro-con-list li svg {
width: 20px;
height: 20px;
flex-shrink: 0;
margin-top: 2px;
}
.pro-card .pro-con-list li svg {
fill: #00ff88;
}
.con-card .pro-con-list li svg {
fill: #ff3366;
}
.games-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
margin-top: 20px;
}
.game-card {
background: var(--bg-card);
border-radius: 15px;
overflow: hidden;
transition: transform 0.3s ease;
border: 1px solid var(--border-color);
}
.game-card:hover {
transform: translateY(-10px);
border-color: var(--primary);
}
.game-card-img {
width: 100%;
height: 180px;
object-fit: cover;
border-bottom: 2px solid var(--primary);
}
.game-card-content {
padding: 20px;
text-align: center;
}
.game-card-content h3 {
margin-bottom: 10px;
color: var(--text-main);
font-size: 20px;
}
.game-card-content p {
font-size: 14px;
color: var(--text-muted);
margin-bottom: 15px;
}
.ai-chat-window {
position: fixed;
bottom: 90px;
right: 30px;
width: 350px;
max-width: calc(100vw - 60px);
background: #ffffff;
border-radius: 16px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
display: none;
flex-direction: column;
z-index: 10000;
overflow: hidden;
border: 1px solid rgba(0,0,0,0.05);
}
.ai-chat-window.active {
display: flex;
animation: chatPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes chatPop {
0% { opacity: 0; transform: translateY(20px) scale(0.95); }
100% { opacity: 1; transform: translateY(0) scale(1); }
}
.ai-chat-header {
background: linear-gradient(135deg, #111a24, #0b1118);
padding: 18px 20px;
display: flex;
justify-content: space-between;
align-items: center;
color: #fff;
font-weight: 700;
font-size: 16px;
border-bottom: 3px solid var(--primary);
}
.ai-chat-close {
cursor: pointer;
font-size: 26px;
line-height: 1;
color: #a0aec0;
transition: color 0.2s;
}
.ai-chat-close:hover {
color: #fff;
}
.ai-chat-body {
padding: 20px;
height: 350px;
overflow-y: auto;
display: flex;
flex-direction: column;
gap: 15px;
background: #f8fafc;
}
.ai-msg {
padding: 12px 16px;
border-radius: 14px;
max-width: 85%;
font-size: 14.5px;
line-height: 1.5;
animation: fadeIn 0.3s ease;
box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.ai-msg.bot {
background: #ffffff;
align-self: flex-start;
color: var(--text-main);
border-bottom-left-radius: 4px;
border: 1px solid #e2e8f0;
}
.ai-msg.user {
background: var(--primary);
align-self: flex-end;
color: #ffffff;
border-bottom-right-radius: 4px;
}
.ai-options {
display: flex;
flex-direction: column;
gap: 8px;
margin-top: 10px;
}
.ai-option-btn {
background: transparent;
border: 1.5px solid var(--primary);
color: var(--primary);
padding: 10px 14px;
border-radius: 10px;
cursor: pointer;
font-size: 13.5px;
font-weight: 600;
text-align: left;
transition: all 0.2s ease;
}
.ai-option-btn:hover {
background: var(--primary);
color: #fff;
transform: translateX(3px);
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(5px); }
to { opacity: 1; transform: translateY(0); }
}
.ai-chat-footer {
display: flex;
padding: 15px;
background: #ffffff;
border-top: 1px solid #e2e8f0;
gap: 10px;
}
.ai-chat-input {
flex: 1;
background: #f1f5f9;
border: 1px solid #cbd5e1;
color: var(--text-main);
padding: 10px 15px;
border-radius: 20px;
font-size: 14px;
outline: none;
transition: border-color 0.2s;
}
.ai-chat-input:focus {
border-color: var(--primary);
}
.ai-chat-send {
background: var(--primary);
border: none;
color: #ffffff;
padding: 10px 18px;
border-radius: 20px;
cursor: pointer;
font-weight: 700;
transition: all 0.2s ease;
}
.ai-chat-send:hover {
background: #e67e22;
transform: scale(1.05);
}
.hero {
display: flex;
align-items: center;
justify-content: space-between;
padding: 150px 5% 100px;
gap: 50px;
}
.hero-content {
flex: 1;
}
.hero h1 {
font-size: clamp(32px, 8vw, 56px);
line-height: 1.1;
margin-bottom: 20px;
color: var(--secondary);
text-transform: uppercase;
}
.hero p {
font-size: 18px;
margin-bottom: 30px;
color: var(--text-muted);
}
.hero-img-container {
flex: 1;
}
.hero-img {
width: 100%;
max-width: 600px;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.features {
padding: 80px 5%;
text-align: center;
}
.section-title {
font-size: clamp(28px, 6vw, 36px);
color: var(--text-main);
margin-bottom: 50px;
text-align: center;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.feature-card {
background: var(--bg-card);
padding: 40px 30px;
border-radius: 15px;
border: 1px solid var(--border-color);
text-align: left;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
.feature-card h3 {
font-size: 24px;
color: var(--text-main);
margin-bottom: 15px;
}
.feature-card p {
color: var(--text-muted);
}
.split-block {
display: flex;
align-items: center;
justify-content: space-between;
padding: 80px 5%;
gap: 50px;
}
.split-block.reverse {
flex-direction: row-reverse;
}
@media (max-width: 768px) {
.split-block, .split-block.reverse {
flex-direction: column;
}
}
.split-text {
flex: 1;
}
.split-text h2 {
font-size: clamp(28px, 6vw, 36px);
color: var(--text-main);
margin-bottom: 20px;
}
.split-text p {
font-size: 18px;
color: var(--text-muted);
margin-bottom: 20px;
}
.split-img-container {
flex: 1;
}
.split-img {
width: 100%;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.game-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 5%;
  gap: 30px;
}
.game-info {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.game-preview {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.game-iframe-container {
  width: 100%;
  max-width: 1100px;
  height: 750px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  background: #000;
  position: relative;
}
.game-iframe-container iframe {
  width: 100%;
  height: calc(100% - 60px);
  border: none;
  display: block;
}
.game-disclaimer-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #07070a;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .game-iframe-container {
    height: 650px;
  }
}
@media (max-width: 768px) {
  .game-iframe-container {
    height: 520px;
  }
}
@media (max-width: 480px) {
  .game-iframe-container {
    height: 420px;
  }
}
.reviews {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}
.review-card {
background: var(--bg-card);
padding: 25px;
border-radius: 15px;
border: 1px solid var(--border-color);
position: relative;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
.review-header {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 15px;
}
.reviewer-img {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
border: 2px solid var(--secondary);
}
.reviewer-name {
font-weight: 700;
color: var(--text-main);
}
.review-date {
font-size: 12px;
color: var(--text-muted);
}
.stars {
color: var(--secondary);
margin-bottom: 10px;
}
.faq-list {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 8px;
margin-bottom: 15px;
overflow: hidden;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}
.faq-question {
padding: 20px;
font-weight: 700;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
color: var(--text-main);
}
.faq-answer {
padding: 0 20px;
max-height: 0;
overflow: hidden;
transition: all 0.3s ease;
color: var(--text-muted);
}
.faq-item.active .faq-answer {
padding: 20px;
max-height: 500px;
border-top: 1px solid var(--border-color);
}
.faq-item.active .faq-icon {
transform: rotate(45deg);
}
footer {
background: linear-gradient(135deg, #111a24, #0b1118);
padding: 80px 5% 40px;
border-top: 3px solid var(--primary);
margin-top: 80px;
color: #fff;
position: relative;
overflow: hidden;
}
footer::before {
content: '';
position: absolute;
top: -50px;
left: 50%;
transform: translateX(-50%);
width: 60%;
height: 100px;
background: var(--primary);
filter: blur(80px);
opacity: 0.15;
pointer-events: none;
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: flex-start;
max-width: 1200px;
margin: 0 auto;
gap: 60px;
flex-wrap: wrap;
position: relative;
z-index: 1;
}
.footer-col {
flex: 1;
min-width: 250px;
}
.footer-col h4 {
color: #fff;
font-size: 20px;
margin-bottom: 25px;
font-weight: 700;
position: relative;
display: inline-block;
letter-spacing: 0.5px;
}
.footer-col h4::after {
content: '';
position: absolute;
left: 0;
bottom: -8px;
width: 40px;
height: 3px;
background: var(--primary);
border-radius: 2px;
}
.footer-col p {
color: #a0aec0;
font-size: 15px;
line-height: 1.8;
}
.footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links li {
margin-bottom: 12px;
}
.footer-links li a {
color: #a0aec0;
font-size: 15px;
text-decoration: none;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
}
.footer-links li a::before {
content: '›';
color: var(--primary);
margin-right: 8px;
font-size: 18px;
font-weight: bold;
transition: transform 0.3s ease;
}
.footer-links li a:hover {
color: var(--primary);
transform: translateX(5px);
}
.footer-links li a:hover::before {
transform: translateX(3px);
}
.footer-bottom {
text-align: center;
padding-top: 30px;
margin-top: 60px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
color: #718096;
font-size: 14px;
line-height: 1.6;
position: relative;
z-index: 1;
}
.footer-bottom p {
margin: 0;
}
.age-18 {
margin-top: 20px;
max-width: 50px;
opacity: 0.8;
filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}
.modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
z-index: 2000;
visibility: hidden;
opacity: 0;
transition: all 0.3s ease;
backdrop-filter: blur(5px);
}
.modal-overlay.active {
visibility: visible;
opacity: 1;
}
.modal-box {
background: var(--bg-card);
width: 90%;
max-width: 400px;
padding: 40px;
border-radius: 15px;
border: 1px solid var(--border-color);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
position: relative;
transform: translateY(20px);
transition: transform 0.3s ease;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
}
.modal-overlay.active .modal-box {
transform: translateY(0);
}
.modal-close {
position: absolute;
top: 15px;
right: 20px;
font-size: 24px;
color: var(--text-muted);
cursor: pointer;
transition: color 0.3s ease;
}
.modal-close:hover {
color: var(--primary);
}
.modal-box h2 {
color: var(--text-main);
margin-bottom: 20px;
text-align: center;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
color: var(--text-muted);
margin-bottom: 8px;
font-size: 14px;
}
.form-group input, .form-group textarea {
width: 100%;
padding: 12px 15px;
background: rgba(0,0,0,0.05);
border: 1px solid var(--border-color);
border-radius: 8px;
color: var(--text-main);
font-size: 16px;
transition: border-color 0.3s ease;
outline: none;
}
.form-group input:focus, .form-group textarea:focus {
border-color: var(--primary);
}
.btn-primary {
background: var(--primary);
color: #fff;
box-shadow: 0 4px 0 #cc7000;
}
.btn-primary:hover {
background: #ff9d2e;
box-shadow: 0 4px 0 #cc7000, 0 0 15px var(--primary-glow);
}
.btn-secondary {
background: transparent;
border: 2px solid var(--primary);
color: var(--primary);
}
.btn-secondary:hover {
background: rgba(255, 140, 0, 0.1);
}
.btn-login {
background: transparent;
color: var(--text-main);
border: 2px solid var(--border-color);
box-shadow: none;
padding: 10px 22px;
}
.btn-login:hover {
background: rgba(0, 0, 0, 0.05);
border-color: var(--primary);
color: var(--primary);
box-shadow: none;
}
.btn-login:active {
transform: translateY(1px);
}
.btn-register {
background: linear-gradient(135deg, var(--primary), #ff6a00);
color: #fff !important;
box-shadow: 0 4px 0 #cc5200, 0 4px 15px rgba(255, 140, 0, 0.2);
border: none;
}
.btn-register:hover {
background: linear-gradient(135deg, #ff9d2e, #ff8c00);
box-shadow: 0 4px 0 #cc5200, 0 6px 20px rgba(255, 140, 0, 0.4);
}
.btn-register:active {
transform: translateY(4px);
box-shadow: 0 0 0 rgba(0,0,0,0.2);
}

/* App Store & Google Play Badges styling */
.store-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.store-badge-link {
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.store-badge-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 140, 0, 0.25);
}

.store-badge-link svg {
  display: block;
  height: 50px;
  width: auto;
  border-radius: 5px;
}