/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* ===== BODY ===== */
body{
    background: radial-gradient(circle at top, #0f2027, #000);
    color:#fff;
    min-height:100vh;
}

/* ===== LINKS ===== */
a{
    color:#00f6ff;
    text-decoration:none;
}
a:hover{
    text-shadow:0 0 10px #00f6ff;
}

/* ===== CONTAINER ===== */
.container{
    width:90%;
    margin:auto;
    padding:40px 0;
}

/* ===== HEADINGS ===== */
h1,h2,h3{
    text-align:center;
    margin-bottom:15px;
    color:#00f6ff;
    text-shadow:0 0 15px rgba(0,246,255,0.8);
}

/* ===== TEXT ===== */
p{
    color:#ccc;
    line-height:1.7;
    margin-bottom:10px;
}

/* ===== BOX / CARD ===== */
.box{
    background: rgba(20,20,20,0.95);
    width:360px;
    margin:60px auto;
    padding:30px;
    border-radius:15px;
    box-shadow:0 0 30px rgba(0,246,255,0.25);
    animation: fadeUp 0.8s ease;
}

/* ===== INPUTS ===== */
input, select{
    width:100%;
    padding:12px;
    margin:10px 0;
    background:#111;
    border:1px solid #00f6ff;
    color:#fff;
    border-radius:8px;
    outline:none;
}

input::placeholder{
    color:#777;
}

/* ===== BUTTON ===== */
button{
    width:100%;
    padding:12px;
    margin-top:10px;
    border:none;
    border-radius:10px;
    background:linear-gradient(45deg,#00f6ff,#ff00ff);
    color:#000;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 0 20px rgba(0,246,255,0.6);
}

button:hover{
    transform:scale(1.05);
    box-shadow:0 0 40px rgba(255,0,255,0.8);
}

/* ===== HERO SECTION ===== */
.hero{
    text-align:center;
    padding:80px 20px;
}

.hero h1{
    font-size:42px;
}

.hero span{
    color:#ff00ff;
}

.hero p{
    max-width:700px;
    margin:15px auto;
}

/* ===== FEATURES ===== */
.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
}

.feature-card{
    background:#111;
    padding:25px;
    border-radius:15px;
    text-align:center;
    border:1px solid rgba(0,246,255,0.3);
    transition:0.4s;
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(0,246,255,0.6);
}

.feature-card h3{
    color:#ff00ff;
}

/* ===== TABLE ===== */
table{
    width:100%;
    border-collapse:collapse;
    background:#111;
    margin-top:30px;
}

th,td{
    padding:12px;
    border:1px solid #00f6ff;
    text-align:center;
}

th{
    background:#000;
    color:#ff00ff;
}

/* ===== STATUS COLORS ===== */
.status-Pending{ color:orange; }
.status-Approved{ color:#00f6ff; }
.status-Printed{ color:#ff00ff; }
.status-Shipped{ color:lime; }

/* ===== FOOTER ===== */
footer{
    text-align:center;
    padding:20px;
    background:#000;
    color:#666;
    margin-top:50px;
}

/* ===== ANIMATION ===== */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ===== MOBILE ===== */
@media(max-width:600px){
    .hero h1{
        font-size:30px;
    }
    .box{
        width:90%;
    }
}
