/* --- CSS BASE --- */
:root {
    --primary: #ff4d00;
    --secondary: #ff8c00;
    --accent: #00d4ff;
    --bg-dark: #0a0a0a;
    --card-bg: rgba(20, 20, 20, 0.8);
    --text: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* --- CANVAS DE PARTÍCULAS (FUNDO) --- */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, rgba(26, 10, 0, 0.8) 0%, rgba(5, 5, 5, 0.9) 100%);
}

.page-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.7;
    filter: brightness(0.8);
}

/* --- NAVEGAÇÃO --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 10%;
    display: flex;
    justify-content: center;
    gap: 30px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 2px solid var(--primary);
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

nav a:hover {
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent);
}

/* --- SEÇÃO BASE --- */
.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    text-align: center;
}

.logo-container {
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.logo-img {
    width: 250px;
    filter: drop-shadow(0 0 20px var(--primary));
}

.project-img {
    width: 100%;
    max-width: 800px;
    border-radius: 20px;
    margin: 20px 0;
    box-shadow: 0 0 30px rgba(255, 77, 0, 0.4);
    border: 2px solid var(--primary);
}

h1 {
    font-size: 4rem;
    margin-top: 20px;
    text-transform: uppercase;
    background: linear-gradient(to right, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary);
    text-transform: uppercase;
}

/* --- SEÇÃO LOJA --- */
.shop-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.item-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 77, 0, 0.3);
    padding: 30px;
    border-radius: 20px;
    width: 280px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.item-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.item-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.2);
}

.coin-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px gold);
}

.price {
    display: block;
    font-size: 1.5rem;
    color: #4ade80;
    margin: 15px 0;
    font-weight: bold;
}

.buy-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
    text-transform: uppercase;
}

.buy-btn:hover {
    background: var(--accent);
    transform: scale(1.05);
}

/* --- SEÇÃO LOGIN/INFO --- */
.info-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    border: 1px solid rgba(0, 212, 255, 0.3);
    margin-bottom: 30px;
}

.top-login-form {
    position: fixed;
    top: 30px;
    right: 5%;
    z-index: 101;
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 77, 0, 0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.top-login-form input {
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid #333;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    outline: none;
    font-size: 0.95rem;
    width: 180px;
    transition: 0.3s;
}

.top-login-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.top-login-form button {
    background: linear-gradient(45deg, #ff0000, #ffcc00);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.3s;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.top-login-form button:hover {
    background: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

input {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #000;
    color: white;
    outline: none;
}

input:focus {
    border-color: var(--accent);
}

.server-ip {
    font-size: 1.8rem;
    color: var(--accent);
    font-weight: bold;
    background: rgba(0, 212, 255, 0.1);
    padding: 15px 30px;
    border-radius: 10px;
    border: 1px dashed var(--accent);
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.server-ip:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.02);
}

/* --- ANIMAÇÕES --- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    nav { gap: 15px; font-size: 0.8rem; }
    .project-img { width: 95%; }
}

/* --- LOJA VALORANT STYLE --- */
.vlr-store-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 1200px;
    margin: 10px auto 0 auto;
}

.vlr-featured-bundle {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: rgba(15, 25, 35, 0.9);
    border: 1px solid rgba(255, 70, 85, 0.5);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: 0.3s;
}
.vlr-featured-bundle:hover {
    border-color: #ff4655;
    box-shadow: 0 10px 40px rgba(255, 70, 85, 0.2);
}

.vlr-bundle-image {
    width: 100%;
    height: 305px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.vlr-bundle-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 10px;
    box-sizing: border-box;
    background: transparent;
    pointer-events: none;
}

.vlr-bundle-box {
    background: rgba(15, 25, 35, 0.95);
    padding: 8px 15px;
    border-radius: 4px;
    pointer-events: auto;
}

.vlr-bundle-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.1rem;
    color: #ece8e1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vlr-bundle-price {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #ece8e1;
}

.vlr-fp-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.vlr-buy-btn {
    background-color: #ff4655;
    color: #ece8e1;
    border: none;
    padding: 6px 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    margin-left: 15px;
}

.vlr-buy-btn:hover {
    background-color: #ff5866;
    transform: scale(1.05);
}

.vlr-timer {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #ece8e1;
    font-size: 0.8rem;
    margin: 2px 0;
    padding: 4px 10px;
    background: rgba(15, 25, 35, 0.8);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vlr-daily-offers {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
    flex-wrap: wrap;
}

.vlr-offer-card {
    flex: 1;
    min-width: 120px;
    background: rgba(15, 25, 35, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.vlr-offer-card:hover {
    border-color: #00d4ff;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.vlr-offer-image {
    width: 100%;
    height: 60px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 25px;
    margin-bottom: 10px;
}

.vlr-offer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
}

.vlr-offer-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 0.65rem;
    color: #ece8e1;
    text-align: left;
    margin-bottom: 0;
    max-width: 55%;
}

.vlr-offer-price {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #ece8e1;
}

.vlr-offer-price .vlr-fp-icon {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}

.vlr-buy-btn-small {
    background-color: transparent;
    color: #00d4ff;
    border: 1px solid #00d4ff;
    padding: 4px 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 0.7rem;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
    width: auto;
}

.vlr-buy-btn-small:hover {
    background-color: #00d4ff;
    color: #0f1923;
}

/* --- FORMULÁRIOS DE AUTENTICAÇÃO --- */
.auth-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255, 77, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    margin: 0 auto;
}

.auth-form:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 77, 0, 0.2);
}

.auth-form h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.8rem;
    text-transform: uppercase;
    text-align: center;
}

.auth-form input {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
}

.auth-form input:focus {
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.register-action-btn {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s;
    text-transform: uppercase;
    margin-top: 10px;
}

.register-action-btn:hover {
    background: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

