:root{
    --bg:#0f0f10;
    --card-border: rgba(255,255,255,0.12);

    --white: #ffffff;
    --muted: rgba(255,255,255,0.7);
    --neon-left: #00f2ff; /* tik-tok cyan */
    --neon-right: #ff2ca6; /* tik-tok pink */
    --radius: 6px;
  }
  /* Reset-ish */
  *{box-sizing:border-box;margin:0;padding:0}
  html,body{height:100%}

  @keyframes shiftGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  body {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    justify-content: center;  
    align-items: center;      
    flex-direction: column;  
    min-height: 100vh;       
    background: var(--bg) radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05), transparent 70%);
    color: var(--white);
    font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0 16px;        
    transform: scale(0.98);
    animation: pageZoom 1.2s ease-out forwards;
  }
  
  @keyframes pageZoom {
    to { transform: scale(1); }
  }

  body::before {
    content: "";
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.05), rgba(0,0,0,0.1), rgba(255,255,255,0.05));
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    z-index: 0;
    pointer-events: none;
  }

  body::after {
    content: "";
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: radial-gradient(circle at center, rgba(136, 160, 151, 0.03), transparent 70%);
    pointer-events: none;
    z-index: 0;
  }
  

  .wrap {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    width: 100%;
    max-width: 420px;
    text-align: center;
  }
  
  .wrap.loaded {
    opacity: 1;
    transform: translateY(0);
  }

  .list .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .list.loaded .btn {
    opacity: 1;
    transform: translateY(0);
  }

  .logo {
    width: 140px;
    height: 140px;
    margin: 20px auto;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;       
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    transition: all 0.25s ease;
  }
  
  
  .logo::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    top: 14.5%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    animation: ringPulse 4s ease-in-out infinite;
    z-index: -1;
  }
  
  @keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.5; }
  }
  
  .logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    transition: all 0.25s ease;
    animation: logoPulse 4s ease-in-out infinite;
  }

  @keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
  .brand{
    font-family: "Russo One", cursive;
    letter-spacing:2px;
    font-size:30px;
    margin:6px 0 18px;
    text-shadow: 0 0 0px rgba( 225, 225, 225, 0.3);
  }

  h2.subtitle{
    font-family: "Russo One", monospace;
    letter-spacing:3px;
    font-size:28px;
    margin:18px 0 12px;
  }

  .contact-title{
    font-family: "Russo One", monospace;
    font-size:26px;
    margin:18px 0 14px;
    text-shadow: 0 0 4px rgba(255,255,255,0.2);
  }

  .brand, .contact-title {
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0.8), rgba(255,255,255,0.3));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: shine 3s linear infinite;
    text-shadow: 0 0 8px rgba(255,255,255,0.3), 0 0 16px rgba(255,255,255,0.1);
  }
  
  @keyframes shine {
    0%, 100% { text-shadow: 0 0 4px rgba(255,255,255,0.2); }
    50% { text-shadow: 0 0 12px rgba(167, 187, 179, 0.5), 0 0 20px rgba(196, 187, 194, 0.3); }
  }

  .list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 12px;
  }

  @keyframes pulseGlow {
    0% { box-shadow: 0 0 0px rgba(255,255,255,0.1); }
    50% { box-shadow: 0 0 8px rgba(255,255,255,0.2); }
    100% { box-shadow: 0 0 0px rgba(255,255,255,0.1); }
  }
  
  .btn {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(0,0,0,0.5);
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.25s ease;
    animation: pulseGlow 4s ease-in-out infinite;
    outline: none; 
    -webkit-tap-highlight-color: transparent;
  }

  .btn:focus {
    outline: 2px solid rgba(255,255,255,0.3);
    outline-offset: 4px;
  }
  
  .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 12px rgba(255,255,255,0.2);
  }

  .btn::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 12px;
    background: linear-gradient(45deg, var(--neon-left), var(--neon-right));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
  }
  
  .btn:hover::after {
    opacity: 0.2;
  }
  
  .icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
  }
  
  .btn:hover .icon-wrap {
    background: rgba(0,0,0,0.6);
  }

  .btn::before {
    content: "";
    position: absolute;
    top: 0; left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    opacity: 0;
    transition: all 0.5s ease;
  }

  .btn:hover::before {
  left: 125%;
  opacity: 1;
  transition: all 0.7s ease;
}
  
  .icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  
  .label {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--white);
  }
  .icon svg{ width:22px;height:22px; display:block }

  @media (max-width:360px){
    .brand{ font-size:26px }
    .phone-number{ font-size:30px }
  }

  .copyright {
    margin-top: 30px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    letter-spacing: 1px;
  }
  .copyright:hover {
    color: rgba(255,255,255,0.8);
  }

  @keyframes floatSpark {
    0% {
      transform: translateY(0) translateX(0) scale(1);
      opacity: 0.2;
    }
    50% {
      transform: translateY(-40px) translateX(20px) scale(1.3);
      opacity: 0.5;
    }
    100% {
      transform: translateY(0) translateX(0) scale(1);
      opacity: 0.2;
    }
  }
  
  @keyframes floatParticles {
    0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-20px) translateX(10px) rotate(180deg); opacity: 0.5; }
    100% { transform: translateY(0) translateX(0) rotate(360deg); opacity: 0.2; }
  }
  
  .particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0; 
  }

  .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    opacity: 0.2;
    animation: floatParticles 6s ease-in-out infinite;
  }
  
  .sparkLines {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0; /* behind all content */
  }
  
  .sparkLine {
    position: absolute;
    width: 2px;              /* thin streak */
    height: 60px;            /* streak length */
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.5), rgba(255,255,255,0));
    top: -70px;              /* start above viewport */
    animation: dropSmooth 8s linear infinite; /* slower */
  }
  
  @keyframes dropSmooth {
    0%   { top: -70px; transform: translateX(0); opacity: 0; }
    20%  { opacity: 1; }
    50%  { transform: translateX(5px); }
    80%  { opacity: 0.8; transform: translateX(-5px); }
    100% { top: 100vh; transform: translateX(0); opacity: 0; }
  }

  .neonWave {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, rgba(0,255,163,0.4), rgba(255,0,200,0.4), rgba(0,255,163,0.4));
    background-size: 200% 100%;
    animation: waveMove 4s linear infinite;
  }
  
  @keyframes waveMove {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
  }
  
  .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
  }
  
  @keyframes rippleAnim {
    to {
      transform: scale(4);
      opacity: 0;
    }
  }

  .ghostText {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 150px;         
    font-weight: bold;
    color: rgba(255,255,255,0.03); 
    white-space: nowrap;
    pointer-events: none;     
    z-index: 0;               
    animation: ghostFloat 30s linear infinite;
  }
  
  @keyframes ghostFloat {
    0%   { transform: translate(-50%, -50%) rotate(0deg); }
    50%  { transform: translate(-52%, -48%) rotate(10deg); }
    100% { transform: translate(-50%, -50%) rotate(0deg); }
  }

  .vortex {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255,255,255,0.01), transparent 70%);
    border-radius: 50%;
    animation: spinVortex 120s linear infinite;
    z-index: 0;
  }
  
  @keyframes spinVortex {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }
  
  .trailParticle {
    position: absolute;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    box-shadow: 0 0 6px rgba(255,255,255,0.3);
    animation: trailMove 6s linear infinite;
    pointer-events: none;
  }
  
  @keyframes trailMove {
    0% { transform: translate(0,0); opacity: 0; }
    10% { opacity: 1; }
    100% { transform: translate(400px, 800px); opacity: 0; }
  }
  
  .dustCloud {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.01), transparent 70%);
    animation: dustMove 60s linear infinite;
    z-index: 0;
  }
  
  @keyframes dustMove {
    0% { transform: translate(0,0); }
    100% { transform: translate(-50%, -50%); }
  }
  