body {
    background: #0a0a0a;
    color: #ddd;
    font-family: Arial, sans-serif;
}

/* STORE TITLE */
h3 {
    font-size: 32px;
    color: #ff7e00;
    text-shadow: 0 0 12px #ff7e00;
    margin-bottom: 10px;
}

/* STORE BANNER */
#banner {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,150,255,0.4);
}

/* OWNER TEXT */
center {
    color: #ccc;
    font-size: 16px;
}

/* SEARCH FORM */
form {
    margin-top: 20px;
    margin-bottom: 30px;
}

input[type="text"], select {
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #111;
    color: #eee;
    box-shadow: 0 0 10px rgba(255,120,0,0.2);
}

input[type="submit"] {
    padding: 8px 20px;
    background: #0095ff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0,150,255,0.6);
    transition: 0.2s;
}

input[type="submit"]:hover {
    background: #00aaff;
    box-shadow: 0 0 20px rgba(0,150,255,1);
}

/* PRODUCT BOX */
.prod_box {
    width: 200px;
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 10px;
    margin: 10px;
    display: inline-block;
    vertical-align: top;
    box-shadow: 0 0 20px rgba(255,120,0,0.15);
    transition: 0.2s;
}

.prod_box:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(255,120,0,0.4);
}

/* PRODUCT TITLE */
.product_title a {
    color: #ff7e00;
    font-weight: bold;
    text-shadow: 0 0 10px #ff7e00;
    text-decoration: none;
}

/* PRODUCT IMAGE */
.thumb_image {
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0,150,255,0.4);
    transition: 0.2s;
}

.thumb_image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0,150,255,0.8);
}

/* CATEGORY TAG */
.prod_details_tab {
    margin-top: 10px;
    color: #0095ff;
    text-shadow: 0 0 10px #0095ff;
    font-weight: bold;
}

/* PRICE */
.prod_price {
    margin-top: 10px;
    font-size: 18px;
    color: #ff7e00;
    text-shadow: 0 0 10px #ff7e00;
}

/* ONLINE STATUS */
.prod_price a {
    padding: 4px 8px;
    border-radius: 4px;
    color: #000;
    font-weight: bold;
}

/* PAGINATION */
#pagenav span, #pagenav a span {
    padding: 6px 10px;
    margin: 2px;
    border-radius: 4px;
    background: #111;
    color: #eee;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(255,120,0,0.2);
}

#pagenav a span:hover {
    background: #ff7e00;
    color: #000;
    box-shadow: 0 0 15px rgba(255,120,0,0.8);
}

.current {
    background: #ff7e00 !important;
    color: #000 !important;
    box-shadow: 0 0 15px rgba(255,120,0,1);
}

/* BACK LINK */
a[href*="index.php"] {
    color: #0095ff;
    text-shadow: 0 0 10px #0095ff;
    font-size: 18px;
    text-decoration: none;
}

a[href*="index.php"]:hover {
    color: #33aaff;
    text-shadow: 0 0 15px #33aaff;
}

/* TUTORIAL WRAPPER */
.tutorial-wrapper {
    width: 80%;
    margin: 40px auto;
    background: #111;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #222;
    box-shadow: 0 0 25px rgba(255,120,0,0.25);
    color: #ccc;
    text-align: center;
}

/* TITLE */
.tutorial-title {
    font-size: 32px;
    color: #ff7e00;
    text-shadow: 0 0 12px #ff7e00;
    margin-bottom: 25px;
}

/* TEXT */
.tutorial-text {
    font-size: 20px;
    line-height: 1.6;
    margin: 20px 0;
    color: #ddd;
}

/* IMAGES */
.tutorial-image {
    width: 480px;
    max-width: 90%;
    border-radius: 8px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 0 20px rgba(0,150,255,0.4);
    transition: 0.25s;
}

.tutorial-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0,150,255,0.8);
}


/* WRAPPER */
.tutorial-wrapper {
    width: 80%;
    margin: 40px auto;
    background: #111;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #222;
    box-shadow: 0 0 25px rgba(255,120,0,0.25);
    color: #ccc;
    text-align: center;
}

/* TITLE RED (HG Visitors) */
.tutorial-title-red {
    font-size: 32px;
    color: #ff2a2a;
    text-shadow: 0 0 12px #ff2a2a;
    margin-bottom: 25px;
}

/* TEXT */
.tutorial-text {
    font-size: 20px;
    line-height: 1.6;
    margin: 20px 0;
    color: #ddd;
}

/* LINK */
.tutorial-link {
    color: #0095ff;
    text-shadow: 0 0 10px #0095ff;
    text-decoration: none;
}

.tutorial-link:hover {
    color: #33aaff;
    text-shadow: 0 0 15px #33aaff;
}

/* IMAGES */
.tutorial-image {
    width: 480px;
    max-width: 90%;
    border-radius: 8px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 0 20px rgba(0,150,255,0.4);
    transition: 0.25s;
}

.tutorial-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0,150,255,0.8);
}
