@charset "UTF-8";
:root{
      --bg-root: #050505;
      --bg-panel: #0a0a0a;
      --bg-card: #0f0f0f;
      --border: #222;

      --accent: #00d084;
      --accent-hover: #00ff9d;
      --accent-glow: rgba(0, 208, 132, 0.3);

      --text-main: #ffffff;
      --text-muted: #888888;

      --max-width: 1550px;
      --font-main: "Inter", sans-serif;
    }
/* LOGIN PAGE OVERRIDES */
.site-content-wrapper.login-wrapper {
    min-height: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 60px 0 !important;
    background: transparent !important;
}

.page-content-box.login-content-box {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

/* SHARED AUTH STYLES (Login & Reset Pass) */
.login-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    min-height: 50vh !important;
    padding: 20px 0 !important;
    width: 100% !important;
}
.login-box {
    background: #1a1a1a !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5) !important;
    padding: 30px !important;
    width: 100% !important;
    max-width: 380px !important;
    text-align: center !important;
    margin: 0 auto !important;
}
.login-title {
    color: #fff !important;
    font-weight: 900 !important;
    margin-bottom: 20px !important;
    font-size: 24px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    text-align: center !important;
}
.login-input-group {
    margin-bottom: 15px !important;
    text-align: left !important;
}
.login-label {
    color: #ccc !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    margin-bottom: 6px !important;
    display: block !important;
    letter-spacing: 0.5px !important;
}
.login-input {
    width: 100% !important;
    padding: 12px !important;
    background: #0a0a0a !important;
    border: 1px solid #333 !important;
    border-radius: 6px !important;
    color: #fff !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
}
.login-input:focus {
    border-color: #4a90e2 !important;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2) !important;
    outline: none !important;
}
.btn-login {
    width: 100% !important;
    padding: 12px !important;
    background: #4a90e2 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    margin-top: 10px !important;
    letter-spacing: 1px !important;
}
.btn-login:hover {
    background: #357abd !important;
    transform: translateY(-1px) !important;
}
.login-links {
    margin-top: 20px !important;
    font-size: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    text-align: center !important;
}
.login-links a {
    color: #4a90e2 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: color 0.2s !important;
}
.login-links a:hover {
    color: #7ab3ff !important;
    text-decoration: underline !important;
}
.server-select {
    width: 100% !important;
    padding: 12px !important;
    background: #0a0a0a !important;
    border: 1px solid #333 !important;
    border-radius: 6px !important;
    color: #fff !important;
    font-size: 14px !important;
    cursor: pointer !important;
}
.error-message {
    background: rgba(255, 68, 68, 0.1) !important;
    border: 1px solid rgba(255, 68, 68, 0.3) !important;
    color: #ff4444 !important;
    padding: 12px !important;
    border-radius: 6px !important;
    margin-bottom: 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-align: left !important;
}
    body {
      background-color: var(--bg-root);
      font-family: var(--font-main);
      color: var(--text-main);
      overflow-x: hidden;
      position: relative;
      min-height: 100vh;
    }

    /* Grid background lives here so any fade/mask affects ONLY the grid, not the content */
    
    body::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1120px; /* grid exists only on the top area */
      background-image:
        radial-gradient(circle at 50% 10%, rgba(0, 208, 132, 0.08), transparent 70%),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 100% 100%, 40px 40px, 40px 40px;
      background-position: 0 0, 0 0, 0 0;
      background-repeat: no-repeat, repeat, repeat;
      pointer-events: none;
      z-index: -1;

      /* Fade-out inside its own height for a smooth transition */
      mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 0px,
        rgba(0,0,0,1) 740px,
        rgba(0,0,0,0.85) 820px,
        rgba(0,0,0,0.55) 900px,
        rgba(0,0,0,0.25) 980px,
        rgba(0,0,0,0.10) 1040px,
        rgba(0,0,0,0) 1120px
      );
      -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0,0,0,1) 0px,
        rgba(0,0,0,1) 740px,
        rgba(0,0,0,0.85) 820px,
        rgba(0,0,0,0.55) 900px,
        rgba(0,0,0,0.25) 980px,
        rgba(0,0,0,0.10) 1040px,
        rgba(0,0,0,0) 1120px
      );
    }




    * { box-sizing: border-box; }
    html, body { height: 100%; margin: 0; }
    body {
      background-color: var(--bg-root) !important;
      font-family: var(--font-main);
      color: var(--text-main) !important;
      overflow-x: hidden;
      position: relative;
      min-height: 100vh;
    }

    /* Grid background lives here so any fade/mask affects ONLY the grid, not the content */



    a { text-decoration: none; color: inherit; transition: 0.2s; }
    ul { list-style: none; padding: 0; margin: 0; }

    .topbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(10px);
    }

    .top-upper {
      border-bottom: 1px solid rgba(255,255,255,0.05);
      padding: 6px 0;
      font-size: 11px;
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .server-status {
      color: var(--accent);
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .server-status::before {
      content: '\25CF';
      font-size: 14px;
      animation: pulse 2s ease-in-out infinite;
    }
    .server-status.status-online { color: #00d084; }
    .server-status.status-online::before { color: #00d084; }
    .server-status.status-offline { color: #ff4444; }
    .server-status.status-offline::before { color: #ff4444; animation: none; }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .top-links { display: flex; gap: 20px; }
    .top-link { 
      color: var(--text-muted); 
      font-weight: 600; 
      text-transform: uppercase; 
      font-size: 10px; 
      letter-spacing: 0.5px; 
    }
    .top-link:hover { color: var(--accent); }

    .nav-area { padding: 0; border-bottom: 1px solid var(--border); }

    .nav-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
    }

    .brand img { height: 55px; display: block; filter: drop-shadow(0 0 10px rgba(0,0,0,0.5)); }

    .nav-menu { display: flex; gap: 0; height: 100%; align-items: stretch; }

    .nav-item {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 0 20px;
      cursor: pointer;
      border-bottom: 3px solid transparent;
      transition: all 0.2s ease;
    }

    .nav-item .title {
      font-weight: 800;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      color: #fff;
      margin-bottom: 3px;
    }

    .nav-item .sub {
      font-size: 9px;
      text-transform: uppercase;
      color: #666;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .nav-item:hover, .nav-item.active { border-bottom-color: var(--accent); }
    .nav-item:hover .sub, .nav-item.active .sub { color: var(--accent); }
    .nav-item { text-decoration: none; color: inherit; }

    .btn-panel {
      display: flex; 
      align-items: center; 
      gap: 8px;
      background: var(--accent);
      color: #000;
      padding: 10px 20px;
      border-radius: 4px;
      font-size: 11px; 
      font-weight: 900; 
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: 0.2s;
      margin-left: 20px;
    }
    .btn-panel:hover {
      background: var(--accent-hover);
      box-shadow: 0 0 20px var(--accent-glow);
    }

    .hero {
      position: relative;
      padding-top: 117px;
      text-align: center;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      height: 750px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    
    .hero-bg {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 2400px;
      max-width: 100%;
      height: 750px;
      background-image: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.65) 100%), url('../assets/f16f35c2-9a1f-4bed-8307-c740b6516cc7_83ab778fbb.jpg');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      z-index: 0;
      image-rendering: -webkit-optimize-contrast;

      /* Fade ONLY on left/right edges (no top/bottom fade) */
      mask-image: linear-gradient(
        to right,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.25) 4%,
        rgba(0,0,0,0.6) 8%,
        rgba(0,0,0,0.9) 12%,
        rgba(0,0,0,1) 16%,
        rgba(0,0,0,1) 84%,
        rgba(0,0,0,0.9) 88%,
        rgba(0,0,0,0.6) 92%,
        rgba(0,0,0,0.25) 96%,
        rgba(0,0,0,0) 100%
      );
      -webkit-mask-image: linear-gradient(
        to right,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.25) 4%,
        rgba(0,0,0,0.6) 8%,
        rgba(0,0,0,0.9) 12%,
        rgba(0,0,0,1) 16%,
        rgba(0,0,0,1) 84%,
        rgba(0,0,0,0.9) 88%,
        rgba(0,0,0,0.6) 92%,
        rgba(0,0,0,0.25) 96%,
        rgba(0,0,0,0) 100%
      );
    }


    
    @media (max-width: 2400px) {
      .hero-bg {
        width: 100%;
        left: 0;
        transform: none;
      }
    }


    .wave-divider {
      position: absolute; 
      bottom: 0; 
      left: 0; 
      right: 0;
      height: 60px;
      background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%230a0a0a" fill-opacity="1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,261.3C960,256,1056,224,1152,197.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
      background-size: cover;
      z-index: 3;
    }

    .login-dock-area {
      position: relative; 
      z-index: 10;
      max-width: var(--max-width);
      margin: -100px auto 0;
      padding: 0 20px;
      display: flex; 
      gap: 30px;
      align-items: flex-start;
    }

    .login-card {
      width: 340px;
      background: #0a0a0a;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 22px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    }

    .login-header {
      display: flex; 
      justify-content: space-between; 
      align-items: center;
      margin-bottom: 20px;
      border-bottom: 1px solid #1a1a1a;
      padding-bottom: 15px;
    }
    .login-header h3 { margin: 0; font-size: 18px; text-transform: uppercase; color: #fff; }
    .register-link { color: var(--accent); font-size: 12px; font-weight: 700; text-transform: uppercase; }

    .input-group { margin-bottom: 15px; }
    .input-group label { display: block; font-size: 11px; text-transform: uppercase; color: #666; margin-bottom: 5px; font-weight: 700; }
    .input-group input {
      width: 100%;
      background: #141414;
      border: 1px solid #222;
      padding: 12px;
      color: #fff;
      border-radius: 6px;
      outline: none;
    }
    .input-group input:focus { border-color: var(--accent); }

    .btn-main {
      width: 100%;
      background: var(--accent);
      color: #000;
      font-weight: 800;
      text-transform: uppercase;
      padding: 12px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.2s;
    }
    .btn-main:hover { background: var(--accent-hover); }

    .shortcuts {
      display: grid; 
      grid-template-columns: repeat(3, 1fr); 
      gap: 20px;
    }

    .login-right-area {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .rf-founder-banner{
      position:relative;border-radius:12px;overflow:visible;
      background:linear-gradient(145deg,#0d0d0d,#0a0a0a);
      border:1px solid rgba(255,255,255,.08);
      box-shadow:0 16px 40px rgba(0,0,0,.45);
      align-self:stretch;
      display:flex;
    }
    .rf-banner__bg{position:absolute;inset:0;border-radius:12px;overflow:hidden;pointer-events:none}
    .rf-banner__shine{position:absolute;top:0;left:0;right:0;height:1px;
      background:linear-gradient(90deg,transparent,rgba(255,255,255,.12),rgba(255,255,255,.05),rgba(255,255,255,.12),transparent)}
    .rf-banner__content{position:relative;display:flex;align-items:stretch;gap:16px;padding:18px 16px;width:100%}
    .rf-banner__left{flex:0 0 auto;min-width:180px;max-width:200px;display:flex;flex-direction:column;justify-content:center;padding:12px 0}
    .rf-banner__eyebrow{font-size:10px;font-weight:700;letter-spacing:.10em;text-transform:uppercase;color:#00d084;margin-bottom:5px;opacity:.9}
    .rf-banner__title{font-family:'Cinzel',serif;font-weight:700;font-size:16px;letter-spacing:.03em;line-height:1.2;margin-bottom:7px}
    .rf-banner__sub{font-size:10px;line-height:1.45;color:rgba(215,226,238,.60);margin-bottom:10px}
    .rf-banner__cta{
      display:inline-flex;align-items:center;justify-content:center;height:28px;padding:0 16px;border-radius:6px;
      background:linear-gradient(180deg,rgba(0,208,132,.18),rgba(0,208,132,.09));
      border:1px solid rgba(0,208,132,.30);color:#eafff7;font-weight:700;font-size:13px;
      text-decoration:none;box-shadow:0 2px 8px rgba(0,208,132,.08);
      transition:transform .15s,border-color .15s,background .15s,box-shadow .15s;
    }
    .rf-banner__cta:hover{transform:translateY(-1px);border-color:rgba(0,208,132,.50);box-shadow:0 4px 12px rgba(0,208,132,.15)}
    .rf-banner__right{flex:1;display:grid;grid-template-columns:repeat(3,1fr);gap:10px;align-items:stretch}
    .rf-mini{
      border-radius:10px;
      background:linear-gradient(170deg,rgba(255,255,255,.04),rgba(255,255,255,.01));
      border:1px solid rgba(255,255,255,.07);position:relative;padding:0 10px 10px;
      overflow:visible;display:flex;flex-direction:column;align-items:center;
      cursor:pointer;text-decoration:none;color:inherit;width:100%;
      transition:transform .22s cubic-bezier(.34,1.56,.64,1),box-shadow .22s,border-color .22s,background .22s;
    }
    .rf-mini:hover{transform:translateY(-4px)}
    .rf-mini::after{
      content:"";position:absolute;top:0;left:10%;right:10%;height:1px;border-radius:1px;
      background:linear-gradient(90deg,transparent,rgba(255,255,255,.12),transparent);pointer-events:none;
    }
    .rf-mini__mascot{
      position:relative;width:100%;height:200px;
      display:flex;align-items:flex-end;justify-content:center;
      margin-top:-40px;margin-bottom:-60px;z-index:6;flex-shrink:0;
    }
    .rf-mini__mascot img{
      height:200px;width:auto;max-width:160px;object-fit:contain;
      display:block;margin:0 auto;
      filter:drop-shadow(0 8px 18px rgba(0,0,0,.45));
      transition:transform .22s cubic-bezier(.34,1.56,.64,1);
      user-select:none;pointer-events:none;
    }
    .rf-mini:hover .rf-mini__mascot img{transform:translateY(-4px) scale(1.05)}
    .rf-mini--i .rf-mini__mascot img{transform:translateX(-11px)}
    .rf-mini--i:hover .rf-mini__mascot img{transform:translate(-11px,-4px) scale(1.05)}
    .rf-mini--s .rf-mini__mascot img{transform:translateX(13px)}
    .rf-mini--s:hover .rf-mini__mascot img{transform:translate(13px,-4px) scale(1.05)}
    .rf-mini__title{font-family:'Cinzel',serif;font-weight:700;font-size:18px;line-height:1.1;text-align:center;width:100%;margin-top:0;margin-bottom:3px;z-index:7;color:#fff;position:relative}
    .rf-mini__desc{font-size:10px;color:rgba(215,226,238,.55);line-height:1.2;text-align:center;width:100%;margin-bottom:4px;z-index:7;position:relative}
    .rf-mini__price{font-weight:800;font-size:15px;text-align:center;width:100%;margin-bottom:5px;z-index:7;position:relative}
    .silver{color:rgba(215,226,238,.75)}.gld{color:#f3c56b}.grn{color:#00d084}
    .rf-mini__badge{
      display:inline-flex;align-items:center;justify-content:center;width:100%;
      font-size:9px;font-weight:800;letter-spacing:.03em;text-transform:uppercase;
      padding:4px 6px;border-radius:4px;z-index:7;white-space:nowrap;
      background:rgba(0,208,132,.10);border:1px solid rgba(0,208,132,.25);color:#dfffee;
      box-shadow:0 2px 5px rgba(0,0,0,.18);margin-top:auto;position:relative;
    }
    .rf-mini__badge--gold{background:rgba(243,197,107,.10);border-color:rgba(243,197,107,.30);color:#fff3d0}
    .rf-mini--i:hover{border-color:rgba(100,100,110,.30);box-shadow:0 10px 25px rgba(0,0,0,.35);background:linear-gradient(170deg,rgba(100,100,110,.04),rgba(100,100,110,.015))}
    .rf-mini--i::after{background:linear-gradient(90deg,transparent,rgba(100,100,110,.15),transparent)}
    .rf-mini--m:hover{border-color:rgba(0,208,132,.30);box-shadow:0 10px 25px rgba(0,0,0,.35),0 0 12px rgba(0,208,132,.08);background:linear-gradient(170deg,rgba(0,208,132,.04),rgba(0,208,132,.015))}
    .rf-mini--s:hover{border-color:rgba(243,197,107,.30);box-shadow:0 10px 25px rgba(0,0,0,.35),0 0 12px rgba(243,197,107,.08);background:linear-gradient(170deg,rgba(243,197,107,.04),rgba(243,197,107,.015))}
    .rf-mini--s::after{background:linear-gradient(90deg,transparent,rgba(243,197,107,.15),transparent)}

    @media (max-width: 1100px) {
      .login-dock-area {
        flex-direction: column;
        align-items: center;
      }
      .login-card {
        width: 100%;
        max-width: 400px;
      }
      .login-right-area {
        width: 100%;
        max-width: 600px;
      }
      .rf-banner__content{flex-direction:column;padding:14px;text-align:center}
      .rf-banner__left{min-width:100%;max-width:100%;text-align:center}
      .rf-banner__cta{margin:0 auto}
    }

    @media (max-width: 500px) {
      .rf-banner__right{gap:8px}
      .rf-mini__mascot{height:110px;margin-top:-22px}
      .rf-mini__mascot img{height:110px;max-width:90px}
      .rf-mini__title{font-size:12px}
      .rf-mini__desc{font-size:7px}
      .rf-mini__price{font-size:10px}
    }
    .shortcut-card {
      background: #0f0f0f;
      border: 1px solid var(--border);
      padding: 25px 20px;
      border-radius: 14px;
      text-align: center;
      transition: 0.3s;
      cursor: pointer;
    }
    .shortcut-card:hover { border-color: var(--accent); transform: translateY(-5px); }
    .shortcut-icon { font-size: 22px; color: var(--accent); margin-bottom: 10px; }
    .shortcut-title { font-weight: 800; text-transform: uppercase; font-size: 13px; color: #fff; margin-bottom: 4px; }
    .shortcut-sub { font-size: 11px; color: #666; }

    /* SE\00c7\00c3O ROADMAP */
    .roadmap-section {
      background: #050505;
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
    }

    .roadmap-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 50% 50%, rgba(0, 208, 132, 0.05), transparent 60%);
      pointer-events: none;
    }

    .roadmap-container {
      max-width: var(--max-width);
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .roadmap-title {
      text-align: center;
      font-size: 32px;
      font-weight: 900;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 60px;
      letter-spacing: 2px;
    }

    .roadmap-phases {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 40px;
    }

    .phase-card {
      background: linear-gradient(145deg, #0a0a0a, #0f0f0f);
      border: 1px solid #1a1a1a;
      border-radius: 16px;
      padding: 40px 30px;
      text-align: center;
      position: relative;
      transition: 0.3s;
      overflow: hidden;
    }

    .phase-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0;
      transition: 0.3s;
    }

    .phase-card:hover {
      transform: translateY(-10px);
      border-color: var(--accent);
      box-shadow: 0 20px 40px rgba(0, 208, 132, 0.2);
    }

    .phase-card:hover::before { opacity: 1; }

    .phase-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 20px;
      background: rgba(0, 208, 132, 0.1);
      border: 2px solid var(--accent);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: var(--accent);
    }

    .phase-dates {
      font-size: 11px;
      text-transform: uppercase;
      color: #666;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .phase-name {
      font-size: 22px;
      font-weight: 900;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 15px;
      letter-spacing: 1px;
    }

    .phase-desc {
      font-size: 13px;
      color: #888;
      margin-bottom: 20px;
      line-height: 1.6;
    }

    .phase-features {
      text-align: left;
      margin-bottom: 20px;
    }

    .phase-features li {
      font-size: 13px;
      color: #aaa;
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
    }

    .phase-features li::before {
      content: '\2713';
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 900;
    }

    .phase-footer {
      font-size: 11px;
      color: #555;
      padding-top: 15px;
      border-top: 1px solid #1a1a1a;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .phase-footer i { color: var(--accent); }

    /* SE\00c7\00c3O ESTAT\00cdSTICAS */
    .stats-section {
      background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
      padding: 60px 20px;
      position: relative;
      border-top: 1px solid #1a1a1a;
      border-bottom: 1px solid #1a1a1a;
    }

    .stats-container {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .stat-card {
      background: linear-gradient(145deg, #0f0f0f, #1a1a1a);
      border: 2px solid #222;
      border-radius: 16px;
      padding: 30px 25px;
      text-align: center;
      transition: 0.3s;
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0;
      transition: 0.3s;
    }

    .stat-card:hover {
      transform: translateY(-8px);
      border-color: var(--accent);
      box-shadow: 0 15px 35px rgba(0, 208, 132, 0.25);
    }

    .stat-card:hover::before { opacity: 1; }

    .stat-icon {
      width: 90px;
      height: 90px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .stat-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 5px 15px rgba(0, 208, 132, 0.4));
    }

    .stat-label {
      font-size: 12px;
      text-transform: uppercase;
      color: #888;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .stat-value {
      font-size: 36px;
      font-weight: 900;
      color: #fff;
      line-height: 1;
      text-shadow: 0 0 20px rgba(0, 208, 132, 0.3);
    }

    .stat-value.accent { color: var(--accent); }

    /* SE\00c7\00c3O FAM\00cdLIA */
    .family-section {
      background: #0a0a0a;
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
    }

    .family-container {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 450px;
      gap: 60px;
      align-items: center;
    }

    .family-content { padding-right: 40px; }

    .family-title {
      font-size: 36px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 25px;
      line-height: 1.2;
    }

    .family-title span { color: var(--accent); }

    .family-text {
      font-size: 15px;
      color: #999;
      line-height: 1.8;
      margin-bottom: 40px;
    }

    .family-actions {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .action-btn {
      background: linear-gradient(145deg, #0f0f0f, #141414);
      border: 2px solid #1a1a1a;
      border-radius: 12px;
      padding: 25px 20px;
      text-align: center;
      cursor: pointer;
      transition: 0.3s;
      position: relative;
      overflow: hidden;
    }

    .action-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 208, 132, 0.1), transparent);
      transition: 0.5s;
    }

    .action-btn:hover::before { left: 100%; }

    .action-btn:hover {
      border-color: var(--accent);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 208, 132, 0.2);
    }

    .action-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 15px;
      background: rgba(0, 208, 132, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: var(--accent);
      transition: 0.3s;
    }

    .action-btn:hover .action-icon {
      background: rgba(0, 208, 132, 0.2);
      transform: scale(1.1);
    }

    .action-title {
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 8px;
      letter-spacing: 0.5px;
    }

    .action-desc {
      font-size: 11px;
      color: #666;
      line-height: 1.4;
    }

    .family-character {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .family-character img {
      max-width: 100%;
      max-height: 500px;
      height: auto;
      filter: drop-shadow(0 20px 50px rgba(0, 208, 132, 0.3));
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }

    /* NEWS styles moved to NEWS SECTION OVERRIDES block below */

    /* SE\00c7\00c3O WOE */
    .woe-section {
      background: #0a0a0a;
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
      border-top: 1px solid #1a1a1a;
    }

    .woe-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 208, 132, 0.05), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 208, 132, 0.03), transparent 50%);
      pointer-events: none;
    }

    .woe-container {
      max-width: var(--max-width);
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .woe-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .woe-title {
      font-size: 40px;
      font-weight: 900;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 15px;
      letter-spacing: 2px;
      text-shadow: 0 0 30px rgba(0, 208, 132, 0.3);
    }

    .woe-subtitle {
      font-size: 14px;
      color: #888;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    .woe-schedule {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      margin-bottom: 60px;
    }

    .schedule-card {
      background: linear-gradient(145deg, #0f0f0f, #141414);
      border: 2px solid #1a1a1a;
      border-radius: 16px;
      padding: 30px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: 0.3s;
    }

    .schedule-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
      opacity: 0;
      transition: 0.3s;
    }

    .schedule-card:hover {
      border-color: var(--accent);
      box-shadow: 0 10px 30px rgba(0, 208, 132, 0.2);
    }

    .schedule-card:hover::before { opacity: 1; }

    .schedule-emblem {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
    }

    .schedule-emblem img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 5px 20px rgba(0, 208, 132, 0.4));
    }

    .schedule-name {
      font-size: 20px;
      font-weight: 900;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 10px;
      letter-spacing: 1px;
    }

    .schedule-time {
      font-size: 13px;
      color: var(--accent);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .woe-castles {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .castle-card {
      background: linear-gradient(145deg, #0a0a0a, #0f0f0f);
      border: 2px solid #1a1a1a;
      border-radius: 16px;
      padding: 35px 30px;
      position: relative;
      overflow: hidden;
      transition: 0.3s;
    }

    .castle-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(0, 208, 132, 0.1), transparent);
      transition: 0.5s;
    }

    .castle-card:hover::before { left: 100%; }

    .castle-card:hover {
      border-color: var(--accent);
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 208, 132, 0.25);
    }

    .castle-banner {
      width: 100px;
      height: 120px;
      margin: 0 auto 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
    }

    .castle-banner img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: drop-shadow(0 8px 20px rgba(0, 208, 132, 0.3));
    }

    .castle-name {
      font-size: 24px;
      font-weight: 900;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 15px;
      letter-spacing: 1px;
      text-align: center;
    }

    .castle-info {
      display: flex;
      flex-direction: column;
      gap: 8px;
      width: 100%;
    }

    .castle-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 18px;
      background: rgba(0, 0, 0, 0.3);
      border-radius: 8px;
      border: 1px solid #1a1a1a;
      width: 100%;
    }

    .castle-label {
      font-size: 11px;
      text-transform: uppercase;
      color: #666;
      font-weight: 700;
      letter-spacing: 0.5px;
      flex-shrink: 0;
    }

    .castle-value {
      font-size: 13px;
      color: #fff;
      font-weight: 700;
      text-align: right;
    }

    .castle-value.guild { color: var(--accent); }

    /* SE\00c7\00c3O REGRAS & REGULAMENTOS */
    .rules-section {
      background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
      padding: 100px 20px;
      position: relative;
      overflow: hidden;
      border-top: 1px solid #1a1a1a;
    }

    .rules-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        radial-gradient(circle at 30% 50%, rgba(0, 208, 132, 0.05), transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 208, 132, 0.03), transparent 50%);
      pointer-events: none;
    }

    .rules-container {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .rules-content {
      padding-right: 40px;
    }

    .rules-header {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 30px;
    }

    .rules-icon {
      width: 50px;
      height: 50px;
      background: rgba(0, 208, 132, 0.1);
      border: 2px solid var(--accent);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: var(--accent);
    }

    .rules-header h2 {
      font-size: 32px;
      font-weight: 900;
      text-transform: uppercase;
      color: #fff;
      margin: 0;
      letter-spacing: 1.5px;
    }

    .rules-subtitle {
      font-size: 13px;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 30px;
    }

    .rules-blocks {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .rules-block {
      background: linear-gradient(145deg, #0f0f0f, #141414);
      border: 1px solid #1a1a1a;
      border-left: 4px solid var(--accent);
      border-radius: 12px;
      padding: 25px;
      transition: 0.3s;
    }

    .rules-block:hover {
      border-color: var(--accent);
      box-shadow: 0 10px 30px rgba(0, 208, 132, 0.15);
      transform: translateX(5px);
    }

    .rules-block p {
      font-size: 14px;
      color: #aaa;
      line-height: 1.8;
      margin: 0;
    }

    .rules-character {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .rules-character img {
      max-width: 100%;
      max-height: 450px;
      height: auto;
      filter: drop-shadow(0 20px 50px rgba(0, 208, 132, 0.3));
      animation: float 3s ease-in-out infinite;
    }

    /* FOOTER */
    footer {
      background: #0a0a0a;
      padding: 0;
      margin: 0;
    }

    .footer-top {
      background: linear-gradient(135deg, #0a0a0a 0%, #0d1510 50%, #0a0a0a 100%);
      padding: 50px 20px 30px;
      border-top: 2px solid var(--accent);
      position: relative;
    }

    .footer-top::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    }

    .footer-container {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 320px 1fr 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .footer-logo {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-logo img {
      max-width: 200px;
      height: auto;
      filter: drop-shadow(0 0 10px rgba(0, 208, 132, 0.3));
    }

    .footer-logo-Admin Siberian { margin-top: 10px; }

    .footer-logo-Admin Siberian img {
      max-width: 80px;
      filter: brightness(0) invert(1);
      opacity: 0.4;
    }

    .footer-section h3 {
      color: var(--accent);
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 1.5px;
      margin: 0 0 20px 0;
      padding-bottom: 10px;
      border-bottom: 2px solid rgba(0, 208, 132, 0.2);
    }

    .footer-section ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-section ul li { margin-bottom: 12px; }

    .footer-section ul li a {
      color: #999;
      font-size: 13px;
      text-decoration: none;
      transition: 0.2s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-section ul li a:hover {
      color: var(--accent);
      padding-left: 5px;
      text-shadow: 0 0 10px rgba(0, 208, 132, 0.5);
    }

    .footer-section ul li a::before {
      content: '\203A';
      font-size: 16px;
      font-weight: bold;
      color: var(--accent);
    }

    .footer-bottom {
      background: #050505;
      padding: 20px;
      text-align: center;
      border-top: 1px solid #1a1a1a;
    }

    .footer-bottom-content {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #555;
      font-size: 11px;
    }

    .footer-bottom-left { text-align: left; }

    .footer-bottom-left p {
      margin: 3px 0;
      line-height: 1.6;
    }

    .footer-bottom-left strong {
      color: var(--accent);
      font-weight: 800;
    }

    .footer-bottom-right img {
      max-width: 120px;
      height: auto;
      opacity: 0.6;
      filter: drop-shadow(0 0 5px rgba(0, 208, 132, 0.2));
    }

    @media (max-width: 1600px) { :root { --max-width: 1180px; } }
    @media (max-width: 900px) {
      .hero { height: auto; min-height: 500px; padding-top: 120px; }
      .hero-countdown { position: relative; top: auto; left: auto; transform: none; margin-top: 0; }
      .login-dock-area { flex-direction: column; margin-top: 20px; }
      .login-card { width: 100%; }
      .roadmap-phases { grid-template-columns: 1fr; }
      .stats-container { grid-template-columns: repeat(2, 1fr); }
      .woe-schedule { grid-template-columns: 1fr; }
      .woe-castles { grid-template-columns: 1fr; }
      .family-container { grid-template-columns: 1fr; }
      .family-character { order: -1; margin-bottom: 40px; }
      .family-actions { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: 1fr; }
      .rules-container { grid-template-columns: 1fr; }
      .rules-character { order: -1; margin-bottom: 40px; }
      .nav-menu, .top-upper { display: none; }
      .shortcuts { grid-template-columns: repeat(3, 1fr); gap: 15px; }
      .footer-container { grid-template-columns: 1fr; gap: 30px; }
      .footer-bottom-content { flex-direction: column; gap: 20px; }
    }
  

    /* NAV ICONS */
    .nav-item i {
      font-size: 16px;
      color: #ff7a18;
      margin-bottom: 4px;
      transition: transform 0.2s ease, color 0.2s ease, filter 0.2s ease;
      filter: drop-shadow(0 0 6px rgba(255, 122, 24, 0.25));
    }
    .nav-item:hover i,
    .nav-item.active i {
      color: var(--accent);
      transform: translateY(-1px) scale(1.12);
      filter: drop-shadow(0 0 10px rgba(0, 208, 132, 0.5));
    }


    /* ROADMAP CONNECTORS */
    .roadmap-phases {
      position: relative;
      padding-top: 22px;
    }

    /* main horizontal line behind the icons */
    .roadmap-phases::before {
      content: '';
      position: absolute;
      top: 44px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg,
        rgba(255, 122, 24, 0) 0%,
        rgba(255, 122, 24, 0.55) 15%,
        rgba(0, 208, 132, 0.55) 50%,
        rgba(255, 122, 24, 0.55) 85%,
        rgba(255, 122, 24, 0) 100%
      );
      opacity: 0.75;
      filter: blur(0.2px);
      z-index: 0;
    }

    /* animated glow sweep */
    .roadmap-phases::after {
      content: '';
      position: absolute;
      top: 43px;
      left: 10%;
      width: 120px;
      height: 4px;
      background: radial-gradient(circle, rgba(0, 208, 132, 0.9) 0%, rgba(0, 208, 132, 0) 70%);
      filter: blur(0.5px);
      opacity: 0.8;
      z-index: 1;
      animation: roadmapSweep 4.8s ease-in-out infinite;
    }

    @keyframes roadmapSweep {
      0% { transform: translateX(0); opacity: 0; }
      10% { opacity: 0.85; }
      50% { opacity: 0.65; }
      90% { opacity: 0.85; }
      100% { transform: translateX(calc((100vw - 20vw) - 120px)); opacity: 0; }
    }

    /* vertical connector from icon down to card */
    .phase-card {
      position: relative;
      overflow: hidden;
    }
    .phase-card::before {
      content: '';
      position: absolute;
      top: -34px;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 34px;
      background: linear-gradient(to bottom, rgba(255, 122, 24, 0.85), rgba(255, 122, 24, 0));
      opacity: 0.9;
      z-index: 2;
      pointer-events: none;
    }

    /* icon glow ring */
    .phase-icon {
      position: relative;
      z-index: 2;
      box-shadow: 0 0 0 6px rgba(255, 122, 24, 0.10), 0 0 18px rgba(255, 122, 24, 0.25);
    }
    .phase-card:hover .phase-icon {
      box-shadow: 0 0 0 7px rgba(0, 208, 132, 0.12), 0 0 26px rgba(0, 208, 132, 0.35);
    }

    /* Make the top area above the cards slightly darker for better grid transition */
    .roadmap-section {
      position: relative;
    }
    .roadmap-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 220px;
      background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.65) 55%, rgba(0,0,0,0) 100%);
      pointer-events: none;
      z-index: 0;
    }
    .roadmap-container { position: relative; z-index: 1; }

    /* First card darker top */
    .roadmap-phases .phase-card:first-child::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 86px;
      background: linear-gradient(to bottom, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0) 100%);
      pointer-events: none;
      z-index: 3;
    }


    /* HERO BUBBLES */
    .hero { position: relative; overflow: hidden; }
    .hero-bubbles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1; /* above hero-bg */
      opacity: 0.9;
    }
    .hero-bubbles span {
      position: absolute;
      bottom: -60px;
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: rgba(0, 208, 132, 0.28);
      box-shadow: 0 0 10px rgba(0, 208, 132, 0.35);
      animation: bubbleUp 9s linear infinite;
      opacity: 0;
    }
    .hero-bubbles span:nth-child(odd) {
      background: rgba(255, 122, 24, 0.18);
      box-shadow: 0 0 10px rgba(255, 122, 24, 0.25);
    }
    @keyframes bubbleUp {
      0% { transform: translateY(0) scale(0.8); opacity: 0; }
      10% { opacity: 0.75; }
      100% { transform: translateY(-880px) scale(1.35); opacity: 0; }
    }
    /* positions/sizes/durations */
    .hero-bubbles span:nth-child(1) { left: 6%; width: 4px; height: 4px; animation-duration: 7.5s; animation-delay: 0.2s; }
    .hero-bubbles span:nth-child(2) { left: 12%; width: 7px; height: 7px; animation-duration: 10.5s; animation-delay: 1.1s; }
    .hero-bubbles span:nth-child(3) { left: 18%; width: 5px; height: 5px; animation-duration: 8.8s; animation-delay: 2.0s; }
    .hero-bubbles span:nth-child(4) { left: 24%; width: 9px; height: 9px; animation-duration: 12.0s; animation-delay: 0.8s; }
    .hero-bubbles span:nth-child(5) { left: 31%; width: 6px; height: 6px; animation-duration: 9.6s; animation-delay: 2.7s; }
    .hero-bubbles span:nth-child(6) { left: 38%; width: 4px; height: 4px; animation-duration: 7.9s; animation-delay: 1.7s; }
    .hero-bubbles span:nth-child(7) { left: 45%; width: 8px; height: 8px; animation-duration: 11.4s; animation-delay: 3.1s; }
    .hero-bubbles span:nth-child(8) { left: 52%; width: 5px; height: 5px; animation-duration: 8.4s; animation-delay: 0.4s; }
    .hero-bubbles span:nth-child(9) { left: 58%; width: 10px; height: 10px; animation-duration: 12.6s; animation-delay: 2.3s; }
    .hero-bubbles span:nth-child(10){ left: 64%; width: 6px; height: 6px; animation-duration: 9.2s; animation-delay: 1.2s; }
    .hero-bubbles span:nth-child(11){ left: 70%; width: 4px; height: 4px; animation-duration: 7.6s; animation-delay: 2.9s; }
    .hero-bubbles span:nth-child(12){ left: 76%; width: 7px; height: 7px; animation-duration: 10.8s; animation-delay: 0.9s; }
    .hero-bubbles span:nth-child(13){ left: 82%; width: 5px; height: 5px; animation-duration: 8.9s; animation-delay: 3.4s; }
    .hero-bubbles span:nth-child(14){ left: 88%; width: 9px; height: 9px; animation-duration: 12.2s; animation-delay: 1.9s; }
    .hero-bubbles span:nth-child(15){ left: 93%; width: 4px; height: 4px; animation-duration: 7.8s; animation-delay: 0.6s; }
    .hero-bubbles span:nth-child(16){ left: 15%; width: 8px; height: 8px; animation-duration: 11.0s; animation-delay: 4.0s; }
    .hero-bubbles span:nth-child(17){ left: 48%; width: 4px; height: 4px; animation-duration: 7.3s; animation-delay: 4.5s; }
    .hero-bubbles span:nth-child(18){ left: 80%; width: 6px; height: 6px; animation-duration: 9.9s; animation-delay: 4.9s; }


    /* WOE FLAGS OVERRIDES */
    .woe-section .woe-art,
    .woe-section .woe-character,
    .woe-section .woe-girl {
      display: none !important;
    }


    /* HERO COUNTDOWN (translucent) */
    .hero-countdown{
      position: absolute;
      top: 138px;
      left: 50%;
      transform: translateX(-50%);
      width: min(860px, calc(100% - 32px));
      z-index: 2;
      text-align: center;
    }
    .countdown-headline{
      display:flex;
      justify-content:center;
      margin-bottom: 10px;
    }
    .countdown-title{
      font-family: 'Cinzel', serif;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: clamp(28px, 3.8vw, 52px);
      color: rgba(255,255,255,0.95);
      text-shadow: 0 18px 60px rgba(0,0,0,0.70);
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
    }
    .countdown-title span{ color: #ff7a18; text-shadow: 0 12px 40px rgba(255,122,24,0.35); }

    .countdown-card{
      background: linear-gradient(180deg, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.42) 100%);
      border: 1px solid rgba(255,255,255,0.10);
      box-shadow: 0 25px 70px rgba(0,0,0,0.55);
      border-radius: 16px;
      padding: 22px 22px 18px;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .countdown-date{
      font-size: 18px;
      color: rgba(255,255,255,0.78);
      margin-bottom: 14px;
      letter-spacing: 0.02em;
    }

    .countdown-time{
      display:flex;
      justify-content:center;
      align-items:flex-end;
      gap: 14px;
      padding: 10px 10px 12px;
      border-radius: 14px;
      background: rgba(0,0,0,0.30);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .cd-unit{ min-width: 108px; }
    .cd-num{
      font-variant-numeric: tabular-nums;
      font-family: Georgia, 'Times New Roman', serif;
      font-weight: 700;
      font-size: clamp(42px, 5.4vw, 64px);
      line-height: 1;
      color: rgba(255,255,255,0.92);
      text-shadow: 0 12px 35px rgba(0,0,0,0.55);
    }
    .cd-lbl{
      margin-top: 10px;
      font-size: 12px;
      letter-spacing: 0.16em;
      color: rgba(255,255,255,0.55);
    }
    .cd-sep{
      font-size: 40px;
      line-height: 1;
      color: rgba(255, 122, 24, 0.85);
      transform: translateY(-12px);
      text-shadow: 0 10px 25px rgba(0,0,0,0.45);
      user-select: none;
    }

    .countdown-meta{
      margin-top: 14px;
      padding: 14px 16px;
      border-radius: 14px;
      background: rgba(0,0,0,0.26);
      border: 1px solid rgba(255,255,255,0.08);
    }
    .countdown-meta-label{
      font-size: 12px;
      letter-spacing: 0.16em;
      color: rgba(255,255,255,0.55);
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .countdown-meta-value{
      font-size: 26px;
      font-weight: 800;
      color: #ff7a18;
    }
    .countdown-meta-value .dot{
      display:inline-block;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(0, 208, 132, 0.95);
      box-shadow: 0 0 12px rgba(0, 208, 132, 0.55);
      margin-right: 10px;
      transform: translateY(-2px);
    }

    .countdown-cta{
      display:inline-block;
      margin-top: 16px;
      padding: 12px 26px;
      border-radius: 10px;
      background: #ff7a18;
      color: #0a0a0a;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-decoration:none;
      box-shadow: 0 14px 30px rgba(255,122,24,0.30);
      transition: transform .18s ease, filter .18s ease;
    }
    .countdown-cta:hover{ transform: translateY(-2px); filter: brightness(1.05); }

    /* FOOTER DEV */
    .footer-logo-eadev{ margin-top: 10px; }
    .footer-dev{
      display:inline-block;
      padding: 6px 10px;
      border-radius: 10px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.10);
      color: rgba(255,255,255,0.75);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }


    /* FOOTER MASCOT */
    .footer-logo {
      align-items: flex-start;
    }
    .footer-mascot {
      width: 300px;
      max-width: 100%;
      height: auto;
      display: block;
      filter: drop-shadow(0 18px 40px rgba(0,0,0,0.55));
      transform: translateY(-6px);
    }
    @media (max-width: 980px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .footer-mascot {
        width: 260px;
        transform: none;
      }
    }



.hero-countdown{
  top: 170px;
}

/* CTA button: keep readable and clickable */
.countdown-cta{
  cursor: pointer;
}

/* Footer mascot: bigger and closer to the bottom black bar */
.footer-top{
  padding-bottom: 0;
}
.footer-mascot{
  width: 360px;
  transform: translateY(10px);
  margin-bottom: -20px;
}
@media (max-width: 980px){
  .footer-mascot{ width: 320px; margin-bottom: 0; transform: none; }
}


/* DEV FIXES: countdown placement (avoid topbar overlap) */
.hero{ position: relative; }
.hero-countdown{
  top: 200px;
}


/* COUNTDOWN V2 (reference layout) */

/* COUNTDOWN V2 (reference layout) */
.hero-countdown{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  z-index: 5;
  width: min(860px, calc(100% - 40px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.countdown-card--v2{
  width: 100%;
  padding: 36px 42px 28px;
  border-radius: 18px;
  background: rgba(0,0,0,0.68);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 60px rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
}

.countdown-card--v2 .countdown-date{
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  text-align: center;
}

.countdown-divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  margin: 18px 0 22px;
}

.countdown-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: end;
  justify-items: center;
  gap: 14px;
}

.cd-block{ text-align: center; }

.cd-value{
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 0.95;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 18px 36px rgba(0,0,0,0.55);
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
}

.cd-colon{
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 0.95;
  color: #ff7a18;
  opacity: 0.95;
  transform: translateY(-6px);
}

.cd-label{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.countdown-players{
  margin-top: 22px;
  width: 100%;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 16px 18px;
  text-align: center;
}

.players-title{
  font-size: 12px;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 10px;
}

.players-count{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Cinzel", serif;
  font-weight: 800;
  font-size: 34px;
  color: #ff7a18;
}

.players-dot{
  display: inline-block !important;
  width: 10px !important;
  height: 10px !important;
  min-width: 10px !important;
  min-height: 10px !important;
  border-radius: 50% !important;
  background: #00d084 !important;
  box-shadow: 0 0 0 4px rgba(0,208,132,0.15) !important;
  vertical-align: middle !important;
}
.players-count::before {
  content: '' !important;
  display: inline-block !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: #00d084 !important;
  box-shadow: 0 0 0 4px rgba(0,208,132,0.15) !important;
  margin-right: 10px !important;
  vertical-align: middle !important;
}

/* CTA button: match reference size */
.countdown-cta{
  margin-top: 0;
  padding: 14px 34px;
  border-radius: 12px;
  background: #ff7a18;
  color: #0a0a0a;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(255,122,24,0.30);
}

@media (max-width: 720px){
  .hero { min-height: 500px; padding-top: 130px; display: block; }
  .hero-countdown{ 
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: calc(100% - 28px); 
    margin: 0 auto;
  }
  .countdown-card--v2{ padding: 26px 18px 20px; }
  .countdown-grid{ grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; row-gap: 10px; gap: 8px 16px; }
  .countdown-grid .cd-colon{ display:none !important; }
  .cd-value{ font-size: 40px; }
  .cd-label{ font-size: 10px; }
}


/* DEV TWEAKS: WOE banners + footer mascot alignment */
/* WOE: bigger banner area so it never overlaps the castle name / guild lines */
.woe-castles .castle-card{
  display: flex;
  flex-direction: column;
}

.woe-castles .castle-banner{
  position: relative;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.woe-castles .castle-banner img{
  width: 80px;
  max-width: none;
  height: auto;
  transform: none;
  filter: drop-shadow(0 8px 20px rgba(0, 208, 132, 0.3));
}

.woe-castles .castle-name{ margin-top: 0; }

/* reserved hook: emblem inside the cloth area */
.woe-castles .castle-banner 

@media (max-width: 720px){
  .woe-castles .castle-banner{ height: 100px; margin-bottom: 14px; }
  .woe-castles .castle-banner img{ width: 60px; transform: none; }
}

/* Footer mascot: align feet exactly to the divider between footer-top and footer-bottom */
.footer-top{ padding-bottom: 0; }
.footer-container{ align-items: end; }
.footer-logo{ align-self: end; }

/* Remove any overlap into the black area; keep a tiny push down only */
.footer-mascot{
  width: 380px;
  display: block;
  transform: translateY(4px);
  margin-bottom: 0;
}

/* Make the divider explicit to match alignment target */
.footer-bottom{ border-top: 1px solid rgba(255,255,255,0.10); }

@media (max-width: 980px){
  .footer-container{ align-items: start; }
  .footer-logo{ align-self: start; }
  .footer-mascot{ width: 340px; transform: translateY(0); }
}
/* /DEV TWEAKS */


/* COUNTDOWN SIZE TWEAK */
/* COUNTDOWN SIZE TWEAK */
.hero-countdown{
  width: min(760px, calc(100% - 40px));
}
.countdown-card--v2{
  padding: 30px 34px 22px;
}
.cd-value{ font-size: 66px; }
.cd-colon{ font-size: 58px; }
.countdown-card--v2 .countdown-date{ font-size: 15px; }
.players-count{ font-size: 32px; }


/* LOGIN FORGOT PASSWORD */
/* LOGIN FORGOT PASSWORD */
.forgot-link{
  display: inline-block;
  margin-top: 12px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
}
.forgot-link:hover{ color: var(--accent-hover); }


/* ========== LOADING SCREEN ========== */
.loading-screen{
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #050505 0%, #0a0a0a 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading-screen.hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-content{
  text-align: center;
}
.loading-logo{
  width: 240px;
  margin-bottom: 30px;
  animation: loadingPulse 2s ease-in-out infinite;
}
@keyframes loadingPulse{
  0%, 100%{ transform: scale(1); opacity: 1; }
  50%{ transform: scale(1.05); opacity: 0.85; }
}


@keyframes loadingProgress{
  0%{ width: 0%; }
  100%{ width: 100%; }
}

/* ========== PARTICLES BACKGROUND ========== */
.particles-container{
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.particle{
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(0,208,132,0.4);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0,208,132,0.6);
  animation: particleFloat 12s linear infinite;
}
@keyframes particleFloat{
  0%{ transform: translateY(100vh) translateX(0); opacity: 0; }
  10%{ opacity: 0.7; }
  90%{ opacity: 0.7; }
  100%{ transform: translateY(-100px) translateX(calc(var(--drift) * 1px)); opacity: 0; }
}

/* ========== STICKY MENU COMPACT ========== */
.topbar.scrolled .nav-area{
  padding: 8px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}
.topbar.scrolled .brand img{
  height: 32px;
}
.topbar.scrolled .nav-item{
  padding: 8px 14px;
}

/* ========== HERO PARALLAX ========== */
.hero{
  position: relative;
  overflow: hidden;
}
.hero-bg{
  will-change: transform;
}

/* Hero glow behind mascot */
.hero::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,208,132,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ========== COUNTDOWN FLIP ANIMATION ========== */
.cd-value, .cd-colon{
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.cd-value.flip{
  animation: flipNumber 0.6s ease;
}
@keyframes flipNumber{
  0%{ transform: rotateX(0deg); }
  50%{ transform: rotateX(90deg); opacity: 0.3; }
  100%{ transform: rotateX(0deg); }
}

/* ========== CTA PULSE ========== */
.countdown-cta{
  animation: ctaPulse 2.5s ease-in-out infinite;
}
@keyframes ctaPulse{
  0%, 100%{ transform: scale(1); box-shadow: 0 14px 30px rgba(255,122,24,0.30); }
  50%{ transform: scale(1.03); box-shadow: 0 18px 40px rgba(255,122,24,0.50); }
}

/* ========== NEON TEXT EFFECT ========== */
.roadmap-title,
.news-title-wrapper h2,
.woe-title,
.family-title{
  text-shadow: 0 0 20px rgba(0,208,132,0.4), 0 4px 10px rgba(0,0,0,0.6);
}

/* ========== GRADIENT BORDER ANIMATED (cards) ========== */
.phase-card,
.news-card,
.castle-card,
.stat-card{
  position: relative;
  overflow: hidden;
}
.phase-card::after,
.news-card::after,
.castle-card::after,
.stat-card::after{
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.phase-card:hover::after,
.news-card:hover::after,
.castle-card:hover::after,
.stat-card:hover::after{
  opacity: 0.3;
  animation: borderGlow 2s linear infinite;
}
@keyframes borderGlow{
  0%{ background-position: -200% 0; }
  100%{ background-position: 200% 0; }
}

/* ========== LOGIN TABS ========== */
.login-tabs{
  display: flex;
  gap: 5px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tab-btn{
  flex: 1;
  padding: 10px 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.50);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.tab-btn.active{
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.tab-btn:hover:not(.active){
  color: rgba(255,255,255,0.80);
}
.tab-content{
  display: none;
}
.tab-content.active{
  display: block;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* ========== ROADMAP TOOLTIPS (simple hover info) ========== */
.phase-card{
  cursor: pointer;
}
.phase-card:hover .phase-desc{
  color: rgba(255,255,255,0.90);
}

/* ========== SCROLL REVEAL (will be triggered by JS) ========== */
.scroll-reveal{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-reveal.revealed{
  opacity: 1;
  transform: translateY(0);
}


/* ========== LOADING SCREEN ENHANCED ========== */
.loading-bar{
  width: 320px;
  height: 8px;
  background: rgba(0,0,0,0.4);
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
  border: 1px solid rgba(0,208,132,0.3);
  box-shadow: 0 0 15px rgba(0,208,132,0.2), inset 0 1px 3px rgba(0,0,0,0.6);
}
.loading-progress{
  height: 100%;
  background: linear-gradient(90deg, #00d084, #00ff9d, #00d084);
  background-size: 200% 100%;
  width: 0%;
  border-radius: 12px;
  animation: loadingProgress 1.5s ease-in-out forwards, loadingShimmer 1.5s linear infinite;
  box-shadow: 0 0 10px rgba(0,208,132,0.6);
}
@keyframes loadingShimmer{
  0%{ background-position: 200% 0; }
  100%{ background-position: -200% 0; }
}
.loading-text{
  margin-top: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.70);
  text-align: center;
  animation: loadingTextPulse 1.2s ease-in-out infinite;
}
@keyframes loadingTextPulse{
  0%, 100%{ opacity: 0.5; }
  50%{ opacity: 1; }
}

/* ========== WOE EMBLEM REPOSITIONED (CENTERED IN FLAG CLOTH) ========== */


/* ========== LOGIN HEADER ICON SPACING ========== */
.login-header h3 i{
  margin-right: 8px;
  color: var(--accent);
  font-size: 18px;
  vertical-align: middle;
}


/* PREMIUM TWEAKS: countdown glass + woe emblem + footer mascot */

/* 1) Countdown glassmorphism (clean highlight + inner depth; less blur) */
.countdown-card--v2{
  position: relative;
  background: linear-gradient(180deg, rgba(10,10,10,0.62) 0%, rgba(10,10,10,0.42) 100%) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  backdrop-filter: blur(7px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(7px) saturate(130%) !important;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -18px 28px rgba(0,0,0,0.35) !important;
}

/* subtle top-left highlight */
.countdown-card--v2::before{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.10) 18%, rgba(255,255,255,0.00) 52%);
  opacity: 0.75;
}

/* soft edge vignette to keep center contrast crisp */
.countdown-card--v2::after{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,0,0,0.00) 45%, rgba(0,0,0,0.28) 100%);
  opacity: 0.85;
}

/* keep content above overlays */
.countdown-card--v2 > *{ position: relative; z-index: 1; }

/* 2) WoE emblem: centralizado no estandarte */
.castle-banner{ 
  position: relative; 
}

.castle-emblem{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 6px));
  width: 32px;
  height: 32px;
  border: 2px solid #00d084;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 208, 132, 0.5), inset 0 0 5px rgba(0, 208, 132, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.castle-emblem img{
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  display: block;
}

/* 3) Footer mascot: baseline alignment using a fixed-height wrap */
.footer-top{ padding-bottom: 0 !important; }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,0.10) !important; }

.footer-container{ align-items: end !important; }

.footer-mascot-wrap{
  height: 255px; /* defines the baseline area */
  display: flex;
  align-items: flex-end;
}

.footer-mascot{
  width: auto !important;
  max-width: 100% !important;
  max-height: 255px !important;
  display: block;
  transform: none !important; /* stop fighting with translateY */
  margin: 0 !important;
}

@media (max-width: 980px){
  .footer-container{ align-items: start !important; }
  .footer-mascot-wrap{ height: auto; }
  .footer-mascot{ max-height: none !important; width: 320px !important; }
}

/* /PREMIUM TWEAKS */


/* HERO BG CENTER LOCK */
.hero{ position: relative; }

/* Keep the top hero image always centered (regardless of screen width) */
.hero-bg{
  position: absolute;
  left: 50% !important;
  transform: translateX(-50%) translateY(var(--hero-parallax-y, 0px)) !important;
  will-change: transform;
  transform-origin: center top;
}

/* Ensure it can extend beyond viewport but remains centered */
@media (max-width: 2400px){
  .hero-bg{
    width: 100%;
  }
}

@media (max-width: 900px){
  .hero-bg{
    width: 100%;
  }
}
/* /HERO BG CENTER LOCK */



/* SHORTCUT ICON SIZE TWEAK */
/* Slight increase for Gepard/Discord/Whats shortcut icons */
.shortcut-icon{
  font-size: 40px; /* was 36px */
  line-height: 1;
}
/* /SHORTCUT ICON SIZE TWEAK */

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #050505; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.5s ease;
}
.loading-screen.hidden { opacity: 0; pointer-events: none; }
.loading-content { text-align: center; }
.loading-logo { width: 200px; margin-bottom: 30px; animation: float 2s ease-in-out infinite; }
.loading-bar { width: 300px; height: 4px; background: #1a1a1a; border-radius: 2px; overflow: hidden; margin: 0 auto; position: relative; }
.loading-progress { width: 0%; height: 100%; background: var(--accent); border-radius: 2px; animation: loadProgress 1.2s ease-in-out forwards; }
.loading-text { margin-top: 15px; font-size: 11px; color: #666; letter-spacing: 3px; font-weight: 700; }
@keyframes loadProgress { 0% { width: 0%; } 100% { width: 100%; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== PARTICLES ===== */
.particles-container { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.particle { position: absolute; width: 3px; height: 3px; background: rgba(0, 208, 132, 0.3); border-radius: 50%; bottom: 0; animation: particleFloat linear infinite; }
@keyframes particleFloat { 0% { transform: translateY(0) translateX(0); opacity: 0; } 10% { opacity: 0.6; } 100% { transform: translateY(-800px) translateX(calc(var(--drift) * 1px)); opacity: 0; } }

/* ===== LOGIN TABS ===== */
.login-tabs { display: flex; gap: 0; border-bottom: 1px solid #1a1a1a; margin-bottom: 20px; }
.tab-btn { flex: 1; padding: 10px; text-align: center; font-size: 12px; font-weight: 800; text-transform: uppercase; color: #666; cursor: pointer; border-bottom: 2px solid transparent; transition: 0.3s; }
.tab-btn:hover { color: #fff; }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.forgot-link { display: block; text-align: center; margin-top: 15px; color: var(--accent); font-size: 12px; font-weight: 600; text-decoration: none; }
.forgot-link:hover { color: var(--accent-hover); }

/* ===== SCROLL REVEAL ===== */
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }
noscript ~ * .scroll-reveal, .no-js .scroll-reveal { opacity: 1 !important; transform: none !important; }

/* ===== PAGE HERO HEADER (dynamic title per page) ===== */
.page-hero-header {
    max-width: var(--max-width);
    margin: 30px auto 10px;
    padding: 0 20px;
    text-align: center;
}
.page-hero-title {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -1px;
    margin: 0 0 10px;
    background: linear-gradient(135deg, #ffffff 0%, #00d084 50%, #00ff9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.1;
    animation: titleGlow 3s ease-in-out infinite alternate;
}
@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 8px rgba(0, 208, 132, 0.3)); }
    100% { filter: drop-shadow(0 0 20px rgba(0, 208, 132, 0.5)); }
}
.page-hero-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .page-hero-header { margin: 20px auto 5px; }
    .page-hero-title { font-size: 28px; }
    .page-hero-subtitle { font-size: 12px; }
}

/* ===== CONTENT WRAPPER (inner pages) ===== */
.site-content-wrapper { max-width: var(--max-width); margin: 20px auto 60px; padding: 0 20px; min-height: 60vh; }
.page-content-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 40px; color: var(--text-main); }
.page-content-box--download { background: transparent; border: none; padding: 0; }
.page-content-box h2, .page-content-box h3 { color: var(--accent); margin-bottom: 15px; }
.page-content-box table { width: 100%; border-collapse: collapse; }
.page-content-box table th { background: var(--bg-panel); color: var(--accent); padding: 10px; text-align: left; font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--border); }
.page-content-box table td { padding: 10px; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--text-muted); }
.page-content-box input[type="text"], .page-content-box input[type="password"], .page-content-box input[type="email"], .page-content-box select, .page-content-box textarea {
    width: 100%; padding: 10px 14px; background: var(--bg-root); border: 1px solid var(--border); border-radius: 8px; color: var(--text-main); font-size: 14px; font-family: var(--font-main);
}
.page-content-box input[type="submit"], .page-content-box button[type="submit"] {
    background: var(--accent); color: #000; border: none; padding: 12px 30px; border-radius: 8px; font-weight: 800; font-size: 13px; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
}
.page-content-box input[type="submit"]:hover, .page-content-box button[type="submit"]:hover { background: var(--accent-hover); }
.page-content-box a { color: var(--accent); text-decoration: none; }
.page-content-box a:hover { color: var(--accent-hover); }

/* ===== LEGACY VIEW COMPATIBILITY ===== */
.page-content-box .content,
.page-content-box .container.main,
.page-content-box #formulario {
    background: transparent !important;
    border: none !important;
    margin-top: 0 !important;
    padding: 0 !important;
    color: var(--text-main) !important;
    position: relative;
}
.page-content-box .spacer { display: none !important; }
.page-content-box img#pre { display: none !important; }
.page-content-box .content > .container { margin-top: 0 !important; }
.page-content-box h5, .page-content-box h4 { color: var(--text-main); }
.page-content-box p, .page-content-box span, .page-content-box div, .page-content-box label, .page-content-box li { color: var(--text-muted); }
.page-content-box--download p,
.page-content-box--download span,
.page-content-box--download div,
.page-content-box--download li,
.page-content-box--download h2,
.page-content-box--download h3,
.page-content-box--download h4,
.page-content-box--download h5,
.page-content-box--download a,
.page-content-box--download strong,
.page-content-box--download label { color: inherit; }
.page-content-box strong, .page-content-box b { color: var(--text-main); }
.page-content-box hr { border-color: var(--border); }
.page-content-box .note { color: #666; font-size: 11px; }
.page-content-box center { color: var(--text-main); }
.page-content-box input[type="text"],
.page-content-box input[type="password"],
.page-content-box input[type="email"],
.page-content-box input[type="number"],
.page-content-box input[type="tel"],
.page-content-box select,
.page-content-box textarea {
    width: 100%; padding: 10px 14px; background: var(--bg-root) !important; border: 1px solid var(--border) !important; border-radius: 8px; color: var(--text-main) !important; font-size: 14px; font-family: var(--font-main);
}
.page-content-box input[type="submit"],
.page-content-box button[type="submit"],
.page-content-box .btn,
.page-content-box input.btn {
    background: var(--accent) !important; color: #000 !important; border: none !important; padding: 12px 30px; border-radius: 8px; font-weight: 800; font-size: 13px; cursor: pointer; text-transform: uppercase; letter-spacing: 1px; transition: 0.3s;
}
.page-content-box input[type="submit"]:hover,
.page-content-box button[type="submit"]:hover { background: var(--accent-hover) !important; }
.page-content-box .auto-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; }
.page-content-box .auto-grid > * { background: var(--bg-panel); border: 1px solid var(--border); border-radius: 10px; padding: 15px; text-align: center; }
.page-content-box .card,
.page-content-box .panel { background: var(--bg-panel) !important; border: 1px solid var(--border) !important; border-radius: 10px; color: var(--text-main) !important; }
.page-content-box img { max-width: 100%; height: auto; }
.page-content-box--download img { max-width: none; }
.page-content-box table { background: transparent; }
.page-content-box table tr:hover td { background: rgba(255,255,255,0.02); }
.page-content-box .alert, .page-content-box .notice { background: rgba(0,208,132,0.1); border: 1px solid rgba(0,208,132,0.3); color: var(--accent); padding: 12px; border-radius: 8px; }
.page-content-box .alert-danger, .page-content-box .error { background: rgba(255,60,60,0.1) !important; border-color: rgba(255,60,60,0.3) !important; color: #ff4444 !important; }
.page-content-box .container.main { min-height: auto !important; max-width: 100% !important; margin-top: 0 !important; }
.page-content-box .submenu, .page-content-box .sub-menu { background: transparent !important; }
.page-content-box .col-md-8 { max-width: 100% !important; flex: 0 0 100% !important; }

/* ===== FLUX MESSAGES ===== */
.flux-message { background: rgba(0,208,132,0.1); border: 1px solid rgba(0,208,132,0.3); color: var(--accent); padding: 12px; border-radius: 8px; margin-bottom: 20px; font-size: 13px; }
.login-error { background: rgba(255,0,0,0.1); border: 1px solid rgba(255,0,0,0.3); color: #ff4444; padding: 10px; border-radius: 6px; font-size: 13px; font-weight: 700; margin-bottom: 15px; text-align: center; }

/* ===== DOWNLOAD PAGE ===== */
.dl-wrap { max-width: 980px; margin: 0 auto; padding: 40px 20px 48px; color: #e2e2e2; }
.dl-wrap .dl-hero { position: relative; border-radius: 18px; overflow: hidden; margin-bottom: 36px; border: 1px solid rgba(0,208,132,0.1); height: 220px; }
.dl-wrap .dl-hero img.dl-hero-bg { width: 100%; height: 100%; object-fit: cover; display: block; max-width: none; }
.dl-wrap .dl-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 50%, rgba(10,10,10,0.85) 100%); display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; padding: 30px; }
.dl-wrap .dl-hero-title { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 8px; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.dl-wrap .dl-hero-title span { color: #00d084; }
.dl-wrap .dl-hero-sub { font-size: 0.9rem; color: rgba(255,255,255,0.65); max-width: 500px; line-height: 1.6; }
.dl-wrap .dl-hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(0,208,132,0.1); border: 1px solid rgba(0,208,132,0.25); padding: 6px 16px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; color: #00d084; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 14px; }
.dl-wrap .mascot-left, .dl-wrap .mascot-right { position: absolute; z-index: 5; pointer-events: none; }
.dl-wrap .mascot-left { left: 20px; bottom: 10px; width: 100px; animation: float-mascot 3s ease-in-out infinite; }
.dl-wrap .mascot-right { right: 20px; bottom: 10px; width: 90px; animation: float-mascot 3s ease-in-out infinite 0.5s; }
.dl-wrap .mascot-left img, .dl-wrap .mascot-right img { width: 100%; height: auto; filter: drop-shadow(0 4px 20px rgba(0,208,132,0.3)); max-width: none; }
@keyframes float-mascot { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.dl-wrap .dl-section-title { text-align: center; margin-bottom: 28px; }
.dl-wrap .dl-section-title h2 { font-family: 'Cinzel', serif; font-size: 1.25rem; color: #fff; font-weight: 700; margin-bottom: 6px; }
.dl-wrap .dl-section-title .accent-line { width: 50px; height: 2px; background: linear-gradient(90deg, transparent, #00d084, transparent); margin: 0 auto; }
.dl-wrap .dl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.dl-wrap .dl-card { background: #0f0f0f; border: 1px solid rgba(0,208,132,0.1); border-radius: 16px; overflow: hidden; transition: all 0.4s cubic-bezier(0.22,0.61,0.36,1); position: relative; }
.dl-wrap .dl-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; transition: opacity 0.4s; opacity: 0; }
.dl-wrap .dl-card.full::before { background: linear-gradient(90deg, transparent, #00d084, transparent); }
.dl-wrap .dl-card.lite::before { background: linear-gradient(90deg, transparent, #00b4d8, transparent); }
.dl-wrap .dl-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.dl-wrap .dl-card:hover::before { opacity: 1; }
.dl-wrap .dl-card.full:hover { border-color: rgba(0,208,132,0.35); }
.dl-wrap .dl-card.lite:hover { border-color: rgba(0,180,216,0.35); }
.dl-wrap .card-head { padding: 24px 24px 0; display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.dl-wrap .card-mascot { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; }
.dl-wrap .full .card-mascot { background: radial-gradient(circle, rgba(0,208,132,0.12) 0%, transparent 70%); border: 1px solid rgba(0,208,132,0.15); }
.dl-wrap .lite .card-mascot { background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%); border: 1px solid rgba(0,180,216,0.15); }
.dl-wrap .card-mascot img { width: 50px; height: 50px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3)); max-width: none; }
.dl-wrap .card-info { flex: 1; }
.dl-wrap .card-tag { display: inline-block; font-size: 0.58rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 10px; border-radius: 5px; margin-bottom: 5px; }
.dl-wrap .full .card-tag { background: rgba(0,208,132,0.1); color: #00d084; }
.dl-wrap .lite .card-tag { background: rgba(0,180,216,0.1); color: #00b4d8; }
.dl-wrap .card-name { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 700; color: #fff; }
.dl-wrap .card-ver { font-size: 0.72rem; color: #6b6b6b; margin-top: 2px; display: flex; align-items: center; gap: 5px; }
.dl-wrap .full .card-ver i { color: #00d084; font-size: 0.6rem; }
.dl-wrap .lite .card-ver i { color: #00b4d8; font-size: 0.6rem; }
.dl-wrap .card-body { padding: 0 24px 24px; }
.dl-wrap .card-desc { font-size: 0.82rem; color: #6b6b6b; line-height: 1.7; margin-bottom: 16px; }
.dl-wrap .card-desc strong { color: #ccc; font-weight: 600; }
.dl-wrap .size-row { display: flex; align-items: center; gap: 10px; padding: 10px 14px; background: #141414; border-radius: 10px; margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.03); }
.dl-wrap .size-row i { font-size: 0.95rem; }
.dl-wrap .full .size-row i { color: #00d084; }
.dl-wrap .lite .size-row i { color: #00b4d8; }
.dl-wrap .size-val { font-weight: 800; font-size: 0.9rem; color: #fff; }
.dl-wrap .size-label { font-size: 0.7rem; color: #6b6b6b; margin-left: auto; }
.dl-wrap .feat-list { list-style: none; margin-bottom: 20px; padding: 0; display: grid; gap: 6px; }
.dl-wrap .feat-list li { display: flex; align-items: center; gap: 9px; font-size: 0.78rem; color: #999; padding: 4px 0; }
.dl-wrap .feat-list li i { font-size: 0.6rem; width: 14px; text-align: center; }
.dl-wrap .full .feat-list li i { color: #00d084; }
.dl-wrap .lite .feat-list li i { color: #00b4d8; }
.dl-wrap .btn-stack { display: flex; flex-direction: column; gap: 8px; }
.dl-wrap .btn-dl { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 18px; border-radius: 12px; font-size: 0.82rem; font-weight: 700; text-decoration: none; transition: all 0.3s; cursor: pointer; position: relative; overflow: hidden; letter-spacing: 0.3px; }
.dl-wrap .btn-dl::after { content: ''; position: absolute; inset: 0; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent); transform: translateX(-100%); transition: transform 0.6s; }
.dl-wrap .btn-dl:hover::after { transform: translateX(100%); }
.dl-wrap .btn-dl i { font-size: 1rem; }
.dl-wrap .btn-dl .btn-host { font-size: 0.62rem; font-weight: 400; opacity: 0.65; margin-left: auto; }
.dl-wrap .full .btn-primary { background: linear-gradient(135deg, #00d084, #00a86b); color: #fff; border: none; }
.dl-wrap .full .btn-primary:hover { box-shadow: 0 6px 28px rgba(0,208,132,0.35); transform: translateY(-2px); }
.dl-wrap .lite .btn-primary { background: linear-gradient(135deg, #00b4d8, #0096c7); color: #fff; border: none; }
.dl-wrap .lite .btn-primary:hover { box-shadow: 0 6px 28px rgba(0,180,216,0.35); transform: translateY(-2px); }
.dl-wrap .btn-secondary { background: rgba(255,255,255,0.03); color: #888; border: 1px solid rgba(255,255,255,0.07); }
.dl-wrap .btn-secondary:hover { background: rgba(255,255,255,0.06); color: #bbb; border-color: rgba(255,255,255,0.14); }
.dl-wrap .dl-info-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 24px; }
.dl-wrap .dl-info-item { background: #0f0f0f; border: 1px solid rgba(0,208,132,0.1); border-radius: 12px; padding: 20px 16px; text-align: center; transition: all 0.3s; }
.dl-wrap .dl-info-item:hover { border-color: rgba(0,208,132,0.3); transform: translateY(-2px); }
.dl-wrap .dl-info-item .ii-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(0,208,132,0.08); border: 1px solid rgba(0,208,132,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.dl-wrap .dl-info-item .ii-icon i { font-size: 1rem; color: #00d084; }
.dl-wrap .dl-info-item h4 { font-size: 0.82rem; color: #fff; font-weight: 700; margin-bottom: 4px; }
.dl-wrap .dl-info-item p { font-size: 0.7rem; color: #6b6b6b; line-height: 1.5; }
.dl-wrap .dl-tut-box { background: #0f0f0f; border: 1px solid rgba(0,208,132,0.1); border-radius: 14px; padding: 28px; }
.dl-wrap .dl-tut-box h3 { font-family: 'Cinzel', serif; font-size: 1rem; text-align: center; margin-bottom: 22px; color: #fff; font-weight: 600; }
.dl-wrap .dl-tut-box h3 i { color: #00d084; margin-right: 6px; }
.dl-wrap .dl-tut-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dl-wrap .dl-tut-step { text-align: center; position: relative; }
.dl-wrap .dl-tut-step:not(:last-child)::after { content: ''; position: absolute; top: 20px; right: -10px; width: 6px; height: 1px; background: rgba(0,208,132,0.3); }
.dl-wrap .dl-tut-num { width: 40px; height: 40px; border-radius: 50%; background: rgba(0,208,132,0.08); border: 1.5px solid rgba(0,208,132,0.25); display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-family: 'Cinzel', serif; font-weight: 800; font-size: 0.95rem; color: #00d084; }
.dl-wrap .dl-tut-step h5 { font-size: 0.78rem; color: #fff; font-weight: 600; margin-bottom: 3px; }
.dl-wrap .dl-tut-step p { font-size: 0.68rem; color: #6b6b6b; line-height: 1.45; }
.dl-wrap .dl-sparkles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 3; }
.dl-wrap .dl-sparkle { position: absolute; width: 3px; height: 3px; background: #00d084; border-radius: 50%; opacity: 0; animation: sparkle-float linear infinite; }
@keyframes sparkle-float { 0% { opacity: 0; transform: translateY(0) scale(0); } 15% { opacity: 0.8; } 85% { opacity: 0.4; } 100% { opacity: 0; transform: translateY(-120px) scale(1.2); } }
@media (max-width: 768px) {
    .dl-wrap .dl-grid { grid-template-columns: 1fr; }
    .dl-wrap .dl-info-strip { grid-template-columns: 1fr; }
    .dl-wrap .dl-tut-steps { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .dl-wrap .dl-tut-step::after { display: none; }
    .dl-wrap .mascot-left, .dl-wrap .mascot-right { width: 60px; }
    .dl-wrap .dl-hero { height: 180px; }
    .dl-wrap .dl-hero-title { font-size: 1.5rem; }
}
@media (max-width: 480px) {
    .dl-wrap .dl-tut-steps { grid-template-columns: 1fr; }
    .dl-wrap { padding: 24px 14px; }
    .dl-wrap .mascot-left, .dl-wrap .mascot-right { display: none; }
    .dl-wrap .dl-hero { height: 160px; }
    .dl-wrap .dl-hero-title { font-size: 1.3rem; }
    .dl-wrap .card-head { flex-direction: column; text-align: center; }
}

/* ===== TOPBAR SCROLL ===== */
.topbar.scrolled .top-upper { display: none; }
.topbar.scrolled .nav-area { border-top: none; }

/* ===== NEWS SECTION OVERRIDES ===== */
.news-section { padding: 80px 20px; background: #050505; }
.news-container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.news-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.news-title-group { display: flex; align-items: center; gap: 20px; }
.news-icon { font-size: 32px; color: var(--accent); }
.news-title-wrapper h2 { font-size: 28px; font-weight: 900; text-transform: uppercase; color: #fff; margin: 0 0 5px 0; letter-spacing: 1.5px; }
.news-subtitle { font-size: 12px; color: #666; text-transform: uppercase; letter-spacing: 1px; margin: 0; }
.news-nav { display: flex; gap: 10px; }
.news-nav-btn { width: 44px; height: 44px; background: transparent; border: 2px solid #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; color: #aaa; font-size: 16px; }
.news-nav-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(0, 208, 132, 0.1); }
.news-tabs { display: flex; gap: 0; border-bottom: 2px solid #1a1a1a; margin-bottom: 40px; }
.news-tab { padding: 15px 30px; background: transparent; border: none; color: #666; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.3s; position: relative; border-bottom: 3px solid transparent; margin-bottom: -2px; }
.news-tab:hover { color: #fff; }
.news-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.news-tab span { display: block; font-size: 10px; font-weight: 600; margin-top: 3px; opacity: 0.7; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.news-card { background: linear-gradient(145deg, #0a0a0a, #0f0f0f); border: 1px solid #1a1a1a; border-radius: 12px; overflow: hidden; transition: 0.3s; cursor: pointer; position: relative; }
.news-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: 0 10px 30px rgba(0, 208, 132, 0.2); }
.news-thumbnail { width: 100%; height: 200px; background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%); position: relative; overflow: hidden; }
.news-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.news-badge { position: absolute; top: 12px; right: 12px; background: var(--accent); color: #000; padding: 4px 14px; border-radius: 20px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px; z-index: 2; }
.news-content { padding: 20px; }
.news-date { font-size: 11px; color: #666; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; font-weight: 600; }
.news-card-title { font-size: 15px; font-weight: 800; color: #fff; margin: 0 0 10px 0; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-excerpt { font-size: 13px; color: #888; line-height: 1.5; margin-bottom: 15px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-read-more { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none; }
.news-read-more:hover { gap: 8px; }
.news-empty { color: #666; text-align: center; padding: 40px 0; font-size: 14px; }

/* ===== WOE SECTION ===== */
.woe-section { padding: 80px 0; background: var(--bg-panel); }
.woe-schedule { display: flex; gap: 16px; justify-content: center; margin-bottom: 50px; flex-wrap: wrap; }
.woe-time-card { display: flex; align-items: center; gap: 10px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 14px 24px; }
.woe-time-card i { color: var(--accent); font-size: 18px; }
.woe-time-card span { color: var(--text-main); font-weight: 700; font-size: 14px; }
.woe-time-detail { color: var(--text-muted); font-weight: 600; font-size: 13px; }
.castle-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.castle-card { display: flex; align-items: center; gap: 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; transition: 0.3s; }
.castle-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.castle-emblem-placeholder { width: 48px; height: 48px; background: var(--bg-root); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 20px; }
.castle-info { flex: 1; }
.castle-name { color: var(--accent); font-size: 15px; font-weight: 800; margin: 0 0 8px 0; }
.castle-detail { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 4px; }
.castle-label { color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.castle-value { color: var(--text-main); font-weight: 600; }

/* ===== FAMILY SECTION ===== */
.family-section { padding: 80px 0; background: var(--bg-panel); }
.family-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.action-btn { display: block; background: linear-gradient(145deg, #0f0f0f, #141414); border: 2px solid #1a1a1a; border-radius: 12px; padding: 25px 20px; text-align: center; cursor: pointer; transition: 0.3s; text-decoration: none; color: inherit; position: relative; overflow: hidden; }
.action-btn:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0, 208, 132, 0.2); }
.action-btn--outline { background: transparent; border: 1px solid var(--accent); color: var(--accent); }
.action-btn--outline:hover { background: var(--accent); color: #000; }

/* ===== RULES SECTION ===== */
.rules-section { background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%); padding: 100px 20px; position: relative; overflow: hidden; border-top: 1px solid #1a1a1a; }
.rules-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(circle at 30% 50%, rgba(0, 208, 132, 0.05), transparent 50%), radial-gradient(circle at 70% 50%, rgba(0, 208, 132, 0.03), transparent 50%); pointer-events: none; }
.rules-container { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: center; position: relative; z-index: 1; }
.rules-content { padding-right: 40px; }
.rules-header { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; }
.rules-icon { width: 50px; height: 50px; background: rgba(0, 208, 132, 0.1); border: 2px solid var(--accent); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--accent); }
.rules-header h2 { font-size: 32px; font-weight: 900; text-transform: uppercase; color: #fff; margin: 0; letter-spacing: 1.5px; }
.rules-subtitle { font-size: 13px; color: #666; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 30px; }
.rules-blocks { display: flex; flex-direction: column; gap: 25px; }
.rules-block { background: linear-gradient(145deg, #0f0f0f, #141414); border: 1px solid #1a1a1a; border-left: 4px solid var(--accent); border-radius: 12px; padding: 25px; transition: 0.3s; }
.rules-block:hover { border-color: var(--accent); box-shadow: 0 10px 30px rgba(0, 208, 132, 0.15); transform: translateX(5px); }
.rules-block p { font-size: 14px; color: #aaa; line-height: 1.8; margin: 0; }
.rules-character { position: relative; display: flex; align-items: center; justify-content: center; }
.rules-character img { max-width: 100%; max-height: 450px; height: auto; filter: drop-shadow(0 20px 50px rgba(0, 208, 132, 0.3)); animation: float 3s ease-in-out infinite; }

/* ===== SECTION COMMON ===== */
.section-container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-badge { display: inline-block; background: rgba(0,208,132,0.1); border: 1px solid rgba(0,208,132,0.2); color: var(--accent); padding: 6px 16px; border-radius: 20px; font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.section-title { font-family: 'Cinzel', serif; font-size: 32px; font-weight: 800; color: var(--text-main); margin-bottom: 12px; }
.section-subtitle { color: var(--text-muted); font-size: 14px; font-weight: 500; }

/* ===== ROADMAP ===== */
.roadmap-section { padding: 80px 0; background: linear-gradient(180deg, #000000 0%, #050505 40%, #0a0a0a 100%); }
.roadmap-timeline { display: flex; justify-content: center; gap: 0; position: relative; max-width: 900px; margin: 0 auto; }
.roadmap-timeline::before { content: ''; position: absolute; top: 12px; left: 15%; right: 15%; height: 2px; background: var(--border); }
.rm-item { text-align: center; flex: 1; position: relative; padding-top: 35px; }
.rm-dot { width: 24px; height: 24px; border-radius: 50%; border: 3px solid var(--border); background: var(--bg-root); position: absolute; top: 0; left: 50%; transform: translateX(-50%); z-index: 1; transition: 0.3s; }
.rm-item.done .rm-dot { border-color: var(--accent); background: var(--accent); }
.rm-item.active .rm-dot { border-color: var(--accent); background: var(--bg-root); box-shadow: 0 0 15px var(--accent-glow); }
.rm-content { padding: 10px; }
.rm-date { font-size: 11px; color: var(--text-muted); font-weight: 700; letter-spacing: 1px; }
.rm-content h4 { font-size: 14px; font-weight: 800; color: var(--text-main); margin: 5px 0; }
.rm-content p { font-size: 12px; color: var(--text-muted); }

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .site-content-wrapper { margin-top: 15px; }
    .page-content-box { padding: 20px; }
    .castle-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .rules-grid { grid-template-columns: 1fr; }
    .roadmap-timeline { flex-direction: column; align-items: flex-start; padding-left: 30px; }
    .roadmap-timeline::before { left: 11px; top: 0; bottom: 0; width: 2px; height: auto; }
    .rm-item { padding-top: 0; padding-left: 40px; margin-bottom: 30px; text-align: left; }
    .rm-dot { left: -30px; top: 0; transform: none; }
    .family-title { font-size: 22px; }
    .section-title { font-size: 24px; }
}

/* ===== FA ICON OVERRIDES ===== */
.shortcut-icon i { font-size: 28px; color: var(--accent); }
.forgot-link { display: block; text-align: center; margin-top: 15px; color: var(--accent); font-size: 12px; font-weight: 600; text-decoration: none; }
.forgot-link:hover { color: var(--accent-hover); }
.login-error { background: rgba(255,0,0,0.1); border: 1px solid rgba(255,0,0,0.3); color: #ff4444; padding: 10px; border-radius: 6px; font-size: 13px; font-weight: 700; margin-bottom: 15px; text-align: center; }
.login-tabs { display: flex; gap: 0; border-bottom: 1px solid #1a1a1a; margin-bottom: 20px; }
.tab-btn { flex: 1; padding: 10px; text-align: center; font-size: 12px; font-weight: 800; text-transform: uppercase; color: #666; cursor: pointer; border-bottom: 2px solid transparent; transition: 0.3s; }
.tab-btn:hover { color: #fff; }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================
   FONT AWESOME ::before - ICONES VIA CSS
   (Identico ao Final 1 / styles.css)
   ============================================ */

.action-icon::before,
.stat-icon::before,
.news-icon::before,
.rules-icon::before,
.phase-icon::before,
.shortcut-icon::before,
.login-header h3::before,
.login-tabs .tab-btn::before,
.nav-item::before {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  display: inline-block !important;
  font-style: normal !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

/* MENU SUPERIOR - LARANJA */
.nav-item::before {
  display: block !important;
  text-align: center !important;
  margin: 0 auto 4px auto !important;
  color: #ff8c00 !important;
  font-size: 16px !important;
  line-height: 1 !important;
  filter: drop-shadow(0 0 6px rgba(255, 122, 24, 0.25));
}
.nav-item:hover::before,
.nav-item.active::before {
  color: var(--accent) !important;
  filter: drop-shadow(0 0 10px rgba(0, 208, 132, 0.5));
}
.nav-item:nth-child(1)::before { content: "\f015" !important; }
.nav-item:nth-child(2)::before { content: "\f234" !important; }
.nav-item:nth-child(3)::before { content: "\f019" !important; }
.nav-item:nth-child(4)::before { content: "\f3d1" !important; }
.nav-item:nth-child(5)::before { content: "\f05a" !important; }
.nav-item:nth-child(6)::before { content: "\f086" !important; }

/* SHORTCUTS */
.shortcut-icon::before {
  font-size: 1.2em !important;
  display: block !important;
  margin-bottom: 6px !important;
}
.shortcut-card:nth-child(1) .shortcut-icon::before {
  content: "\f3ed" !important;
  color: var(--accent) !important;
}
.shortcut-card:nth-child(2) .shortcut-icon::before {
  content: "\f392" !important;
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  color: var(--accent) !important;
}
.shortcut-card:nth-child(3) .shortcut-icon::before {
  content: "\f232" !important;
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
  color: var(--accent) !important;
}

/* PHASES */
.phase-icon {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 3px solid !important;
  margin: 0 auto 15px !important;
  position: relative !important;
}
.phase-icon::before {
  font-size: 2em !important;
  line-height: 1 !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}
.phase-card:nth-child(1) .phase-icon { border-color: #00d084 !important; background: rgba(0, 208, 132, 0.1) !important; }
.phase-card:nth-child(1) .phase-icon::before { content: "\f023" !important; color: #00d084 !important; }
.phase-card:nth-child(2) .phase-icon { border-color: #00d084 !important; background: rgba(0, 208, 132, 0.1) !important; }
.phase-card:nth-child(2) .phase-icon::before { content: "\f09c" !important; color: #00d084 !important; }
.phase-card:nth-child(3) .phase-icon { border-color: #00d084 !important; background: rgba(0, 208, 132, 0.1) !important; }
.phase-card:nth-child(3) .phase-icon::before { content: "\f135" !important; color: #00d084 !important; }
.phase-icon i { display: none; }

@keyframes pulse-border {
  0%, 100% { border-color: #ff8c00; box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.7); }
  50% { border-color: #ffa500; box-shadow: 0 0 0 10px rgba(255, 140, 0, 0); }
}
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* FOOTER */
footer ul li::before,
footer a::before,
.footer-links li::before,
.footer-section li::before {
  content: none !important;
  display: none !important;
}
footer ul li a::before,
footer .footer-links a::before {
  content: "\203a" !important;
  margin-right: 8px !important;
  color: var(--accent, #00d084) !important;
  font-weight: normal !important;
  font-family: inherit !important;
  display: inline-block !important;
}
footer h3::before,
footer h4::before {
  content: none !important;
}

/* AREA DO JOGADOR */
.login-header h3::before {
  content: "\f2bd" !important;
  margin-right: 12px !important;
  color: var(--accent, #00d084) !important;
  font-size: 1.2em !important;
}
.login-tabs .tab-btn:nth-child(1)::before {
  content: "\f2f6" !important;
  margin-right: 6px !important;
}
.login-tabs .tab-btn:nth-child(2)::before {
  content: "\f1da" !important;
  margin-right: 6px !important;
}

/* ACTIONS */
.family-actions .action-btn:nth-child(1) .action-icon::before { content: "\f234" !important; }
.family-actions .action-btn:nth-child(2) .action-icon::before { content: "\f019" !important; }
.family-actions .action-btn:nth-child(3) .action-icon::before { content: "\f005" !important; }

/* NEWS & RULES */
.news-icon::before { content: "\f1ea" !important; }
.rules-icon::before { content: "\f0e3" !important; }

/* MISC ICON SIZES */
.btn-panel i { margin-right: 8px; }
.btn-panel::before {
  content: "\f007" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  margin-right: 8px !important;
  font-size: 12px !important;
}
.nav-menu .nav-item i { display: none; }
.shortcut-icon i { display: none; }
.action-icon i { display: none; }
.rules-icon i { display: none; }
.news-icon i { display: none; }
footer .footer-section ul li a i { margin-right: 6px; }

/* ============================================
   NOVIDADES & EVENTOS - NEWS SECTION
   ============================================ */
.news-section {
  background: #050505;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.news-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 208, 132, 0.05), transparent 60%);
  pointer-events: none;
}
.news-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.news-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.news-title-group {
  display: flex;
  align-items: center;
  gap: 20px;
}
.news-icon {
  font-size: 32px;
  color: var(--accent);
}
.news-icon::before {
  content: "\f1ea" !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}
.news-title-wrapper h2 {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 5px 0;
  letter-spacing: 1.5px;
}
.news-subtitle {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
.news-nav {
  display: flex;
  gap: 10px;
}
.news-nav-btn {
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  color: #aaa;
  font-size: 14px;
}
.news-nav-btn i { display: inline-block !important; color: inherit !important; }
.news-nav-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 208, 132, 0.1);
}
.news-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #1a1a1a;
  margin-bottom: 40px;
}
.news-tab {
  padding: 15px 30px;
  background: transparent;
  border: none;
  color: #666;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  border-bottom: 3px solid transparent;
  font-family: inherit;
}
.news-tab:hover { color: #fff; }
.news-tab.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.news-tab span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  margin-top: 3px;
  opacity: 0.7;
}
.news-panel { display: none; }
.news-panel.active { display: block; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.news-card {
  background: linear-gradient(145deg, #0a0a0a, #0f0f0f);
  border: 1px solid #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
}
.news-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(0, 208, 132, 0.2);
}
.news-thumbnail {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}
.news-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #000;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-content {
  padding: 20px;
}
.news-date {
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.news-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-excerpt {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  margin: 0 0 15px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: 0.3s;
}
.news-read-more:hover {
  color: var(--accent-hover, #00e68a);
  gap: 10px;
}
.news-empty {
  color: #666;
  text-align: center;
  grid-column: 1 / -1;
  padding: 40px 0;
  font-size: 14px;
}
@media (max-width: 768px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .news-tabs { flex-wrap: wrap; }
  .news-tab { padding: 10px 15px; font-size: 11px; }
}

/* ===== REGISTRATION FORM ===== */
.reg-wrap { background: transparent; margin: 0 auto; padding: 1.5rem 0; overflow: hidden; font-family: 'Poppins','Inter',sans-serif; max-width: 520px; }
.reg-wrap *, .reg-wrap *::before, .reg-wrap *::after { box-sizing: border-box; }
.reg-title { font-family: 'Cinzel',serif; font-size: 1.35rem; color: #e2e8f0; text-align: center; margin: 0 0 0.3rem; letter-spacing: 0.5px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.reg-title > i { font-size: 1.1rem; color: #00d084; }
.reg-subtitle { text-align: center; color: #94a3b8; font-size: 0.82rem; margin: 0 0 1.2rem; }
.reg-notes { background: rgba(0,150,136,0.08); border: 1px solid rgba(0,150,136,0.2); border-radius: 10px; padding: 12px 16px; margin-bottom: 1rem; font-size: 0.76rem; color: #94a3b8; line-height: 1.7; }
.reg-notes p { margin: 0 0 2px; }
.reg-notes strong { color: #00d084; }
.reg-notes a { color: #00d084 !important; text-decoration: none; }
.reg-notes a:hover { text-decoration: underline; }
.reg-error { display: flex; align-items: center; gap: 10px; background: rgba(220,38,38,0.12); border: 1px solid rgba(220,38,38,0.3); border-radius: 10px; padding: 12px 16px; margin-bottom: 1rem; color: #ffd5db; font-size: 0.85rem; animation: regShake 0.4s ease; }
.reg-error > i { color: #f87171; font-size: 1.1rem; flex-shrink: 0; }
@keyframes regShake { 0%,100%{transform:translateX(0)} 20%{transform:translateX(-6px)} 40%{transform:translateX(6px)} 60%{transform:translateX(-4px)} 80%{transform:translateX(4px)} }
.reg-field { margin-bottom: 0.85rem; }
.reg-field label { display: block !important; margin-bottom: 0.35rem; color: #00d084 !important; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; background: transparent !important; padding: 0 !important; border: none !important; width: auto !important; }
.reg-input-wrap { position: relative !important; display: block; overflow: visible !important; }
.reg-input-wrap i.reg-icon { position: absolute !important; left: 1rem !important; top: 50% !important; transform: translateY(-50%) !important; color: #00d084; font-size: 0.9rem; z-index: 10; pointer-events: none; display: inline-block !important; visibility: visible !important; opacity: 1 !important; font-style: normal !important; line-height: 1; width: 1.2rem; text-align: center; transition: color 0.3s ease; }
.reg-wrap .reg-input { width: 100% !important; padding: 0.75rem 1rem 0.75rem 2.7rem !important; background: rgba(255,255,255,0.04) !important; border: 1px solid rgba(255,255,255,0.1) !important; border-radius: 10px !important; color: #00d084 !important; font-family: 'Poppins',sans-serif; font-size: 0.85rem !important; transition: all 0.25s ease; -webkit-appearance: none; position: relative; z-index: 1; }
.reg-wrap .reg-input::placeholder { color: rgba(0, 208, 132, 0.5) !important; }
.reg-wrap .reg-input:focus { outline: none !important; border-color: #00d084 !important; background: rgba(0,208,132,0.04) !important; box-shadow: 0 0 0 3px rgba(0,208,132,0.08) !important; }
.reg-input-wrap:focus-within i.reg-icon { color: #00d084 !important; }
.reg-wrap select.reg-input { -webkit-appearance: none !important; -moz-appearance: none !important; appearance: none !important; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%2394a3b8' d='M6 8L0 0h12z'/%3E%3C/svg%3E") !important; background-repeat: no-repeat !important; background-position: right 1rem center !important; background-size: 12px !important; cursor: pointer; }
.reg-wrap select.reg-input option { background: #1e293b; color: #e2e8f0; }
.reg-wrap input[type="date"].reg-input { color-scheme: dark; }
.reg-double { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.reg-live-msg { display: block; margin-top: 4px; font-size: 0.73rem; min-height: 16px; transition: color 0.2s; }
.reg-live-msg.ok { color: #00d084 !important; }
.reg-live-msg.err { color: #f87171 !important; }
.reg-field.field-error .reg-input { border-color: rgba(248,113,113,0.5) !important; box-shadow: 0 0 0 2px rgba(248,113,113,0.1) !important; }
.reg-field.field-error i.reg-icon { color: #f87171 !important; }
.reg-field.field-error .reg-input-wrap::before { color: #f87171 !important; }
.reg-turnstile { display: flex; justify-content: center; margin: 16px 0 6px; }

.how-found-section { background: rgba(0,150,136,0.05); border: 1px solid rgba(0,150,136,0.15); border-radius: 12px; padding: 16px; margin-bottom: 0.85rem; }
.how-found-section .section-title { color: #00d084; font-size: 0.8rem; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.how-found-options { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.how-found-option { position: relative; }
.how-found-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.how-found-option label { display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: rgba(255,255,255,0.04); border: 2px solid rgba(255,255,255,0.1); border-radius: 8px; cursor: pointer; transition: all 0.2s; color: #94a3b8; font-size: 0.8rem; }
.how-found-option label:hover { border-color: rgba(0,208,132,0.3); background: rgba(0,208,132,0.05); }
.how-found-option input[type="radio"]:checked + label { border-color: #00d084; background: rgba(0,208,132,0.1); color: #00d084; }
.how-found-option label img { width: 20px; height: 20px; object-fit: contain; }

.tos-checkbox-label { display: flex !important; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 0.82rem; color: #94a3b8; line-height: 1.5; text-transform: none; letter-spacing: normal; font-weight: 400; }
.tos-checkbox-label input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: #00d084; cursor: pointer; flex-shrink: 0; }
.tos-checkbox-label a { color: #00d084; text-decoration: underline; }
.tos-checkbox-label a:hover { color: #00ff9d; }

.reg-wrap .reg-submit { width: auto !important; min-width: 280px; padding: 0.8rem 2.5rem !important; background: linear-gradient(135deg, #00d084, #00a86b) !important; border: none !important; border-radius: 999px !important; color: #0a0e1a !important; font-weight: 700 !important; font-size: 0.82rem !important; font-family: 'Cinzel',serif; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; margin: 1rem auto 0; box-shadow: 0 6px 20px rgba(0,208,132,0.25); transition: all 0.25s; display: flex !important; align-items: center; justify-content: center; gap: 8px; }
.reg-wrap .reg-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,208,132,0.4); background: linear-gradient(135deg, #00ff9d, #00cc7a) !important; }
.reg-links { margin-top: 1rem; text-align: center; font-size: 0.78rem; }
.reg-links a { color: #94a3b8 !important; text-decoration: none; margin: 0 0.5rem; transition: color 0.3s; }
.reg-links a:hover { color: #00d084 !important; }
@media (max-width: 600px) {
    .reg-double { grid-template-columns: 1fr; }
    .reg-wrap { max-width: 100%; padding: 1rem 0; }
    .how-found-options { flex-direction: column; }
    .how-found-option label { justify-content: center; }
}

/* ============================================
   RESPONSIVIDADE MOBILE COMPLETA
   ============================================ */

/* Tablet */
@media (max-width: 900px) {
  .stats-container { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .roadmap-phases { grid-template-columns: 1fr; gap: 20px; }
  .woe-schedule { grid-template-columns: 1fr; gap: 15px; }
  .woe-castles { grid-template-columns: 1fr; gap: 20px; }
  .family-container { grid-template-columns: 1fr; gap: 40px; }
  .family-character { order: -1; margin-bottom: 30px; }
  .family-actions { grid-template-columns: repeat(3, 1fr); gap: 15px; }
  .rules-container { grid-template-columns: 1fr; gap: 40px; }
  .rules-character { order: -1; margin-bottom: 30px; }
  .footer-container { grid-template-columns: 1fr; gap: 25px; text-align: center; }
  .footer-bottom-content { flex-direction: column; gap: 15px; text-align: center; }
  
  /* News header mobile */
  .news-header { flex-direction: column; gap: 15px; text-align: center; }
  .news-title-group { justify-content: center; }
  .news-tabs { flex-wrap: wrap; justify-content: center; }
}

/* Mobile */
@media (max-width: 600px) {
  /* Hero com padding suficiente para o menu fixo */
  .hero { min-height: 520px; padding-top: 0; height: auto; display: block; }
  
  /* Countdown posicionado abaixo do menu fixo */
  .hero-countdown { 
    position: relative;
    width: calc(100% - 20px); 
    top: auto;
    left: auto;
    transform: none;
    margin: 140px auto 30px;
  }
  .countdown-card--v2 { padding: 18px 14px 16px; }
  .countdown-card--v2 .countdown-date { font-size: 12px; margin-bottom: 10px; }
  .countdown-divider { margin: 12px 0 16px; }
  
  .countdown-grid { 
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: auto auto;
    gap: 8px 16px; 
  }
  .countdown-grid .cd-colon { display: none !important; }
  
  .cd-block { padding: 8px 4px; background: rgba(0,0,0,0.2); border-radius: 8px; }
  .cd-value { font-size: 36px !important; }
  .cd-label { font-size: 10px !important; margin-top: 6px; letter-spacing: 0.10em; }
  
  .countdown-players { padding: 12px 14px; margin-top: 16px; }
  .players-title { font-size: 10px; }
  .players-count { font-size: 24px; }
  
  .countdown-cta { 
    padding: 10px 20px; 
    font-size: 11px; 
    letter-spacing: 0.04em;
    margin-top: 12px;
  }
  
  /* Stats grid 2x2 menor */
  .stats-container { gap: 10px; padding: 0 10px; }
  .stat-card { padding: 20px 15px; }
  .stat-icon { width: 60px; height: 60px; margin-bottom: 12px; }
  .stat-value { font-size: 26px; }
  .stat-label { font-size: 10px; }
  
  /* Phase cards menores */
  .phase-card { padding: 25px 20px; }
  .phase-icon { width: 50px; height: 50px; font-size: 22px; margin-bottom: 15px; }
  .phase-name { font-size: 18px; }
  .phase-desc { font-size: 12px; }
  .phase-features li { font-size: 12px; margin-bottom: 8px; }
  
  /* Family section */
  .family-section { padding: 60px 15px; }
  .family-title { font-size: 24px; }
  .family-text { font-size: 13px; margin-bottom: 25px; }
  .family-character img { max-height: 300px; }
  .family-actions { grid-template-columns: 1fr; gap: 15px; }
  
  /* News section */
  .news-section { padding: 60px 15px; }
  .news-title-wrapper h2 { font-size: 22px; }
  .news-tab { padding: 8px 14px; font-size: 10px; flex: 1; min-width: 80px; text-align: center; }
  .news-thumbnail { height: 150px; }
  .news-content { padding: 15px; }
  .news-card-title { font-size: 14px; }
  .news-excerpt { font-size: 12px; }
  .news-nav { display: none; }
  
  /* WoE section */
  .woe-section { padding: 60px 15px; }
  .woe-title { font-size: 28px; }
  .woe-subtitle { font-size: 12px; }
  .woe-castles .castle-banner { height: 160px; }
  .woe-castles .castle-banner img { width: 100px; }
  .castle-name { font-size: 20px; }
  .castle-row { padding: 8px 12px; }
  .castle-label { font-size: 10px; }
  .castle-value { font-size: 12px; }
  
  /* Rules section */
  .rules-section { padding: 60px 15px; }
  .rules-header h2 { font-size: 24px; }
  .rules-icon { width: 40px; height: 40px; font-size: 18px; }
  .rules-block { padding: 18px; }
  .rules-block p { font-size: 13px; }
  .rules-character img { max-height: 280px; }
  
  /* Footer mobile */
  .footer-top { padding: 30px 15px 20px; }
  .footer-section { margin-bottom: 20px; }
  .footer-section h3 { font-size: 11px; margin-bottom: 12px; }
  .footer-section ul li a { font-size: 12px; justify-content: center; }
  .footer-section ul li a::before { display: none; }
  .footer-logo { align-items: center; }
  .footer-mascot-wrap { height: auto; justify-content: center; margin-bottom: 20px; }
  .footer-mascot { width: 220px !important; max-height: 200px !important; }
  
  .footer-bottom { padding: 15px; }
  .footer-bottom-left { text-align: center; }
  .footer-bottom-left p { font-size: 10px; }
  .footer-bottom-right img { max-width: 100px; }
  
  /* Login dock */
  .login-dock-area { margin-top: 20px; flex-direction: column; position: relative; z-index: 10; }
  .login-card { padding: 20px 18px; width: 100%; }
  .login-header h3 { font-size: 14px; }
  .input-group input { padding: 10px; font-size: 14px; }
  .btn-main { padding: 10px; font-size: 12px; }
  
  /* Shortcuts lado a lado no mobile */
  .shortcuts { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .shortcut-card { padding: 15px 10px; }
  .shortcut-icon { font-size: 18px; margin-bottom: 6px; }
  .shortcut-title { font-size: 10px; }
  .shortcut-sub { font-size: 9px; }
  
  /* Estandartes menores no mobile */
  .woe-castles .castle-banner { height: 90px; margin-bottom: 12px; }
  .woe-castles .castle-banner img { width: 55px; }
}

/* Extra small devices */
@media (max-width: 380px) {
  .countdown-grid { gap: 6px 12px; }
  .cd-value { font-size: 28px !important; }
  .cd-label { font-size: 9px !important; }
  .players-count { font-size: 20px; }
  .countdown-cta { padding: 8px 16px; font-size: 10px; }
  
  .stat-value { font-size: 22px; }
  .stat-label { font-size: 9px; }
  
  .footer-mascot { width: 180px !important; }
  .news-tab { min-width: 70px; padding: 6px 10px; font-size: 9px; }
}

