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

/* WRAPPER */
.item-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 40px;
}

/* BOX */
.item-box {
    width: 90%;
    max-width: 1100px;
    background: #111;
    border: 1px solid #222;
    box-shadow: 0 0 20px rgba(255, 120, 0, 0.15);
    padding: 20px;
    border-radius: 8px;
}

/* LAYOUT */
.item-layout {
    display: flex;
    gap: 30px;
}

/* LEFT SIDE */
.item-image-area {
    width: 40%;
}

.main-image-frame img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.3);
}

.thumb-row {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumb-frame img {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 0 10px rgba(255, 120, 0, 0.3);
}

.thumb-frame img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 120, 0, 0.6);
}

/* RIGHT SIDE */
.item-details-area {
    width: 60%;
}

/* TITLE */
.item-title {
    text-align: center;
    font-size: 28px;
    color: #ff7e00;
    text-shadow: 0 0 10px #ff7e00;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.item-specs {
    font-size: 15px;
    line-height: 1.5;
    color: #ccc;
}

.description-text {
    margin: 15px 0;
}

/* PRICE */
.item-price {
    text-align: right;
    font-size: 32px;
    color: #ff7e00;
    text-shadow: 0 0 12px #ff7e00;
    margin-top: 20px;
}

/* BUY BUTTON */
.buy-button {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 20px;
    text-align: center;
    float: right;
    margin-top: 10px;
    box-shadow: 0 0 15px rgba(0, 120, 255, 0.7);
    transition: 0.2s;
}

.buy-button:hover {
    background: #0095ff;
    box-shadow: 0 0 20px rgba(0, 150, 255, 1);
}

/* BACK LINK */
.back-area {
    margin-top: 60px;
}

.back-link {
    color: #ff7e00;
    text-decoration: none;
    font-size: 16px;
}

.back-link:hover {
    text-shadow: 0 0 10px #ff7e00;
}

/* MAIN IMAGE ZOOM */
.main-image-frame img {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: zoom-in;
}

.main-image-frame img:hover {
    transform: scale(1.25);
    box-shadow: 0 0 25px rgba(0, 150, 255, 0.7);
    z-index: 10;
}

/* THUMBNAIL ZOOM */
.thumb-frame img {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thumb-frame img:hover {
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 120, 0, 0.8);
}

/* USER BALANCE BOX */
.user-balance-box {
    width: 80%;
    margin: 20px auto;
    background: #111;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #222;
    box-shadow: 0 0 20px rgba(255, 120, 0, 0.25);
}

/* TITLE */
.user-balance-title {
    font-size: 26px;
    color: #ff7e00;
    font-weight: bold;
    text-shadow:
        0 0 10px #ff7e00,
        0 0 20px rgba(255, 120, 0, 0.7),
        0 0 30px rgba(255, 120, 0, 0.5);
}

/* GUEST BOX */
.guest-box {
    width: 70%;
    margin: 40px auto;
    background: #111;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #222;
    text-align: center;
    box-shadow: 0 0 25px rgba(255,120,0,0.25);
}

/* TITLE */
.guest-title {
    font-size: 32px;
    color: #ff7e00;
    font-weight: bold;
    text-shadow: 0 0 12px #ff7e00;
    margin-bottom: 20px;
}

/* TEXT */
.guest-text {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 25px;
}

/* LOGIN BUTTON */
.guest-login-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #0095ff;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(0,150,255,0.7);
    transition: 0.2s;
}

.guest-login-btn:hover {
    background: #00aaff;
    box-shadow: 0 0 20px rgba(0,150,255,1);
}


/* WRAPPER */
.login-box {
    width: 450px;
    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);
    text-align: center;
}

/* TITLE */
.login-title {
    font-size: 30px;
    color: #ff7e00;
    font-weight: bold;
    text-shadow: 0 0 12px #ff7e00;
    margin-bottom: 25px;
}

/* AVATAR */
.login-avatar-box {
    margin-bottom: 20px;
}

.login-avatar {
    width: 120px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0,150,255,0.5);
}

/* LABELS */
.login-label {
    display: block;
    text-align: left;
    color: #ccc;
    margin-bottom: 5px;
    font-size: 16px;
}

/* INPUTS */
.login-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    color: #eee;
    box-shadow: 0 0 10px rgba(255,120,0,0.2);
}

/* LOGIN BUTTON */
.login-btn {
    width: 100%;
    padding: 12px;
    background: #0095ff;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 0 15px rgba(0,150,255,0.7);
    transition: 0.2s;
}

.login-btn:hover {
    background: #00aaff;
    box-shadow: 0 0 20px rgba(0,150,255,1);
}

/* REMEMBER ME */
.remember-me {
    display: block;
    margin-top: 10px;
    color: #ccc;
}

/* FOOTER */
.login-footer {
    margin-top: 25px;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 6px;
}

/* CANCEL BUTTON */
.cancel-btn {
    padding: 8px 20px;
    background: #ff2a2a;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255,0,0,0.6);
    transition: 0.2s;
}

.cancel-btn:hover {
    background: #ff4444;
    box-shadow: 0 0 20px rgba(255,0,0,1);
}

/* FORGOT PASSWORD */
.forgot-pass {
    margin-left: 15px;
    color: #ccc;
}

.forgot-pass a {
    color: #0095ff;
    text-shadow: 0 0 10px #0095ff;
    text-decoration: none;
}

.forgot-pass a:hover {
    color: #33aaff;
}
