:root {
--primary: #fcd34d; --bg: #0f172a; --card-bg: #1e293b;
--accent: #38bdf8; --text-main: #f8fafc; --text-dim: #94a3b8;
--header-height: 50px;
}
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: var(--header-height);
line-height: 1.6;
}
header {
position: fixed; top: 0; left: 0; width: 100%; height: var(--header-height);
background: rgba(30, 41, 59, 0.95); backdrop-filter: blur(10px);
display: flex; align-items: center; justify-content: space-between;
padding: 0 5%; box-sizing: border-box; z-index: 1000; border-bottom: 1px solid #334155;
}
.logo img{
height:48px;
display:block;
}
.header-icons{
display:flex;
align-items:center;
margin-left:15px;
}
.search-wrapper{
position:relative;
display:flex;
align-items:center;
}
.search-icon{
width:24px;
height:24px;
fill:var(--primary);
cursor:pointer;
}
.search-input{
position:absolute;
top:36px;
right:0;
width:250px;
height:36px;
opacity:0;
pointer-events:none;
padding:6px 10px;
border:1px solid #334155;
background:#0f172a;
color:#fff;
transition:0.25s;
border-radius:0;
outline:none;
box-shadow:none;
transform:translateY(-8px);
}
.search-wrapper.active .search-input{
opacity:1;
pointer-events:auto;
transform:translateY(0);
}
.hamburger{
cursor:pointer;
display:flex;
align-items:center;
justify-content:center;
}
.icon-menu,
.icon-close{
width:24px;
height:24px;
fill:var(--primary);
}
.icon-close{
display:none;
}
.hamburger.active .icon-menu{
display:none;
}
.hamburger.active .icon-close{
display:block;
}
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); text-decoration: none; text-transform: uppercase; letter-spacing: 1px; flex-shrink: 0; }
.nav-container { display: flex; align-items: center; }
.desktop-nav { list-style: none; display: flex; margin: 0; padding: 0; gap: 15px; }
.desktop-nav li { display: none; }
.desktop-nav li:nth-child(-n+6) { display: block; }
.desktop-nav a { text-decoration: none; color: var(--text-main); font-size: 0.85rem; font-weight: 600; transition: 0.3s; white-space: nowrap; }
.desktop-nav a:hover { color: var(--primary); }
.hamburger { display: flex; cursor: pointer; flex-direction: column; gap: 5px; margin-left: 20px; z-index: 1002; }
.hamburger span { display: block; width: 22px; height: 3px; background: var(--primary); border-radius: 3px; transition: 0.3s; }
nav#side-menu {
position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
background: var(--card-bg); padding-top: 50px; transition: 0.4s ease-in-out;
box-shadow: -10px 0 20px rgba(0,0,0,0.5); z-index: 1001;
overflow-y: auto;
-ms-overflow-style: none;
scrollbar-width: none;
}
nav#side-menu::-webkit-scrollbar {
display: none;
}
nav#side-menu.active { right: 0; }
nav#side-menu ul { list-style: none; padding: 0; margin: 0; padding-bottom: 100px; }
nav#side-menu li { display: block; }
@media (min-width: 901px) {
nav#side-menu li:nth-child(-n+6) { display: none; }
}
nav#side-menu a { display: block; padding: 15px 30px; text-decoration: none; color: var(--text-main); font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.05); }
nav#side-menu a:hover { background: rgba(252, 211, 77, 0.1); color: var(--primary); }
.main-wrapper {
--main-padding:20px;
display: flex;
flex-direction: column;
max-width: 900px;
margin: 0 auto;
padding: var(--main-padding) 0px;
width: 100%;
box-sizing: border-box;
}
.content-area {
order: 3;
margin-top: 20px;
padding: 20px;
background: rgba(30, 41, 59, 0.4);
border: 1px solid #1e293b;
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.5em;
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:13px;
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:12px;
margin:0 2px;
}
@media (max-width:600px){
.breadcrumb{
font-size:12px;
line-height:1.4;
}
}
.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: var(--radius);
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;
}
@media (max-width:600px){
.gm-data-item{
flex-direction:column;
align-items:flex-start;
gap:4px;
}
.gm-data-val{
text-align:left;
}
}
.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 #334155;
overflow: hidden;
display: block;
transition: all 0.3s ease;
height: fit-content;
}
.game-figure img {
width: 100%;
display: block;
border-bottom: 1px solid #334155;
}
.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;
}
.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-template-columns: repeat(auto-fit, 100px);
grid-auto-rows: 100px;
grid-auto-flow: dense;
gap: 12px;
margin: 0 auto 50px auto;
justify-content: center;
width: 100%;
max-width: 900px;
}
.large {
grid-column: span 3;
grid-row: span 3;
width: 324px;
height: 324px;
}
.medium {
grid-column: span 2;
grid-row: span 2;
width: 212px;
height: 212px;
}
.small {
grid-column: span 1;
grid-row: span 1;
width: 100px;
height: 100px;
}
.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:flex;
gap:20px;
align-items:flex-start;
}
.category-description .description-content{
flex:1;
}
.category-description .description-banner{
flex:0 0 320px;
}
.category-description .description-banner img{
max-width:100%;
height:auto;
border-radius:var(--radius);
display:block;
}
@media (max-width:768px){
.category-description{
flex-direction:column;
}
.category-description .description-banner{
width:100%;
}
}
.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: var(--radius);
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);
}
@media (max-width: 768px) {
.pagination-container {
margin: 25px 0;
}
.pagination li a {
min-width: 40px;
height: 40px;
font-size: 14px;
padding: 0 10px;
}
.pagination {
gap: 6px;
}
}
.search-section{
width:100%;
margin:20px 0;
display:flex;
justify-content:center;
}
.search-sec-form{
position:relative;
width:100%;
max-width:500px;
}
.search-sec-input{
width:100%;
padding:12px 48px 12px 16px;
font-size:15px;
border:1px solid #ddd;
border-radius:6px;
outline:none;
background:#fff;
transition:all .2s ease;
}
.search-sec-input:focus{
border-color:#4c8bf5;
box-shadow:0 0 0 2px rgba(76,139,245,0.15);
}
.search-sec-button{
position:absolute;
top:50%;
right:6px;
transform:translateY(-50%);
width:36px;
height:36px;
border:none;
background:#4c8bf5;
border-radius:5px;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
transition:background .2s ease;
}
.search-sec-button:hover{
background:#3a6fd8;
}
.search-sec-icon{
width:18px;
height:18px;
fill:#fff;
}
.category-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
gap:14px;
margin:20px auto 50px;
max-width:900px;
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);
}
@media (max-width:600px){
.category-grid{
grid-template-columns:1fr;
}
.category-card{
gap:12px;
}
.category-title{
font-size:15px;
}
}
footer {
background: #0a0f1d;
padding: 40px 5% 30px;
border-top: 1px solid #334155;
margin-top: 40px;
color: var(--text-dim);
}
.footer-container {
max-width: 900px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
text-align: left;
}
.footer-column h4 {
color: var(--primary);
margin-bottom: 20px;
text-transform: uppercase;
font-size: 0.9rem;
letter-spacing: 1px;
}
.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;
}
.footer-bottom {
max-width: 900px;
margin: 40px auto 0;
padding-top: 20px;
border-top: 1px solid rgba(255,255,255,0.05);
text-align: center;
font-size: 0.8rem;
}
.game-container {
background: var(--card-bg);
overflow: hidden;
border: 1px solid #334155;
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: 20px;
height: 20px;
fill: currentColor;
display: inline-block;
vertical-align: middle;
}
.game-bar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
background: #16213e;
border-top: 1px solid #334155;
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: #1e293b;
color: var(--text-main);
border: 1px solid #334155;
padding: 8px 12px;
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 #334155;
}
.vote-group .action-btn { border: none; border-radius: 0; background: transparent; }
.vote-group .like { border-right: 1px solid #334155; }
.action-btn:hover { background: #334155; 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%;
max-width:900px;
margin-left:auto;
margin-right:auto;
}
.ad-top{
margin-bottom:30px;
}
.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;
}
@media (max-width: 900px) {
.game-grid {
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; }
.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; }
}
.game-description-box {
background: rgba(30, 41, 59, 0.4);
padding: 40px;
border-radius: 10px;
border: 1px solid #1e293b;
}
.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: 768px) {
.game-viewport {
aspect-ratio: 4 / 3;
}
.game-bar {
flex-direction: column;
gap: 15px;
text-align: center;
}
.game-bar .fullscreen-btn{
display:none;
}
.search-wrapper{
position:static;
}
.search-input{
position:absolute;
top:49px;
left:0;
right:0;
width:100%;
}
}
@media (max-width: 600px) {
.footer-container { grid-template-columns: 1fr 1fr; gap: 30px; }
.footer-bottom { text-align: center; }
}
@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 #334155;
}
.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:#1e293b;
border:1px solid #334155;
color:#fff;
font-size:0.85rem;
}
.share-btn:hover{
background:#334155;
}
.copy-link{
display:flex;
flex-direction:column;
gap:8px;
}
.copy-link input{
width:100%;
background:#0f172a;
border:1px solid #334155;
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:#0f172a;
border:1px solid #334155;
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;
}
.page-content, .contact-section {
max-width: 900px;
width: 100%;
margin: 20px auto;
padding: 5px 20px 20px 20px;
background: rgba(30,41,59,0.4);
border: 1px solid #1e293b;
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 #334155;
background: #1e293b;
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;
}
@media(max-width:600px){
.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;
}
}