:root {
--header-height: 60px;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
background: var(--bg);
color: var(--text-main);
margin: 0;
padding-top: 0;
line-height: 1.6;
width: 100%;
}
header {
position: relative; max-width: 728px; margin: 0 auto; height: var(--header-height);
background: var(--header_bg); display: flex; align-items: center;
justify-content: space-between; padding: 0 5px; box-sizing: border-box;
border-bottom: 1px solid var(--border-primary); z-index: 1000;
}
.logo img { height: 58px; display: block; transition: 0.3s; }
.header-icons-group { display: flex; align-items: center; gap: 10px; }
.nav-icon-link {
display: flex;
align-items: center;
justify-content: center;
width: 38px;
height: 38px;
border-radius: 10px;
border: 1px solid var(--border-primary);
background: rgba(255, 255, 255, 0.02);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
text-decoration: none;
}
.nav-icon-link:hover {
border-color: var(--primary);
background: rgba(252, 211, 77, 0.08);
box-shadow: 0 0 10px rgba(252, 211, 77, 0.2);
}
.header-icons-group .icon {
width: 26px;
height: 26px;
fill: var(--primary);
opacity: 0.8;
transition: 0.3s;
}
.search-wrapper .icon,
.hamburger .icon {
width: 32px;
height: 32px;
}
.search-wrapper,
.hamburger {
display: flex;
align-items: center;
justify-content: center;
width: 46px;
height: 46px;
border-radius: 10px;
border: 1px solid var(--border-primary);
background: rgba(255, 255, 255, 0.02);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
cursor: pointer;
}
.search-wrapper:hover,
.hamburger:hover {
border-color: var(--primary);
background: rgba(252, 211, 77, 0.08);
box-shadow: 0 0 10px rgba(252, 211, 77, 0.2);
}
.header-icons-group .icon:hover { fill: #fff; opacity: 1; filter: drop-shadow(0 0 8px var(--primary)); }
.search-wrapper { position: relative; display: flex; align-items: center; }
.search-icon { cursor: pointer; z-index: 2; }
.search-input {
position: absolute; top: 0; left: 0; width: 0; height: 100%;
opacity: 0; border: none; background: var(--bg); color: #fff;
transition: 0.3s ease; padding: 0; z-index: 1003;
font-size: 18px; font-weight: 500; letter-spacing: 0.3px; box-sizing: border-box;
}
.search-input::placeholder { font-size: 18px; opacity: 0.7; }
.search-input:focus { outline: none; border-bottom: 2px solid var(--primary); }
header.search-active .search-input {
position: absolute; top: 0; left: 0; width: 100%; height: 100%;
opacity: 1; padding: 0 15px; z-index: 1003;
}
header.search-active .search-wrapper { position: static; }
header.search-active .logo,
header.search-active .nav-icon-link,
header.search-active .hamburger,
header.search-active .search-icon { opacity: 0; pointer-events: none; }
.hamburger { cursor: pointer; display: flex; align-items: center; z-index: 1002; transition: 0.3s; }
.icon-close { display: none; }
.hamburger.active .icon-menu { display: none; }
.hamburger.active .icon-close { display: block; }
nav#side-menu {
position: fixed;
top: 0;
right: -100%;
bottom: 0;
width: 280px;
background: var(--card-bg);
padding-top: 60px;
transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
box-shadow: -10px 0 30px rgba(0,0,0,0.5);
z-index: 1001;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
nav#side-menu {
overflow-y: auto;
-webkit-overflow-scrolling: touch;
}
nav#side-menu::-webkit-scrollbar {
width: 0;
}
nav#side-menu {
scrollbar-width: none;
}
nav#side-menu.active { right: 0; }
nav#side-menu ul {
list-style: none;
padding: 0 0 30px 0;
margin: 0;
}
nav#side-menu li { display: block !important; }
nav#side-menu a {
display: block; padding: 18px 25px; color: var(--text-main);
font-size: 15px; font-weight: 600; text-decoration: none;
border-bottom: 1px solid rgba(255, 255, 255, 0.03); transition: 0.3s;
}
nav#side-menu a:hover { background: rgba(252, 211, 77, 0.1); color: var(--primary); padding-left: 35px; }
.main-wrapper {
box-sizing: border-box !important;
display: flex;
flex-direction: column;
max-width: 728px;
margin: 0 auto;
padding: 20px 0px;
}
.content-area {
order: 3;
margin-top: 20px;
padding: 0 20px 20px 20px;
background: rgba(30, 41, 59, 0.4);
border: 1px solid var(--card-bg);
color: #cbd5e1;
}
.content-area h1, .content-area h2, .content-area h3,
.content-area h4, .content-area h5, .content-area h6 {
color: var(--primary);
margin-top: 1.3em;
margin-bottom: 0.5em;
font-weight: 800;
line-height: 1.2;
}
.content-area h1 { font-size: 1.8rem; border-bottom: 2px solid rgba(252, 211, 77, 0.2); padding-bottom: 10px; }
.content-area h2 { font-size: 1.6rem; }
.content-area h3 { font-size: 1.3rem; color: var(--accent); }
.content-area h4, .content-area h5, .content-area h6 { font-size: 1.1rem; }
.content-area p {
font-size: 1.05rem;
line-height: 1.8;
margin-bottom: 1.5rem;
}
.content-area strong {
color: #fff;
font-weight: 600;
}
.content-area a {
color: var(--accent);
text-decoration: none;
border-bottom: 1px dashed var(--accent);
transition: 0.3s;
}
.content-area a:hover {
color: var(--primary);
border-bottom-style: solid;
}
.content-area ul, .content-area ol {
margin: 1.5rem 0;
padding-left: 1.5rem;
}
.content-area li {
margin-bottom: 0.8rem;
position: relative;
list-style: none;
}
.content-area ul li::before {
content: "•";
color: var(--primary);
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}
.breadcrumb{
display:flex;
flex-wrap:wrap;
align-items:center;
gap:6px;
font-size:16px;
margin:10px 0 15px 0;
color:#fff;
}
.breadcrumb a{
text-decoration:none;
color:#D3D3D3;
transition:color .2s ease;
}
.breadcrumb a:hover{
color:#D3D3D3;
}
.breadcrumb a.active{
color:#fff;
font-weight:600;
pointer-events:none;
}
.breadcrumb .separator{
color:#aaa;
font-size:14px;
margin:0 2px;
}
.no-game-found {
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0, 0, 0, 0.45);
border: 1px dashed rgba(255, 255, 255, 0.35);
border-radius: 8px;
text-align: center;
box-sizing: border-box;
}
.no-game-found p {
margin: 0;
padding: 0 6px;
font-size: 11px;
font-weight: 600;
line-height: 1.2;
color: rgba(255, 255, 255, 0.85);
}
.gm-data-box{
margin:20px 0;
overflow:hidden;
}
.gm-data-item{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 14px;
border-bottom:1px solid #f1f1f1;
font-size:14px;
}
.gm-data-key{
font-weight:600;
color:#f1f1f1;
min-width:120px;
}
.gm-data-val{
text-align:right;
color:#f1f1f1;
}
.gm-vote-count{
font-size:12px;
color:#f1f1f1;
margin-left:6px;
}
.game-tags {
margin-top: 25px;
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.tag-btn {
background: rgba(255, 255, 255, 0.08);
color: var(--text-color) !important;
padding: 6px 16px;
border-radius: 8px;
font-size: 13px;
text-decoration: none !important;
border: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.2s ease;
font-weight: 600;
}
.tag-btn:hover {
background: var(--accent);
transform: translateY(-2px);
border-color: transparent;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.extra-images {
margin-top: 40px;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
align-items: start;
}
.game-figure {
margin: 0;
background: rgba(15, 23, 42, 0.4);
border-radius: 10px;
border: 1px solid var(--border-primary);
overflow: hidden;
display: block;
transition: all 0.3s ease;
height: fit-content;
}
.game-figure img {
width: 100%;
display: block;
border-bottom: 1px solid var(--border-primary);
}
.game-figure figcaption {
padding: 15px;
font-size: 0.9rem;
color: var(--text-dim);
line-height: 1.5;
background: rgba(30, 41, 59, 0.4);
}
.game-figure:hover {
transform: translateY(-5px);
border-color: var(--accent);
box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}
.game-figure figcaption strong {
color: var(--primary);
display: block;
margin-bottom: 5px;
font-size: 1rem;
}
.series-header {
position: relative;
overflow: visible;
text-align: center;
}
.series-header h2 {
font-size: 1.7rem;
display: inline-block;
padding-bottom: 10px;
position: relative;
}
.series-header h2::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 4px;
background: var(--primary);
border-radius: 2px;
box-shadow: 0 0 10px var(--primary);
}
.series-section {
order: 1;
width: 100%;
display: flex;
flex-direction: column;
}
.game-grid {
display: grid;
grid-auto-flow: dense;
gap: 12px;
margin: 0 auto 50px auto;
justify-content: center;
width: 100%;
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
grid-auto-rows: minmax(180px, auto);
justify-content: center;
}
.large, .medium, .small {
width: 100% !important;
height: 100% !important;
aspect-ratio: 1 / 1;
}
.large { grid-column: span 2; grid-row: span 2; }
.medium { grid-column: span 1; grid-row: span 1; }
.small { grid-column: span 1; grid-row: span 1; }
.game-card {
position: relative;
overflow: hidden;
border-radius: 10px;
background: var(--card-bg);
cursor: pointer;
transition: box-shadow .25s ease;
display: block;
text-decoration: none;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
transform: translate3d(0, 0, 0);
}
.game-card img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
border-radius: 10px;
}
.game-card:hover {
z-index: 10;
box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.game-card::after {
content: "";
position: absolute;
top: 120%;
left: -120%;
width: 200%;
height: 200%;
background: linear-gradient(
45deg,
transparent 45%,
rgba(255,255,255,0.6) 48%,
rgba(255,255,255,0.9) 50%,
rgba(255,255,255,0.6) 52%,
transparent 55%
);
transform: rotate(0deg);
transition: top 1s cubic-bezier(.25,.8,.25,1),
left 1s cubic-bezier(.25,.8,.25,1);
pointer-events: none;
border-radius: 10px;
}
.game-card:hover::after {
top: -120%;
left: 120%;
}
.game-title-overlay {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
padding: 5px 0;
font-size: 14px;
font-weight: 600;
background-color: rgba(0,0,0,0.6);
color: var(--primary);
text-align: center;
box-sizing: border-box;
visibility: hidden;
opacity: 0;
transition: visibility 0.3s, opacity 0.3s ease;
}
.game-card:hover .game-title-overlay {
visibility: visible;
opacity: 1;
}
.badge { position: absolute; top: 10px; right: 10px; background: var(--accent); color: #000; font-size: 0.75rem; padding: 4px 10px; border-radius: 8px; font-weight: 800; z-index: 2; }
.category-description {
display: block;
overflow: hidden;
}
.category-description .description-banner {
float: right;
width: 320px;
margin-left: 20px;
margin-bottom: 15px;
padding: 4px;
box-sizing: border-box;
background: #ffffff;
border: 1px solid rgba(0,0,0,0.1);
border-radius: calc(8px + 2px);
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.category-description .description-banner img {
max-width: 100%;
height: auto;
border-radius: 8px;
display: block;
}
.category-description .description-content {
line-height: 1.6;
}
.pagination-container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 40px;
margin-bottom: 10px;
width: 100%;
order: 1;
}
.pagination {
display: flex;
list-style: none;
padding: 0;
margin: 0;
gap: 8px;
flex-wrap: wrap;
justify-content: center;
}
.pagination li.dots {
display: flex;
align-items: center;
justify-content: center;
padding: 0 10px;
color: rgba(255, 255, 255, 0.5);
font-weight: bold;
font-size: 18px;
}
.pagination li {
display: flex;
}
.pagination li a {
display: flex;
align-items: center;
justify-content: center;
min-width: 45px;
height: 45px;
padding: 0 15px;
background: rgba(255,255,255,0.1);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
text-decoration: none;
font-weight: 600;
font-size: 15px;
transition: var(--transition);
color: rgba(255, 255, 255, 0.8);
}
.pagination li a:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
color: #fff;
border-color: rgba(255, 255, 255, 0.3);
}
.pagination li.active a {
background: var(--accent, #48477a);
color: #fff;
border-color: transparent;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.search-section{
width:100%;
margin:20px 0;
display:flex;
justify-content:center;
}
.search-sec-form{
position:relative;
width:100%;
max-width:400px;
}
.search-sec-input{
width:100%;
padding:12px 44px 12px 16px;
font-size:15px;
border:1px solid #ddd;
border-radius:6px;
outline:none;
background:#fff;
transition:all .2s ease;
box-sizing:border-box;
}
.search-sec-button{
position:absolute;
top:50%;
right:0;
transform:translateY(-50%);
width:40px;
height:100%;
border:none;
background: var(--primary);
border-radius:0 6px 6px 0;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
transition:background .2s ease;
}
.search-sec-input:focus{
border-color:#4c8bf5;
box-shadow:0 0 0 2px rgba(76,139,245,0.15);
}
.search-sec-button:hover{
background:var(--accent);
}
.search-sec-icon{
width:24px;
height:24px;
fill:#fff;
}
.category-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
gap:14px;
margin:20px auto 50px;
width:100%;
}
.category-card{
display:flex;
align-items:center;
gap:14px;
padding:10px;
background:var(--card-bg);
border-radius:10px;
text-decoration:none;
transition:.25s;
box-shadow:0 2px 6px rgba(0,0,0,.25);
}
.category-card:hover{
transform:translateY(-3px);
box-shadow:0 8px 18px rgba(0,0,0,.45);
}
.category-card img{
width:100px;
height:100px;
object-fit:cover;
border-radius:8px;
flex-shrink:0;
}
.category-title{
font-size:16px;
font-weight:600;
color:var(--primary);
}
footer {
max-width: 728px;
margin: 40px auto 0 auto;
background: var(--footer-bg);
padding: 20px;
border-top: 1px solid var(--border-primary);
color: var(--text-dim);
box-sizing: border-box;
}
.footer-container {
width: 100%;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 20px;
text-align: left;
}
.footer-bottom {
width: 100%;
margin: 20px auto 0 auto;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.05);
text-align: center;
font-size: 0.8rem;
}
.footer-column .footer-title {
color: var(--primary);
margin-bottom: 20px;
text-transform: uppercase;
font-size: 1rem;
letter-spacing: 1px;
font-weight: 700;
line-height: 1.2;
}
.footer-column ul {
list-style: none;
padding: 0;
margin: 0;
}
.footer-column ul li {
margin-bottom: 12px;
}
.footer-column ul li a {
color: var(--text-dim);
text-decoration: none;
font-size: 0.85rem;
transition: 0.3s;
}
.footer-column ul li a:hover {
color: var(--primary);
padding-left: 5px;
}
.game-container {
background: var(--card-bg);
overflow: hidden;
border: 1px solid var(--border-primary);
box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.game-viewport {
position: relative;
width: 100%;
background: #000;
aspect-ratio: 16 / 9;
}
.game-viewport iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
.svg-icon {
width: 24px;
height: 24px;
fill: currentColor;
display: inline-block;
vertical-align: middle;
}
.game-bar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px;
background: #16213e;
border-top: 1px solid var(--border-primary);
gap: 15px;
}
.game-title {
margin: 0;
font-size: 0.9rem;
color: var(--primary);
font-weight: 800;
}
.game-actions {
display: flex;
align-items: center;
gap: 8px;
}
.action-btn {
background: var(--card-bg);
color: var(--text-main);
border: 1px solid var(--border-primary);
padding: 6px 10px;
border-radius: 8px;
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
gap: 8px;
font-size: 0.85rem;
font-weight: 600;
}
.vote-group {
display: flex;
background: rgba(255, 255, 255, 0.05);
border-radius: 8px;
overflow: hidden;
border: 1px solid var(--border-primary);
}
.vote-group .action-btn { border: none; border-radius: 0; background: transparent; }
.vote-group .like { border-right: 1px solid var(--border-primary); }
.action-btn:hover { background: var(--border-primary); border-color: var(--primary); }
.like:hover { color: #4ade80; }
.dislike:hover { color: #f87171; }
.favorite:hover { color: #f472b6; }
.action-btn.active .icon-heart {fill:  red;}
.report:hover { color: #fcd34d; }
.fullscreen-btn { background: var(--primary); color: #000; border: none; }
.fullscreen-btn:hover { background: #fff; transform: scale(1.05); }
.play-overlay{
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0,0,0,.55);
z-index: 10;
}
.play-btn{
padding: 16px 34px;
font-size: 20px;
font-weight: 800;
border-radius: 10px;
border: none;
cursor: pointer;
background: var(--card-bg);
color: var(--text-main);
display: flex;
flex-direction: column;
align-items: center;
gap: 12px;
position: relative;
}
.play-img{
width: 212px;
height: 212px;
object-fit: cover;
border-radius: 12px;
box-shadow: 0 10px 25px rgba(0,0,0,0.4);
pointer-events: none;
}
#gameContainer:fullscreen{
width:100%;
height:100%;
}
#gameContainer:fullscreen .game-viewport{
height:calc(100vh - 58px);
}
#gameContainer:fullscreen .share,
#gameContainer:fullscreen .report{
display:none;
}
.ad-wrapper{
width:100%;
margin-left:auto;
margin-right:auto;
}
.ad-top{
margin-bottom:30px;
display:flex;
justify-content:center;
}
.ad-bottom{
margin-top:30px;
}
.ad-slot{
width:100%;
max-height:300px;
min-height:90px;
display:flex;
align-items:center;
justify-content:center;
overflow:hidden;
}
.ad-slot ins{
width:100% !important;
}
.ad-top .ad-slot{
max-width:728px;
height:90px;
}
.ad-top .ad-slot ins{
width:728px !important;
max-width:100%;
height:90px !important;
}
.game-description-box {
background: rgba(30, 41, 59, 0.4);
padding: 40px;
border-radius: 10px;
border: 1px solid var(--card-bg);
}
.game-description-box h2 {
color: var(--primary);
margin-top: 0;
font-size: 1.5rem;
}
.game-description-box p {
color: var(--text-dim);
line-height: 1.8;
font-size: 1.05rem;
}
@media (max-width: 900px) {
.extra-images {
grid-template-columns: 1fr;
gap: 15px;
}
.game-bar { flex-direction: column; text-align: center; }
.series-section {
padding: 0 5px;
box-sizing: border-box;
}
.desktop-nav { display: none; }
}
@media (max-width: 768px) {
.category-description {
display: flex;
flex-direction: column;
align-items: center;
}
.category-description .description-banner {
float: none;
width: 100%;
max-width: 512px;
margin: 0 auto 20px auto;
padding: 4px;
box-sizing: border-box;
background: #fff;
border: 1px solid rgba(0,0,0,0.08);
border-radius: calc(8px + 2px);
box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.category-description .description-banner img {
width: 100%;
height: auto;
display: block;
border-radius: 8px;
}
.category-description .description-content {
width: 100%;
text-align: left;
line-height: 1.6;
}
.pagination-container {
margin: 25px 0;
}
.pagination li a {
min-width: 40px;
height: 40px;
font-size: 14px;
padding: 0 10px;
}
.pagination {
gap: 6px;
}
.ad-top{
display:none;
}
.game-viewport {
aspect-ratio: 4 / 3;
}
.game-bar {
flex-direction: column;
gap: 15px;
text-align: center;
}
.game-bar .fullscreen-btn{
display:none;
}
}
@media (max-width: 600px) {
.nav-icon-link {
display:none;
}
.breadcrumb{
font-size:14px;
line-height:1.4;
}
.gm-data-item{
flex-direction:column;
align-items:flex-start;
gap:4px;
}
.gm-data-val{
text-align:left;
}
.category-grid{
grid-template-columns:1fr;
}
.category-card{
gap:12px;
}
.category-title{
font-size:15px;
}
.page-content, .contact-section { padding: 15px; width: 100%; }
.contact-section button { max-width: 100%; }
.page-content h1, .contact-section h1 {
font-size: 1.6rem;
}
.page-content h2 {
font-size: 1.4rem;
}
.page-content h3 {
font-size: 1.2rem;
}
}
@media (max-width: 390px) {
.game-grid {
grid-template-columns: repeat(auto-fill, minmax(152px, 1fr));
grid-auto-rows: minmax(152px, auto);
justify-content: center;
}
}
.side-panel{
position: fixed;
top:0;
right:-100%;
width:320px;
height:100vh;
background:var(--card-bg);
z-index:2000;
transition:0.35s ease;
box-shadow:-10px 0 20px rgba(0,0,0,0.6);
display:flex;
flex-direction:column;
}
.side-panel.active{
right:0;
}
.panel-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 20px;
border-bottom:1px solid var(--border-primary);
}
.panel-header h3{
margin:0;
font-size:1rem;
color:var(--primary);
}
.panel-close{
background:none;
border:none;
color:#fff;
font-size:20px;
cursor:pointer;
}
.panel-content{
padding:20px;
}
.share-buttons{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
margin-bottom:20px;
}
.share-btn{
text-decoration:none;
padding:10px;
text-align:center;
border-radius:8px;
background: var(--card-bg);
border:1px solid var(--border-primary);
color:#fff;
font-size:0.85rem;
}
.share-btn:hover{
background:var(--border-primary);
}
.copy-link{
display:flex;
flex-direction:column;
gap:8px;
}
.copy-link input{
width:100%;
background: var(--bg);
border:1px solid var(--border-primary);
color:#fff;
padding:8px;
border-radius:6px;
box-sizing:border-box;
}
.copy-link button{
width:100%;
background:var(--primary);
border:none;
padding:10px;
border-radius:6px;
cursor:pointer;
font-weight:600;
}
.copy-link button:hover{
background:var(--accent);
}
.report-form{
display:flex;
flex-direction:column;
gap:12px;
}
.report-form select,
.report-form textarea{
background: var(--bg);
border:1px solid var(--border-primary);
color:#fff;
padding:10px;
border-radius:6px;
}
.submit-report{
background:var(--primary);
border:none;
padding:10px;
border-radius:6px;
cursor:pointer;
font-weight:700;
}
#panel-overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,0.6);
opacity:0;
visibility:hidden;
transition:.3s;
z-index:1999;
}
#panel-overlay.active{
opacity:1;
visibility:visible;
}
#toast{
position:fixed;
bottom:30px;
left:50%;
transform:translateX(-50%);
background:#111;
color:#fff;
padding:10px 18px;
border-radius:6px;
font-size:14px;
opacity:0;
pointer-events:none;
transition:all .3s ease;
z-index:9999;
}
#toast.show{
opacity:1;
bottom:50px;
}
.page-content, .contact-section {
width: 100%;
margin: 20px auto;
padding: 5px 20px 20px 20px;
background: rgba(30,41,59,0.4);
border: 1px solid var(--card-bg);
box-sizing: border-box;
}
.contact-section form {
display: flex;
flex-direction: column;
gap: 16px;
width: 100%;
}
.contact-section input,
.contact-section textarea,
.contact-section select {
width: 100%;
padding: 12px 14px;
border-radius: 8px;
border: 1px solid var(--border-primary);
background: var(--card-bg);
color: #f8f8f8;
font-size: 1rem;
box-sizing: border-box;
}
.contact-section textarea { min-height: 120px; resize: vertical; }
.contact-section button {
width: 100%;
max-width: 300px;
align-self: center;
padding: 14px 24px;
border-radius: 8px;
border: none;
background: var(--primary, #22c55e);
color: #000;
font-weight: 700;
cursor: pointer;
transition: all 0.2s ease;
}
.contact-section button:hover {
background: #4ade80;
transform: scale(1.02);
}
.page-content h1, .contact-section h1 {
font-size: 1.7rem;
font-weight: 800;
margin-bottom: 20px;
color: var(--primary, #22c55e);
}
.page-content h2 {
font-size: 1.5rem;
margin-top: 15px;
margin-bottom: 15px;
font-weight: 700;
color: #ffffff;
}
.page-content h3 {
font-size: 1.3rem;
margin-top: 15px;
margin-bottom: 15px;
font-weight: 600;
color: #d1d5db;
}
.page-content p {
margin-bottom: 16px;
}
.page-content a {
color: var(--primary, #22c55e);
text-decoration: underline;
}
.page-content a:hover {
color: #4ade80;
}
.page-content ul, .page-content ol {
padding-left: 20px;
margin-bottom: 16px;
}
.page-content li {
margin-bottom: 8px;
}
:root {
--pwa-bg: #ffffff;
--pwa-text: #202124;
--pwa-shadow: rgba(60, 64, 67, 0.3);
--pwa-btn-primary: #1a73e8;
--pwa-btn-text: #ffffff;
--pwa-btn-secondary: #f1f3f4;
--pwa-secondary-text: #5f6368;
}
@media (prefers-color-scheme: dark) {
:root {
--pwa-bg: #2d2e31;
--pwa-text: #e8eaed;
--pwa-shadow: rgba(0, 0, 0, 0.5);
--pwa-btn-primary: #8ab4f8;
--pwa-btn-text: #202124;
--pwa-btn-secondary: #3c4043;
--pwa-secondary-text: #9aa0a6;
}
}
.pwa-banner {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
width: calc(100% - 40px);
max-width: 450px;
background: var(--pwa-bg);
color: var(--pwa-text);
padding: 10px;
border-radius: 12px;
box-shadow: 0 4px 12px var(--pwa-shadow);
z-index: 9999;
font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
display: none;
box-sizing: border-box;
}
.pwa-content {
display: flex;
flex-direction: column;
gap: 15px;
}
.pwa-text {
font-size: 1rem;
font-weight: 500;
line-height: 1.4;
}
.buttons-container {
display: flex;
justify-content: flex-end;
gap: 12px;
}
.pwa-banner button {
padding: 8px 20px;
border: none;
border-radius: 6px;
cursor: pointer;
font-size: 0.9rem;
font-weight: 600;
transition: background 0.2s;
}
.pwa-banner .btn-primary {
background: var(--pwa-btn-primary);
color: var(--pwa-btn-text);
}
.pwa-banner .btn-secondary {
background: var(--pwa-btn-secondary);
color: var(--pwa-text);
}
.pwa-banner .btn-primary:hover { opacity: 0.9; }
.pwa-banner .btn-secondary:hover { filter: brightness(0.9); }