*{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

body{
    background:#000;
    color:#0f0;
    font-family:'Poppins',sans-serif;
}

/* SPLASH */
#splash{
    position:fixed;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    background:#000;
}

.loader{
    width:40px;
    height:40px;
    border:3px solid #111;
    border-top:3px solid #0f0;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{transform:rotate(360deg);}
}

/* LOGIN */
#login{
    display:none;
    height:100vh;
    justify-content:center;
    align-items:center;
    flex-direction:column;
}

input{
    width:90%;
    max-width:300px;
    padding:12px;
    background:black;
    border:1px solid #0f0;
    color:#0f0;
    margin:10px 0;
}

button{
    padding:10px 15px;
    background:#0f0;
    border:none;
    cursor:pointer;
    color:black;
}

/* APP */
#app{
    display:none;
    padding-bottom:80px;
}

.section{
    display:none;
    padding:15px;
}

.active{
    display:block;
}

.card{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(0,255,0,0.3);
    padding:15px;
    border-radius:12px;
}

/* SERVICES */
.services{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
    margin-top:10px;
}

.service{
    text-align:center;
    padding:15px;
    border:1px solid rgba(0,255,0,0.3);
    border-radius:10px;
    cursor:pointer;
}

.service img{
    width:45px;
}

/* FILTERS */
.filters{
    display:flex;
    gap:5px;
    margin-top:10px;
}

.filters button{
    flex:1;
    background:#111;
    color:#0f0;
    border:1px solid #0f0;
    font-size:12px;
}

/* VIEW */
#viewer{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:none;
    flex-direction:column;
    background:black;
}

.topbar{
    background:#111;
    padding:10px;
    display:flex;
    justify-content:space-between;
}

iframe{
    width:100%;
    height:100%;
    border:none;
}

/* NAV */
.nav{
    position:fixed;
    bottom:0;
    width:100%;
    display:flex;
    background:#111;
    border-top:1px solid #0f0;
}

.nav button{
    flex:1;
    padding:12px;
    background:none;
    color:#0f0;
    border:none;
}

.nav button.active{
    background:#0f0;
    color:black;
}

/* BUTTON */
.btn{
    display:block;
    margin-top:10px;
    padding:10px;
    background:#25D366;
    color:white;
    text-align:center;
    text-decoration:none;
}
.btn-group{
    display:flex;
    gap:5px;
    margin-top:10px;
    flex-wrap:wrap;
}

.btn{
    padding:6px 10px;
    font-size:12px;
    border:none;
    border-radius:6px;
    cursor:pointer;
    flex:1;
}

/* COLORS */
.disable{
    background:#ff004c;
    color:white;
}

.enable{
    background:#00ff88;
    color:black;
}

.renew{
    background:orange;
    color:black;
}

/* RENEW INPUT */
.renew-input{
    width:60px;
    padding:5px;
    background:#000;
    border:1px solid #0f0;
    color:#0f0;
    margin-right:5px;
}

/* INLINE FORM */
.inline{
    display:flex;
    align-items:center;
    gap:5px;
}
body{
    margin:0;
    font-family:Arial;
    background: linear-gradient(135deg,#000,#0a0a0a,#001a00);
    color:#fff;
}

/* LIGHT MATRIX BACKGROUND */
body::before{
    content:"";
    position:fixed;
    width:100%;
    height:100%;
    background: url("/background.jpg");
    opacity:0.05; /* 🔥 very light */
    z-index:-1;
}

/* HEADER */
.header{
    text-align:center;
    padding:20px;
    font-size:22px;
    font-weight:bold;
    color:#0f0;
    text-shadow:0 0 10px #0f0;
}

/* CARD */
.home-box{
    margin:20px;
    padding:20px;
    border-radius:15px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border:1px solid rgba(0,255,0,0.3);
    box-shadow:0 0 20px rgba(0,255,0,0.2);
    text-align:center;
}

/* TEXT */
.home-box p{
    color:#ccc;
    line-height:1.5;
}

/* BUTTONS */
.btns{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:15px;
}

.btn{
    flex:1;
    padding:12px;
    border:none;
    border-radius:10px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
    color:white;
}

/* COLORS */
.btn-green{
    background:linear-gradient(45deg,#00ff88,#00cc66);
}

.btn-red{
    background:linear-gradient(45deg,#ff0033,#cc0022);
}

.btn-white{
    background:#fff;
    color:#000;
}

/* HOVER EFFECT */
.btn:hover{
    transform:translateY(-2px);
    box-shadow:0 0 15px rgba(255,255,255,0.3);
}
.buy-btn{
  display:block;
  margin-top:15px;
  text-align:center;
  padding:12px;
  background:linear-gradient(90deg,#3b82f6,#06b6d4);
  color:#fff;
  border-radius:10px;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.buy-btn:hover{
  transform:scale(1.05);
  opacity:0.9;
}
.wa-float{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s;
}

.wa-float img{
    width: 35px;
    height: 35px;
}

.wa-float:hover{
    transform: scale(1.1);
    background: #1ebe5d;
}
.logo img{
    width: 120px;
    margin-bottom: 10px;
}
.section {
    display: none;
}

.section.active {
    display: block;
}
.demo-btn{
    display:inline-block;
    background:#00ff00;
    color:#000;
    padding:12px 35px;
    text-decoration:none;
    font-size:20px;
    border-radius:5px;
    font-weight:bold;
    margin-top:15px;
    transition:0.3s;
}

.demo-btn:hover{
    background:#00cc00;
    transform:scale(1.05);
}