body {
    font-family: 'Segoe UI', sans-serif;
    background: url('wallpaperbetter3.jpg') center/cover no-repeat;

    margin: 0;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    overflow-x: hidden;
overflow-y: auto;
}

/* Layout */
.flex-container {
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

/* Caixa principal */
.container {
    width: 380px; 
    padding: 15px;

    background: rgba(8, 12, 22, 0.9);

    border: 1px solid rgba(0, 180, 255, .05);
    border-radius: 18px;

    box-shadow:
        0 0 35px rgba(0,180,255,.05),
        inset 0 0 25px rgba(255,255,255,.03);

    backdrop-filter: blur(5px);

    text-align: center;
}

/* Logo estilo game */
.logo {
font-size: 30px;
letter-spacing: 2px;
color: #00ff9c;
text-shadow: 0 0 10px rgba(0,255,150,0.5);
}

/* Subtítulo */
.subtitle {
opacity: 0.8;
margin-bottom: 1px;
}

/* Mensagem de erro do login */
.login-error {
    background: rgba(255, 0, 60, 0.15);
    border: 1px solid #ff003c;
    color: #ff6b8f;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 14px;
    font-size: 14px;
    text-align: left;
}

/* Lembrar de mim */
.remember-group {
    display: flex;
    align-items: center;
}

.remember-label {
    display: flex !important;
    align-items: center;
    gap: 8px;

    margin-bottom: 0 !important;
    font-size: 14px;
    opacity: 0.85;

    cursor: pointer;
}

.remember-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #00ff9c;
    cursor: pointer;
}

/* Inputs */
.input-group {
text-align: left;
padding: 7px;
}

input{
    width:100%;
    padding:14px;

    box-sizing:border-box;

    margin-bottom:18px;

    background:#111827;

    border:1px solid #2c425f;
    border-radius:10px;

    color:white;
    font-size:15px;
} 

input:focus{
    border-color:#00d4ff;

    box-shadow:0 0 15px rgba(0,212,255,.35);

    outline:none;
}

input:focus {
outline: none;
border-color: #00ff9c;
box-shadow: 0 0 10px rgba(0,255,150,0.4);
}

/* Botões */
.enter-button {
background: linear-gradient(135deg, #ff003c, #750000);
margin-top: 10px;
}

.register-button {
background: linear-gradient(135deg, #00ff9c, #156009);
}

button{
    width:100%;
    padding:14px;

    border:none;
    border-radius:10px;

    font-size:16px;
    font-weight:bold;

    background:linear-gradient(180deg,#00c3ff,#006eff);

    cursor:pointer;

    transition:.25s;
}

button:hover{
    transform:translateY(-2px);

    box-shadow:0 0 20px rgba(0,195,255,.5);
}


a{
    color:#00d4ff;
    text-decoration:none;
}

a:hover{
    text-decoration:underline;
}

/* Divisor "ou" entre o login normal e o login com Google */
.divider-ou {
    display: flex;
    align-items: center;
    gap: 10px;

    margin: 10px 0;

    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

.divider-ou::before,
.divider-ou::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.15);
}

/* Botão "Entrar com o Google" */
.google-button {
    width: 100%;
    padding: 14px;
    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    background: #ffffff;
    color: #1f1f1f;

    border-radius: 10px;
    border: none;

    font-size: 15px;
    font-weight: bold;

    cursor: pointer;
    transition: .25s;

    text-decoration: none !important;
}

.google-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255,255,255,.35);
    text-decoration: none;
}

.google-icon {
    flex-shrink: 0;
}

/* Extras */
.extras {
margin-top: 15px;
}

.stats {
margin-top: 1px;
display: flex;
justify-content: space-between;
font-size: 14px;
opacity: 0.7;
}

/* Info lateral */
.info {
width: 340px;
background: rgba(0, 0, 0, 0.75);
padding: 0 20px;
border-radius: 12px;
box-shadow: 0 0 20px rgba(0,0,0,0.6);
text-align: left;
font-size: 14px;
line-height: 1.5;

}

.top-content-imn {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center;     /* Centraliza verticalmente (se houver altura) */
}

.info h2 {
margin-bottom: 1px;
color: #00ff9c;
}

.info p {
padding: 6px 0;
border-bottom: 1px solid rgba(255,255,255,0.1);
}

.info p {
border-bottom: none;
}

/* Vignette */
.vignette {
position: fixed;
inset: 0;
pointer-events: none;
background: radial-gradient(circle, transparent 50%, rgba(0,0,0,0.9));
}
.main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;

    padding-top: 100px;
    padding-bottom: 100px;

    gap: 20px;
}

/* Linha superior com 3 colunas */
.top-layout {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.left-column,
.container,
.right-column {
    align-self: flex-start;
}


/* Laterais */
.side {
width: 250px;
background: rgba(0,0,0,0.6);
padding: 5px;
border-radius: 10px;
color: white;
font-size: 14px;
text-align: center;
box-shadow: 0 0 15px rgba(0,0,0,0.5);

}

/* Opcional: efeitos diferentes */
.left {
border-left: 2px solid #ff0000;

}

.right {
border-right: 2px solid #00ff9c;
}


.drone-gif {
width: 50%;
border-radius: 8px;
margin: 5px 0;
box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.9);
}

.drone-desc {
font-size: 13px;
opacity: 0.8;
line-height: 1.4;
}


.foto-ship-others {
width: 50%;
border-radius: 8px;
margin: 0px 0;

}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    
}

/* 🔥 Caixa do select */
select {
    width: 100%;
    padding: 8px 10px;

    background: rgba(0, 0, 0, 0.6);
    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;

    font-size: 14px;
    cursor: pointer;

    outline: none;
}

/* hover leve */
select:hover {
    border-color: rgba(255, 255, 255, 0.4);
}

/* foco discreto */
select:focus {
    border-color: #00ff9c;
}
label {
    display: block;
    margin-bottom: 6px;
}


.game-preview {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.preview-img {
    width: 180px;
    border-radius: 10px;

    border: 1px solid rgba(255,255,255,0.2);

    transition: transform 0.2s ease;
}

/* efeito leve ao passar o mouse */
.preview-img:hover {
    transform: scale(1.05);
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 999;

    left: 0;
    top: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.85);

    justify-content: center;
    align-items: center;
}

.modal-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

/* botão fechar */
.close {
    position: absolute;
    top: 20px;
    right: 30px;

    color: white;
    font-size: 30px;
    cursor: pointer;
}


.footer {
    position: fixed;
    bottom: 0;
    left: 0;

    width: 100%;

    padding: 15px;

    background: rgba(8, 12, 22, 0.95);
    border-top: 1px solid rgba(0, 180, 255, 0.3);

    text-align: center;

    z-index: 100;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
}

.footer p {
    color: #bfc8d6;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #4fc3ff;
    text-decoration: none;
    transition: color .2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links span {
    color: #666;
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 55px;

    background: rgba(0, 0, 0, 0.8);

    /* border-bottom: 1px solid rgba(0, 255, 156, 0.1); */

    z-index: 100;

    display: flex;
    align-items: center;
}


.top-content {
    width: 100%;
    padding: 0 30px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}


.game-name {
    color: #00ff9c;
    font-size: 22px;
    font-weight: bold;

    text-shadow: 0 0 10px rgba(0,255,156,0.5);
}


.top-links {
    display: flex;
    gap: 20px;
}


.top-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;

    transition: .3s;
}


.top-links a:hover {
    color: #00ff9c;
}


.ranking-wrapper{

    width:100%;
    display:flex;
    justify-content:center;

    margin-top:25px;
}

.ranking-card{

    width:840px;

    background:rgba(0,0,0,.65);

    border:1px solid rgba(0,255,156,.2);

    border-radius:12px;

    padding:20px;
}

.ranking-table{

    width:100%;

    border-collapse:collapse;

    color:white;
}

.ranking-table th{

    color:#00ff9c;

    padding:10px;

    border-bottom:1px solid rgba(255,255,255,.15);
}

.ranking-table td{

    padding:8px;

    border-bottom:1px solid rgba(255,255,255,.08);

    text-align:center;
}

.ship-card-hall{
    width:83.5%;
    background: rgba(3, 6, 12, 0.96);

    border: 1px solid rgba(0, 255, 156, 0.12);

    border-radius: 12px;

    padding: 20px;

    box-shadow:
        0 0 25px rgba(0,0,0,.7),
        inset 0 0 25px rgba(255,255,255,.02);
}

.player-name{
    display:flex;
    align-items:center;
    gap:6px;
}

.cia-logo{
    width:18px;
    height:18px;
    object-fit:contain;
}

.social-links{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:15px;
}

.social{
    display:flex;
    align-items:center;
    gap:15px;

    text-decoration:none;
    color:white;

    padding:12px 15px;

    border-radius:8px;

    background:rgba(255,255,255,.05);

    transition:.25s;
}

.social:hover{
    transform:translateX(5px);
    background:rgba(255,255,255,.12);
}

.social i{
    font-size:28px;
    width:35px;
    text-align:center;
}

.discord i{
    color:#5865F2;
}

.instagram i{
    color:#E4405F;
}

.youtube i{
    color:#FF0000;
}

.facebook i{
    color:#1877F2;
}

.social span{
    font-size:16px;
    font-weight:bold;
}