/* /Layout/Gallery.razor.rz.scp.css */
.carousel[b-l3e2tpug5r] {
    position: relative;
    max-width: 65%;
    margin: auto;
    overflow: hidden;
}

.carousel-inner[b-l3e2tpug5r] {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item[b-l3e2tpug5r] {
    min-width: 100%;
    transition: opacity 0.5s ease-in-out;
}

    .carousel-item img[b-l3e2tpug5r] {
        width: 100%;
        height: auto;
        display: block;
    }

    .carousel-item.active[b-l3e2tpug5r] {
        opacity: 1;
    }

    .carousel-item:not(.active)[b-l3e2tpug5r] {
        opacity: 0;
    }

.prev[b-l3e2tpug5r], .next[b-l3e2tpug5r] {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next[b-l3e2tpug5r] {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    .prev:hover[b-l3e2tpug5r], .next:hover[b-l3e2tpug5r] {
        background-color: rgba(0,0,0,0.8);
    }
/* /Layout/MainLayout.razor.rz.scp.css */
.site-title[b-dnnxs6m04b] {
    position: relative;
    margin-top: 1rem;
    text-align: center;
    width: 100%;
}

.gecko_logo[b-dnnxs6m04b] {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    display: block;
}

.site-title-text[b-dnnxs6m04b] {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.site-title h1[b-dnnxs6m04b] {
    margin: 0;
    font-size: 5rem;
    text-align: center;
    color: white;    
    text-shadow: 2px 2px 4px #ffa047;
}

.site-title p[b-dnnxs6m04b] {
    margin: 0;
    font-size: 1rem;
    color: #ccc;
    text-align: center;
    text-shadow: 1px 1px 2px #000000b3;
}

@media screen and (max-width: 768px) {
    .gecko_logo[b-dnnxs6m04b] {
        width: 150px;
        height: 150px;
    }

    .site-title h1[b-dnnxs6m04b] {
        font-size: 3rem;
    }

    .site-title p[b-dnnxs6m04b] {
        font-size: 0.8rem;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar[b-89arracjno] {
    display: flex;
    justify-content: space-around;
    background-color: #333;
    padding: 1rem;
}

.nav-dropdown[b-89arracjno] {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle[b-89arracjno] {
    cursor: pointer;
}

.nav-dropdown-menu[b-89arracjno] {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-dropdown-menu.show[b-89arracjno] {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-item[b-89arracjno] {
    border-bottom: 1px solid #555;
}

.submenu-item:last-child[b-89arracjno] {
    border-bottom: none;
}

.dropdown-arrow[b-89arracjno] {
    margin-left: 0.5rem;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown-arrow.open[b-89arracjno] {
    transform: rotate(180deg);
}

.code-kung-fu-nav-item[b-89arracjno] {
    color: white;
    text-decoration: none;   
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.code-kung-fu-nav-item:hover[b-89arracjno] {
    color: #ffa047;
}

[b-89arracjno] a.active .code-kung-fu-nav-item {
    color: #ffa047;
}


@media (min-width: 1025px) {
    .navbar-toggler[b-89arracjno] {
        display: none;
    }

    .collapse[b-89arracjno] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
}
/* /Pages/Blog/BlogList.razor.rz.scp.css */
.blog-container[b-66v30nwsmm] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.blog-header[b-66v30nwsmm] {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-header h1[b-66v30nwsmm] {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.blog-subtitle[b-66v30nwsmm] {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

.blog-grid[b-66v30nwsmm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    max-width: 1000px;
    margin: 0 auto;
    gap: 2rem;
    padding: 0 1rem;
}

.blog-card[b-66v30nwsmm] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.blog-card:hover[b-66v30nwsmm] {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-card-image[b-66v30nwsmm] {
    height: 256px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffa047 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image img[b-66v30nwsmm] {
    width: 256px;
    height: 256px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* .blog-card-image::before {
    content: "📝";
    font-size: 3rem;
    color: white;
    opacity: 0.7;
} */

.blog-card:hover .blog-card-image img[b-66v30nwsmm] {
    transform: scale(1.05);
}

.blog-card-content[b-66v30nwsmm] {
    padding: 1.5rem;
}

.blog-meta[b-66v30nwsmm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date[b-66v30nwsmm] {
    color: #888;
}

.blog-category[b-66v30nwsmm] {
    background: #ffa047;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-title[b-66v30nwsmm] {
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    line-height: 1.4;
}

.blog-title a[b-66v30nwsmm] {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover[b-66v30nwsmm] {
    color: #ffa047;
}

.blog-excerpt[b-66v30nwsmm] {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.blog-tags[b-66v30nwsmm] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.blog-tag[b-66v30nwsmm] {
    background: #f0f0f0;
    color: #666;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
}

.read-more-btn[b-66v30nwsmm] {
    display: inline-block;
    background: linear-gradient(135deg, #ffa047 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.read-more-btn:hover[b-66v30nwsmm] {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-grid[b-66v30nwsmm] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
    }
    
    .blog-card-content[b-66v30nwsmm] {
        padding: 1.25rem;
    }
    
    .blog-header h1[b-66v30nwsmm] {
        font-size: 2rem;
    }
    
    .blog-subtitle[b-66v30nwsmm] {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-container[b-66v30nwsmm] {
        padding: 1rem 0.5rem;
    }
    
    .blog-meta[b-66v30nwsmm] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .blog-title[b-66v30nwsmm] {
        font-size: 1.2rem;
    }
}
/* /Pages/MarsTanks/MarsTanksPage.razor.rz.scp.css */
.media-container[b-slanyy2bt7] {
    display: flex;
    gap: 10px;
    margin: 10px;
}

.video-wrapper[b-slanyy2bt7] {
    flex: 1;
    padding: 10px;
}

.gallery-wrapper[b-slanyy2bt7] {
    flex: 1;
    padding: 10px;
}

.video-container[b-slanyy2bt7] {
    position: relative;   
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 65%;
    background: #000000;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-style: solid;
    border-color: #fc7100;
    border-width: 2px;
}

.video-container iframe[b-slanyy2bt7] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mars-tanks-center[b-slanyy2bt7] {
    text-align: center;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .media-container[b-slanyy2bt7] {
        flex-direction: column;
    }
}
