body {
    font-family: Arial, sans-serif;
    background: url('/Images/bg4.jpg') no-repeat top;
    background-size: cover;
    padding: 40px 20px;
}

.image-box {
    max-width: 1000px;
    margin: 0 auto;
}

/* Logo */
.logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 700px;
    height: auto;
    display: inline-block;
}

/* Top border image */
.box-top {
    background: url('/Images/FY/show_top.jpg') no-repeat center top;
    background-size: 100% 100%;
    height: 15px;
}

/* Middle content area with background */
.box-content {
    background: url('/Images/FY/main_bg.jpg') no-repeat center center;
    background-size: 100% 100%;
    padding: 30px;
    min-height: 400px;
}

/* Bottom border image */
.box-bottom {
    background: url('/Images/FY/main2_bot.jpg') no-repeat center bottom;
    background-size: 100% 100%;
    height: 15px;
}

/* Content styling */
.box-content h1 {
    color: #fff;
    margin-top: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.box-content p {
    color: #eee;
    line-height: 1.6;
}

/* Navigation buttons */
.nav-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.nav-button {
    background: linear-gradient(to bottom, #5a1515, #2a0a0a);
    border: 2px solid #c41e1e;
    color: #ffcc00;
    padding: 15px 40px;
    font-size: 16px;
    cursor: pointer;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    transition: all 0.3s;
}

.nav-button:hover {
    background: linear-gradient(to bottom, #7a2020, #3a1010);
    box-shadow: 0 0 10px rgba(196, 30, 30, 0.5);
}

/* Product display area */
.product-display {
    background: linear-gradient(to bottom, #1a1a1a, #000);
    border: 3px solid #c41e1e;
    padding: 30px;
    text-align: center;
}

.product-display img {
    max-width: 100%;
    height: auto;
    border: 4px solid #F34B42;
}

/* Image selector */
.image-selector {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    padding: 20px;
    background: url('/Images/FY/p_list_bg.jpg') no-repeat center center;
    background-size: 100% 100%;
}

.thumbnail {
    border: 3px solid #555;
    padding: 5px;
    background: #000;
    cursor: pointer;
    transition: all 0.3s;
}

.thumbnail:hover {
    border-color: #c41e1e;
    box-shadow: 0 0 10px rgba(196, 30, 30, 0.5);
}

.thumbnail.active {
    border-color: #c41e1e;
    box-shadow: 0 0 15px rgba(196, 30, 30, 0.8);
}

.thumbnail img {
    display: block;
    width: 150px;
    height: 150px;
    object-fit: contain;
}