@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

@font-face {
    font-family: 'Minecraft';
    src: url('/public/MinecraftRegular-Bmg3.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Minecraft';
    src: url('/public/MinecraftBold-nMK1.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Minecraft';
    src: url('/public/MinecraftItalic-R8Mo.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

@font-face {
    font-family: 'Minecraft';
    src: url('/public/MinecraftBoldItalic-1y1e.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}

html {
    height: auto;
    scroll-behavior: auto !important;
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #222831;
    color: #eeeeee;
    font-family: 'Minecraft', 'Poppins', sans-serif;
    overflow-x: hidden;
}

body::-webkit-scrollbar { display: none; }
body { -ms-overflow-style: none; scrollbar-width: none; }

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    z-index: 100;
    box-sizing: border-box;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #eeeeee;
    font-family: 'Minecraft', sans-serif;
}
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0;
    margin: 0;
}
.nav-links a {
    text-decoration: none;
    color: #eeeeee;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: 'Minecraft', sans-serif;
}
.nav-links a:hover {
    color: #00c3ff;
}


main {
    width: 100%;
    position: relative;
    z-index: 10;
}
.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}
.profile-duo {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}
.profile {
    opacity: 0;
    transform: translateY(30px);
}
.profile img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #393e46;
    object-fit: cover;
    margin-bottom: 1rem;
}
.profile h2 {
    font-size: 2rem;
    margin: 0;
}
.profile p {
    color: #9a9a9a;
    margin-top: 0.5rem;
}
.discord-id {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #00c3ff;
    letter-spacing: 0.5px;
}

.hero-buttons-container {
    display: flex;
    flex-direction: column; 
    align-items: center;  
    gap: 1rem;            
    opacity: 0;
    transform: translateY(30px);
}


.cta-btn {
    background: #00c3ff;
    color: #222831;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 220px; 
    box-sizing: border-box; 
    text-align: center;
    font-family: 'Minecraft', sans-serif;
}
.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 195, 255, 0.2);
}


.content-section {
    padding: 100px 10%;
    background-color: #2a313c;
    border-top: 1px solid #393e46;
}
.anim-target {
    opacity: 0; 
}
.content-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 0;
    margin-bottom: 3rem;
    color: #00c3ff;
}


.about-studio {
    text-align: center;
    margin-bottom: 3rem;
    background-color: #2a313c;
    padding: 2rem;
    border-radius: 8px;
}

.about-studio h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-studio p {
    color: #eeeeee;
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-container {
    display: flex;
    justify-content: center;
    gap: 5%;
}
.about-person {
    flex-basis: 45%;
}
.about-person h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.about-person p {
    line-height: 1.7;
    color: #cfcfcf;
}


.projects-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.carousel-arrow.carousel-prev {
    margin-right: 3rem;
}

.carousel-arrow.carousel-next {
    margin-left: 3rem;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    max-width: 1400px;
}

.carousel-track {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.project-slide {
    flex: 0 0 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.5;
    transform: scale(0.8);
    transition: all 0.5s ease;
    pointer-events: none;
    width: 500px;
}

.project-slide.center {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.project-slide.side {
    opacity: 0.5;
    transform: scale(0.8);
    z-index: 1;
}

.project-carousel-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.project-carousel-info {
    text-align: center;
    margin-top: 2rem;
    max-width: 100%;
}

.project-carousel-info h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #00c3ff;
}

.project-carousel-info p {
    color: #cfcfcf;
    line-height: 1.7;
    font-size: 1.1rem;
}

.project-carousel-info .clean-link {
    color: #00c3ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.project-carousel-info .clean-link:hover {
    color: #00e5ff;
}

.carousel-arrow {
    background: rgba(57, 62, 70, 0.8);
    border: 2px solid #4f5868;
    color: #00c3ff;
    font-size: 2rem;
    font-family: 'Minecraft', sans-serif;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
}

.carousel-arrow:hover {
    background: rgba(0, 195, 255, 0.2);
    border-color: #00c3ff;
    transform: scale(1.1);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    header {
        padding: 0.75rem 3%;
    }
    
    .logo {
        font-size: 1.15rem;
    }
    
    .site-logo-img {
        height: 32px;
    }
    
    .nav-links {
        gap: 0.75rem;
        font-size: 0.8rem;
    }
    
    .hero-container .mc-button {
        margin-bottom: 3rem;
    }
    
    .projects-carousel {
        gap: 0;
        padding: 0;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .carousel-arrow.carousel-prev {
        margin-right: 0.5rem;
    }
    
    .carousel-arrow.carousel-next {
        margin-left: 0.5rem;
    }
    
    .carousel-container {
        max-width: calc(100vw - 100px);
    }
    
    .project-slide {
        width: min(250px, calc(100vw - 100px));
        flex: 0 0 min(250px, calc(100vw - 100px));
    }
    
    .project-carousel-info {
        padding: 0 0.25rem;
    }
    
    .project-carousel-info h4 {
        font-size: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .project-carousel-info p {
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

.reviews-preview-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}
.all-reviews-page .content-section h2 {
    margin-bottom: 4rem;
}
.all-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}
.review-card {
    background: #393e46;
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid #00c3ff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.review-card blockquote {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: #eeeeee;
    flex-grow: 1;
}
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #4f5868;
}
.review-contact {
    font-size: 0.9rem;
    color: #a0aec0;
}
.review-contact::before {
    content: "Discord ID:"; 
    display: block; 
    font-weight: bold;
    color: #7f9cb5;   
    margin-bottom: 0.2rem;
}

.star-rating {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}
.review-card cite {
    display: block;
    font-weight: 700;
    text-align: right;
    color: #00c3ff;
}
.view-all-reviews-container {
    text-align: center;
    margin-top: 3rem;
}
.view-all-btn {
    display: inline-block;
}


.contact-preference-info {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
    color: #b0b8c4;
    font-style: italic;
}
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}
#contact-form input, #contact-form textarea {
    background-color: #393e46;
    border: 2px solid #4f5868;
    color: #eeeeee;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}
#contact-form input:focus, #contact-form textarea:focus {
    outline: none;
    border-color: #00c3ff;
}
#contact-form textarea {
    resize: vertical;
    min-height: 150px;
}
#contact-form .cta-btn {
    align-self: center;
    margin-top: 1rem;
}
.form-status-message {
    text-align: center;
    margin-top: 1.5rem;
    font-weight: 600;
}
.form-status-message.success { color: #33cc99; }
.form-status-message.error { color: #ff6b6b; }


footer {
    padding: 4rem 2rem 2rem 2rem;
    background-color: #2a313c;
    border-top: 1px solid #393e46;
    text-align: center;
    color: #9a9a9a;
}

.footer-seo {
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-seo h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #eeeeee;
}

.footer-seo p {
    line-height: 1.6;
    color: #cfcfcf;
    margin-bottom: 0.8rem;
}

.footer-seo p strong {
    color: #00c3ff;
}

footer .copyright {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #7a828e;
}

@media (max-width: 768px) {
    .content-section {
        padding: 80px 8%;
    }
    .content-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .hero-container h1 {
        font-size: 2.5rem;
    }
    .profile-duo,
    .about-container,
    .reviews-preview-container {
        flex-direction: column;
        gap: 3rem;
    }
    .projects-grid {
        gap: 1.5rem;
    }
}
@media (max-width: 480px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        align-items: center; 
    }
    .logo {
        margin-left: 0; 
    }
    .profile-duo {
        gap: 2rem;
    }
    .profile img {
        width: 120px;
        height: 120px;
    }
    .profile h2 {
        font-size: 1.8rem;
    }
    .all-reviews-grid {
        grid-template-columns: 1fr;
    }
}

.project-card .project-image-actual {
    width: 100%; 
    height: 250px; 
    object-fit: cover; 
    display: block;
}

.logo { 
    display: flex;
    align-items: center; 
    gap: 0.75rem;       
    text-decoration: none;
    color: #eeeeee;
}

.site-logo-img {
    height: 50px;  
    width: auto;   
    display: block; 
}

#background-glow-circles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; 
    pointer-events: none; 
    overflow: hidden;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(0, 195, 255, 0.03); 
    box-shadow: 0 0 30px 10px rgba(0, 195, 255, 0.05);
    opacity: 0; 
    animation: glowPulseAnimation 8s ease-in-out; 
}

@keyframes glowPulseAnimation {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1; 
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.5);
    }
}

@media (max-width: 768px) { 

    .hero-container h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .profile h2 { 
        font-size: 1.8rem; 
    }

    .cta-btn { 
        padding: 0.8rem 2rem; 
        font-size: 0.9rem;
    }

    .project-image-actual { 
        height: 180px; 
    }
}

@media (max-width: 480px) { 

    .hero-container {
        padding-left: 3%; 
        padding-right: 3%;
        box-sizing: border-box; 
    }

    .hero-container h1 {
        font-size: 2rem;
    }

    .profile-duo {
        gap: 1.5rem; 
        margin-bottom: 2rem;
    }

    .profile img {
        width: 93px; 
        height: 93px;
    }

    .profile h2 {
        font-size: 1.6rem; 
    }
    
    .profile p, 
    .discord-id { 
        font-size: 0.85rem; 
    }

    .hero-buttons-container {
        gap: 0.8rem; 
    }

    .project-image-actual {
        height: 200px;
    }

    .content-section {
        padding: 70px 6%; 
    }

    .content-section h2 {
        font-size: 1.7rem; 
    }

    .review-card blockquote {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .review-card cite, .review-contact {
        font-size: 0.85rem;
    }
}

.staff-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.staff-card {
    background-color: #393e46;
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 280px;
    max-width: 350px;
}

.staff-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.staff-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #393e46;
    object-fit: cover;
    margin-bottom: 1rem;
}

.staff-card h3 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    color: #eeeeee;
}

.staff-role {
    color: #9a9a9a;
    margin: 0.5rem 0;
    font-size: 1rem;
}

.staff-card .discord-id {
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #00c3ff;
    letter-spacing: 0.5px;
}

#services h2 {
    margin-bottom: 3rem; 
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    text-align: center;
    justify-content: center;
}

.services-grid .service-item:nth-child(1),
.services-grid .service-item:nth-child(2),
.services-grid .service-item:nth-child(3) {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 400px;
}

.services-grid .service-item:nth-child(4),
.services-grid .service-item:nth-child(5) {
    flex: 0 1 400px;
    min-width: 280px;
}

.service-item {
    background-color: #393e46; 
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem; 
    margin-bottom: 1rem;
    display: block; 
    color: #00c3ff; 
}

.service-item h3 {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #eeeeee;
}

.service-item p {
    color: #cfcfcf;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 0;
}

@media (max-width: 600px) { 
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-item {
        padding: 1.5rem;
    }
    .service-icon {
        font-size: 2rem;
    }
    .service-item h3 {
        font-size: 1.3rem;
    }
}

.reviews-actions-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem; 
    margin-top: 3rem;
    flex-wrap: wrap;
}

.write-review-link-container {
    text-align: center;
    margin-bottom: 3rem;
}

.write-review-page h2 {
    margin-bottom: 1.5rem;
}
.write-review-page .contact-preference-info { 
    margin-bottom: 2.5rem;
}

#review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

#review-form input[type="text"],
#review-form textarea {
    background-color: #393e46;
    border: 2px solid #4f5868;
    color: #eeeeee;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

#review-form input[type="text"]:focus,
#review-form textarea:focus {
    outline: none;
    border-color: #00c3ff;
}

#review-form textarea {
    resize: vertical;
    min-height: 120px;
}

.star-rating-input-container {
    padding: 10px 0;
    text-align: center;
}
.star-rating-input-container label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #cfcfcf;
}
.star-input {
    display: inline-block; 
}
.star-input input[type="radio"] {
    display: none; 
}
.star-input label { 
    font-size: 2.5rem;
    color: #4f5868; 
    padding: 0 0.2rem;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
    display: inline-block; 
    margin-bottom: 0; 
}

.star-input input[type="radio"]:checked ~ label,
.star-input label:hover,
.star-input label:hover ~ label {
    color: #FFD700;
}

.star-input {
    direction: rtl;
}
.star-input label {
    direction: ltr; 
}


#review-form .cta-btn {
    align-self: center;
    margin-top: 1rem;
}

@media (max-width: 480px) {
    .reviews-actions-container {
        flex-direction: column; 
        gap: 1rem;
    }
    .reviews-actions-container .cta-btn {
        width: 100%; 
        box-sizing: border-box;
    }
}

.back-button-container {
    margin-bottom: 2.5rem;
}

.cta-btn.back-style {
    background-color: #4f5868; 
    color: #eeeeee;
    padding: 0.8rem 1.8rem; 
}

.cta-btn.back-style:hover {
    background-color: #5a6678; 
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 480px) {
    .back-button-container {
        text-align: center; 
        margin-bottom: 2rem;
    }
}

.form-status-message .sub-message {
    display: block; 
    font-size: 0.9em; 
    color: #b0b8c4;   
    font-weight: normal; 
    margin-top: 0.5rem; 
}

.shop-item-stats span {
    white-space: nowrap;
}

.icon-btn { 
    background-color: transparent;
    border: 2px solid #4f5868;
    color: #cfcfcf;
    padding: 0.5rem;
    line-height: 1; 
    border-radius: 6px;
    min-width: auto; 
    margin-right: 0.5rem;
}
.icon-btn:hover {
    background-color: #4f5868;
    color: #00c3ff;
    border-color: #00c3ff;
    box-shadow: none;
}

.auth-btn {
    background-color: transparent;
    color: #eeeeee;
    border: 2px solid #00c3ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 0.9rem;
}

.auth-btn:hover {
    background-color: #00c3ff;
    color: #222831;
}

#user-info {
    color: #eeeeee;
    font-weight: 600;
    margin-right: 1rem;
    font-size: 0.9rem;
}

#login-status-container {
    margin-left: 1rem; 
    display: flex;
    align-items: center;
}

.shop-cta-container-within-section {
    text-align: center; 
    padding-top: 3rem;   
    padding-bottom: 1rem; 
}

.explore-shop-btn {
    font-size: 1.1rem;
}

.shop-page.content-section {
    padding-top: 80px; 
    padding-bottom: 100px; 
}

.shop-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 1rem;
    flex-wrap: wrap; 
}

#shop-search {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border-radius: 6px;
    border: 2px solid #4f5868;
    background-color: #393e46;
    color: #eeeeee;
    font-family: 'Poppins', sans-serif;
    min-width: 250px;
}

#shop-search:focus {
    outline: none;
    border-color: #00c3ff;
}

#filter-btn.secondary-btn { 
    background-color: #4f5868;
    color: #eeeeee;
    padding: 0.8rem 1.5rem;
    border: none; 
}

#filter-btn.secondary-btn:hover {
    background-color: #5a6678;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}


.shop-tabs {
    display: flex;
    gap: 0.5rem; 
    margin-bottom: 2.5rem;
    border-bottom: 2px solid #393e46;
    padding-bottom: 0.5rem;
}

.tab-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    color: #9a9a9a; 
    border: none;
    border-bottom: 3px solid transparent; 
    cursor: pointer;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.tab-button:hover {
    color: #eeeeee;
}

.tab-button.active {
    color: #00c3ff;
    border-bottom-color: #00c3ff;
}

.tab-content {
    display: none; 
}

.tab-content.active {
    display: block;
}

.shop-item-card {
    display: flex;
    align-items: flex-start; 
    gap: 1.5rem;
    background-color: #2a313c; 
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 1px solid #393e46;
}

.shop-item-icon {
    width: 64px; 
    height: 64px;
    object-fit: cover; 
    border-radius: 6px;
    flex-shrink: 0; 
    background-color: #393e46; 
}

.shop-item-details {
    flex-grow: 1; 
}

.shop-item-details h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.3rem;
    color: #eeeeee;
    font-weight: 600;
}

.shop-item-author {
    font-size: 0.85rem;
    color: #9a9a9a;
    margin: 0 0 0.75rem 0;
}

.shop-item-description {
    font-size: 0.95rem;
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 0;
}

.shop-item-stats {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #9a9a9a;
    text-align: right;
    min-width: 130px;
    flex-shrink: 0;
}

.shop-item-stats span { 
    white-space: nowrap; 
}

.shop-item-actions {
    display: flex;
    flex-direction: column; 
    align-items: flex-end;
    gap: 0.5rem;
    min-width: 120px; 
    flex-shrink: 0;
}

.shop-item-actions .download-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    min-width: 100px;
}

@media (max-width: 768px) {
    .shop-page.content-section {
        padding-top: 120px;
    }
    .shop-item-card {
        flex-wrap: wrap; 
    }
    .shop-item-details {
        min-width: 200px;
    }
    .shop-item-stats, .shop-item-actions {
        width: 100%;
        text-align: left;
        margin-top: 1rem;
    }
    .shop-item-actions {
        align-items: flex-start;
    }
     .shop-item-stats {
        flex-direction: row; 
        justify-content: flex-start;
        gap: 1rem; 
    }
}

@media (max-width: 600px) {
    .shop-item-card {
        flex-direction: column; 
        align-items: center; 
        text-align: center;
    }
    .shop-item-icon {
        margin-bottom: 1rem;
    }
    .shop-item-stats, .shop-item-actions {
        text-align: center;
        align-items: center; 
    }
     .shop-item-actions {
        flex-direction: row; 
        justify-content: center;
    }
    .shop-item-stats {
        justify-content: center;
    }
}


@media (max-width: 480px) {
    .shop-controls {
        flex-direction: column;
        align-items: stretch; 
    }
     #filter-btn.secondary-btn {
        width: 100%;
        box-sizing: border-box;
    }
    .shop-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0; 
        border-bottom: none; 
        justify-content: flex-start;
    }
     .tab-button {
        flex-shrink: 0; 
        border-bottom: 3px solid transparent; 
    }
    .tab-button.active {
        border-bottom-color: #00c3ff;
    }
}

.filter-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-controls label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #cfcfcf;
}

.shop-filter-select {
    padding: 0.7rem 0.8rem; 
    font-size: 0.9rem;
    border-radius: 6px;
    border: 2px solid #4f5868;
    background-color: #393e46;
    color: #eeeeee;
    font-family: 'Poppins', sans-serif;
    min-width: 150px; 
}

.shop-filter-select:focus {
    outline: none;
    border-color: #00c3ff;
}

@media (max-width: 480px) {
    .filter-controls {
        width: 100%; 
        margin-top: 0.5rem;
    }
    .filter-controls label {
        margin-bottom: 0.25rem; 
    }
    .shop-filter-select {
        flex-grow: 1; 
    }
}

.item-detail-page.content-section {
    padding-top: 80px; 
}

.item-detail-header {
    display: flex;
    align-items: flex-start; 
    gap: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #393e46;
    padding-bottom: 2rem;
}

.item-detail-icon {
    width: 128px;
    height: 128px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    background-color: #393e46; 
}

.item-header-content {
    flex-grow: 1;
}

.item-header-content h1 {
    font-size: 2.8rem;
    color: #eeeeee;
    margin: 0 0 0.5rem 0;
}

.item-detail-author {
    font-size: 1rem;
    color: #9a9a9a;
    margin-bottom: 1rem;
}

.item-detail-stats {
    display: flex;
    gap: 1.5rem; 
    font-size: 0.9rem;
    color: #cfcfcf;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.item-detail-stats span { 
    white-space: nowrap;
}

.item-detail-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.item-detail-actions .download-btn {
    padding: 0.8rem 2rem; 
}

.item-gallery {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    padding-bottom: 1rem; 
}

.item-gallery img {
    max-height: 300px; 
    height: auto;
    width: auto;
    max-width: 80%; 
    border-radius: 6px;
    object-fit: contain;
    border: 1px solid #393e46;
}

.item-info-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #393e46;
    padding-bottom: 0.5rem;
}

.item-tab-button { 
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background-color: transparent;
    color: #9a9a9a;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
}

.item-tab-button:hover {
    color: #eeeeee;
}

.item-tab-button.active {
    color: #00c3ff;
    border-bottom-color: #00c3ff;
}

.item-tab-content-area {
    line-height: 1.7;
    color: #cfcfcf;
}
.item-tab-content-area h2 { 
    font-size: 1.8rem;
    color: #eeeeee;
    margin-top: 0;
    margin-bottom: 1rem;
}
.item-tab-content-area ul {
    padding-left: 20px;
}
.item-tab-content-area ul li {
    margin-bottom: 0.5rem;
}

.item-tab-content {
    display: none;
}
.item-tab-content.active {
    display: block;
}

/* Responsive for Item Detail Page */
@media (max-width: 768px) {
    .item-detail-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .item-detail-icon {
        margin-bottom: 1rem;
    }
    .item-header-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .item-detail-stats {
        justify-content: center;
    }
    .item-detail-actions {
        justify-content: center;
    }
    .item-gallery img {
        max-height: 200px;
    }
}

.custom-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem; 
    padding-top: 1rem;
}

.custom-service-card {
    background-color: #393e46;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #4f5868;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.custom-service-icon {
    width: 70px; 
    height: 70px;
    object-fit: contain; 
    margin-bottom: 1.5rem;
    background-color: #4f5868;
    border-radius: 50%; 
    padding: 5px;
}

.custom-service-card h3 {
    font-size: 1.6rem;
    color: #eeeeee;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.custom-service-description {
    font-size: 0.95rem;
    color: #cfcfcf;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1; 
}

.custom-service-pricing {
    font-size: 1rem;
    font-weight: 600;
    color: #00c3ff; 
    margin-bottom: 1.5rem;
}

.custom-service-pricing .price-quote {
    color: #FFD700; 
}

.custom-service-actions .request-service-btn {
    width: 100%; 
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .custom-services-grid {
        gap: 1.5rem;
    }
    .custom-service-card h3 {
        font-size: 1.4rem;
    }
}

.custom-bespoke-quote-card {
    background-color: #303845; 
    border-radius: 8px;
    padding: 2rem 2.5rem; 
    margin-top: 3rem;    
    text-align: center;   
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #4f5868;
}

.custom-bespoke-quote-card h3 {
    font-size: 1.8rem;
    color: #eeeeee;
    margin-top: 0;
    margin-bottom: 1rem;
}

.custom-bespoke-quote-card p {
    font-size: 1rem;
    color: #cfcfcf;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.bespoke-quote-actions .cta-btn { 
    font-size: 1.1rem; 
}

@media (max-width: 768px) {
    .custom-bespoke-quote-card {
        padding: 1.5rem 1.5rem;
    }
    .custom-bespoke-quote-card h3 {
        font-size: 1.6rem;
    }
    .custom-bespoke-quote-card p {
        font-size: 0.95rem;
    }
}/* Minecraft button responsive overrides */
.mc-button {
    text-decoration: none;
    display: inline-block;
    height: 40px;
    width: auto;
    min-width: 200px;
    max-width: 100%;
}

.mc-button .title {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .mc-button {
        height: 36px;
        min-width: 160px;
    }
    
    .mc-button .title {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .mc-button {
        height: 34px;
        min-width: 140px;
    }
    
    .mc-button .title {
        font-size: 0.8rem;
    }
}
