﻿.container{
display:flex;
gap:30px;
padding:30px;
max-width:1400px;
width:100%;
margin:0 auto;
box-sizing:border-box;
align-items:flex-start;
}

.left{
width:260px;
background:linear-gradient(180deg,#1e293b,#111827);
padding:20px;
border-radius:16px;
border:1px solid rgba(255,255,255,0.1);
box-shadow:0 15px 35px rgba(0,0,0,0.6);
transition:0.25s;
}

.center{
flex:1;
background:linear-gradient(180deg,#111827,#1c1c29);
padding:25px;
border-radius:16px;
border:1px solid rgba(56,189,248,0.15);
box-shadow:
0 15px 35px rgba(0,0,0,0.7),
0 0 15px rgba(56,189,248,0.15);
}

.right{
width:260px;
background:linear-gradient(180deg,#1e293b,#111827);
padding:20px;
border-radius:16px;
border:1px solid rgba(255,255,255,0.1);
box-shadow:0 15px 35px rgba(0,0,0,0.6);
transition:0.25s;
}

.left:hover,
.right:hover{
transform:translateY(-4px);
box-shadow:0 20px 40px rgba(0,0,0,0.7);
border:1px solid rgba(249,115,22,0.5);
}

@media(max-width:1000px){
.container{
flex-direction:column;
padding:20px;
}
.left,
.center,
.right{
width:100%;
}
}




.rank-title{
text-align:center;
margin-bottom:15px;
font-size:18px;
}

.rank-box{
display:flex;
flex-direction:column;
gap:8px;
max-height:450px;
overflow:auto;
padding-right:5px;
}

.rank-top{
display:flex;
align-items:center;
width:100%;
}

.rank-player{
display:flex;
flex-direction:column;
gap:3px;
background:rgba(255,255,255,0.05);
padding:4px 8px;
border-radius:10px;
font-size:14px;
transition:0.25s;
border:1px solid rgba(255,255,255,0.05);
}

.rank-player:hover{
transform:translateX(4px);
background:rgba(255,255,255,0.08);
}

.rank-pos{
font-weight:bold;
opacity:0.8;
width:35px;
}

.rank-name{
flex:1;
font-weight:600;
}

.rank-level{
font-weight:bold;
opacity:0.9;
}

/* destaque top 3 */

.rank-1{
background:linear-gradient(90deg,#facc15,#ca8a04);
color:#111;
}

.rank-2{
background:linear-gradient(90deg,#e5e7eb,#9ca3af);
color:#111;
}

.rank-3{
background:linear-gradient(90deg,#f97316,#c2410c);
color:white;
}



.footer{
    text-align: center;
    padding: 20px;
    background: linear-gradient(180deg,#111827,#1c1c29);
    color: #cbd5f5;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 -5px 15px rgba(0,0,0,0.3);
}



.banner{
    position: relative;
    height: 200px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg,#111827,#1c1c29);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    overflow: hidden;
}

/* Logo com brilho */
.banner-logo{
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: glow 2.5s ease-in-out infinite alternate;
}

/* Animação de brilho */
@keyframes glow{
    0%{
        filter: drop-shadow(0 0 5px #3b82f6);
    }
    50%{
        filter: drop-shadow(0 0 15px #3b82f6);
    }
    100%{
        filter: drop-shadow(0 0 5px #3b82f6);
    }
}

/* Raio animado atrás da logo */
.rays{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.ray{
    position: absolute;
    width: 2px;
    height: 40px;
    background: linear-gradient(white, rgba(255,255,255,0));
    top: -50px;
    animation: fall 1s linear infinite;
    opacity: 0.4;
}

/* Animação dos raios caindo */
@keyframes fall{
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }
    50%{
        opacity: 0.6;
    }
    100%{
        transform: translateY(250px) rotate(20deg);
        opacity: 0;
    }
}



.server-container{
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.server-container h2{
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
    color: #f1f5f9;
}

.server-info{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item{
    background: linear-gradient(135deg,#111827,#1c1c29);
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.info-item:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
}

.info-title{
    font-weight: 700;
    color: #FFD700;
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.info-desc{
    color: #e2e8f0;
    font-size: 13px;
    line-height: 1.5;
}


.download-container{
    max-width:900px;
    margin:40px auto;
    padding:20px;
    text-align:center;
}

.download-container h2{
    font-size:28px;
    margin-bottom:30px;
    color:#f1f5f9;
}

.requirements{
    display:flex;
    gap:20px;
    justify-content:center;
    flex-wrap:wrap;
    margin-bottom:30px;
}

.req-box{
    flex:1 1 200px;
    background: linear-gradient(135deg,#111827,#1c1c29);
    padding:25px;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,0.5);
    transition:0.3s;
}

.req-box:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,0.7);
}

.req-box h3{
    color:#3b82f6;
    margin-bottom:15px;
    font-size:18px;
}

.req-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.req-box ul li{
    color:#e2e8f0;
    margin:8px 0;
    font-size:15px;
}

.req-box.recommended{
    background: linear-gradient(135deg,#2563eb,#1e3a8a);
}

.download-button{
    margin-top:20px;
}

.download-button .btn{
    padding:12px 25px;
    font-size:16px;
    font-weight:bold;
    background:#22c55e;
    color:#fff;
    border-radius:10px;
    text-decoration:none;
    transition:0.3s;
    display:inline-block;
}

.download-button .btn:hover{
    background:#16a34a;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(34,197,94,0.5);
}



.status {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
}

.status.online {
  background-color: #00ff00;
}

.status.offline {
  background-color: #777777;
}

.rank-pokemons {
  margin-top: 5px;
}

.poke-icon {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid #444;
  background: #111;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  z-index: 1;
}

.poke-icon:hover {
  transform: scale(2); /* aumenta o zoom */
  z-index: 10;
  box-shadow: 0 0 10px rgba(0,255,0,0.6);
}