body {
background-color: #ebebeb;
margin: 0;
padding: 0;
}
#wrap {
width: 100%;
margin: 0px auto;
} #header {
width: 100%;
height: auto; } .headerleft,
.headerright {
width: 100%;
float: none;
text-align: center;
margin: 0;
padding: 10px 0;
}
.gamebusca,
.gamerela {
width: 48%; float: left;
margin: 1%;
height: auto;
} @media screen and (max-width: 480px) {
.gamebusca,
.gamerela {
width: 100%;
margin: 5px 0;
}
} #cookie-consent-banner {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #282d3d;
color: #f8f8f8;
padding: 15px 25px;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 1000;
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
font-family: Arial, sans-serif;
}
#cookie-consent-banner p {
margin: 0;
font-size: 0.9em;
}
#cookie-consent-banner a {
color: #f8681d;
text-decoration: underline;
margin-left: 5px;
}
#cookie-accept-button {
background-color: #f8681d;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 0.9em;
transition: background-color 0.3s;
}
#cookie-accept-button:hover {
background-color: #e65c12;
}
#footer {
width: 100%;
height: auto;
color: #fff;
background: #282d3d;
padding: 20px;
margin: 10px auto;
border-bottom: 10px ridge #f8681d;
box-shadow: 0px 0px 8px #f4902a;
border-radius: 5px;
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
text-align: center;
}
#footer-info {
width: 100%;
max-width: 600px;
font-size: 14px;
line-height: 1.5;
}
.footer-trademark {
width: 100%;
font-size: 12px;
}
.footer-trademark a {
color: #fff;
text-decoration: none;
}
.footer-list-container {
width: 100%;
}
.footer-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 10px;
align-items: center;
}
.footer-list li {
width: 100%;
max-width: 300px;
}
.footer-button {
display: block;
width: 100%;
background-color: #f8681d;
color: #fff;
text-decoration: none;
padding: 10px 15px;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s;
}
.footer-button:hover {
background-color: #ff8544;
}
.discord-icon {
position: fixed;
z-index: 2147483000;
cursor: pointer;
right: 10px;
bottom: 10px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
border-radius: 50%;
transition: transform 0.3s;
}
.discord-icon:hover {
transform: scale(1.1);
}
.discord-icon img {
height: 70px;
width: 70px;
border-radius: 50%;
}
.social-icons-container {
display: flex;
gap: 15px;
margin-bottom: 20px;
}
.social-icon {
width: 40px;
height: 40px;
transition: transform 0.3s ease;
}
.social-icon:hover {
transform: scale(1.1);
}
.floating-banner {
position: fixed;
bottom: 20px;
right: 20px;
width: 320px;
height: auto;
background-color: #F8F8F8;
border: 1px solid #CCCCCC;
border-radius: 8px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
z-index: 9999;
display: none;
animation: fadeIn 0.5s ease-in-out;
}
.banner-content {
padding: 10px;
text-align: center;
}
.close-banner {
position: absolute;
top: 5px;
right: 10px;
color: #fff;
font-size: 20px;
font-weight: bold;
background-color: #333;
border-radius: 50%;
width: 25px;
height: 25px;
line-height: 25px;
text-align: center;
cursor: pointer;
transition: transform 0.2s ease;
}
.close-banner:hover {
transform: scale(1.1);
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
@media screen and (min-width: 768px) {
#footer {
width: 1140px;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
padding: 10px;
height: 100px;
}
#footer-info {
width: 45%;
text-align: left;
}
.footer-list-container {
width: 320px;
text-align: right;
}
.footer-list {
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-end;
}
.footer-list li {
width: auto;
max-width: none;
}
}