* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, #000, #300);
    color: #fff;
    overflow-x: hidden;
    /* cursor: none; */
    scroll-behavior: smooth;
}

.home_page_container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.home_page_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.7rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.home_page_logo img {
    max-height: 50px;
    width: auto;
    margin-left: 1rem;
}

.redgear_logo {
    transform: scale(1.45); 
    transform-origin: center; 
    display: block;
    margin: 0 auto;
}

.home_page_nav ul {
    display: flex;
    list-style: none;
}

.home_page_nav ul li {
    margin-left: 2rem;
}

.home_page_nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
}

.home_page_nav ul li a:hover {
    color: #ff0000;
}

.home_page_main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.home_page_content {
    text-align: center;
    z-index: 10;
}

.home_page_title {
    font-size: 4rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
}

.red_text {
    color: #ff0000;
}

.home_page_subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.1rem;
}

.home_page_features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    cursor: pointer;
}

.home_page_feature {
    background-color: rgba(255, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    width: 200px;
    opacity: 1;
}

.home_page_feature i {
    font-size: 2rem;
    color: #ff0000;
    margin-bottom: 1rem;
}

.home_page_feature .home_page_para_headers {
    margin-bottom: 0.5rem;
    letter-spacing: 0.1rem;
}

.home_page_paras {
    letter-spacing: 0.1rem;
}

.home_page_cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
    letter-spacing: 0.1rem;
}

.home_page_cta:hover {
    background-color: #cc0000;
}

.home_page_background_elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.circle, .square, .triangle {
    position: absolute;
    opacity: 0.1;
}

.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: #ff0000;
    top: -100px;
    left: -100px;
}

.square {
    width: 200px;
    height: 200px;
    background-color: #ff0000;
    bottom: -50px;
    right: -50px;
    transform: rotate(45deg);
}

.triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid #ff0000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* .home_page_cursor {
    width: 32px; /* Adjust size */
    /* height: 32px; */
    /* background-color: rgba(255, 0, 0, 0.8); Red inside */
    /* border: 2px solid white; White border */
    /* border-radius: 50%; Circular shape */
    /* position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8), 
                0 0 20px rgba(255, 50, 0, 0.6), 
                0 0 30px rgba(255, 100, 0, 0.4);
    animation: fieryGlow 1.5s infinite alternate;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out; */
/* } 

/* Glow animation for the fiery effect */
/* @keyframes fieryGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.8), 
                    0 0 20px rgba(255, 50, 0, 0.6), 
                    0 0 30px rgba(255, 100, 0, 0.4);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 0, 0, 1), 
                    0 0 30px rgba(255, 100, 0, 0.8), 
                    0 0 40px rgba(255, 150, 0, 0.6);
    }
} */

/* Smooth hover scaling effect */
/* .home_page_cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
} */

/* Ensure body cursor is still none */
/* body {
    cursor: none;
} */

/* Particle effect */
.home_page_particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background-color: rgba(255, 0, 0, 0.5);
    border-radius: 50%;
    pointer-events: none;
}

/* Pulsating effect for CTA button */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.home_page_cta {
    animation: pulse 2s infinite;
}

/* Smooth transition for shapes */
.circle, .square, .triangle {
    transition: transform 0.5s ease;
}


/* Glow effect for features */
.home_page_feature {
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.home_page_feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.5);
}

/* Animated underline for navigation links */
.home_page_nav ul li a {
    position: relative;
}

.home_page_nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff0000;
    transition: width 0.3s ease;
}

.home_page_nav ul li a:hover::after {
    width: 100%;
}

/* ... (keep your existing CSS) ... */

/* Divider styles */
.home_page_and_jersey_page_divider {
    height: 100px;
    background: linear-gradient(to right, #000, #300, #000);
    position: relative;
    overflow: hidden;
}

.home_page_and_jersey_page_divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #ff0000, transparent);
}

.home_page_and_jersey_page_divider::after {
    content: 'RedGear';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.7);
    letter-spacing: 0.2em;
}

/* Ensure the jersey page starts after the divider */
.jersey_page_container {
    padding-top: 50px;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .home_page_title {
        font-size: 3.5rem;
    }

    .home_page_features {
        gap: 1.5rem;
    }

    .home_page_feature {
        width: 180px;
        padding: 1.2rem;
    }
}

@media screen and (max-width: 992px) {
    .home_page_title {
        font-size: 3rem;
    }

    .home_page_subtitle {
        font-size: 1.3rem;
    }

    .home_page_features {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .home_page_feature {
        width: calc(50% - 1rem);
        min-width: 200px;
    }

    .jersey_page_main {
        flex-direction: column;
        padding: 2rem;
    }

    .jersey_page_content {
        width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .jersey_page_model {
        width: 100%;
        height: 400px;
    }

    #jersey_3d_model {
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 768px) {
    .home_page_header {
        padding: 0.5rem 1rem;
    }

    .home_page_logo img {
        max-height: 40px;
        margin-left: 0.5rem;
    }

    .home_page_nav ul li {
        margin-left: 1rem;
    }

    .home_page_nav ul li a {
        font-size: 1rem;
    }

    .home_page_title {
        font-size: 2.5rem;
    }

    .home_page_subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .home_page_features {
        margin-bottom: 2rem;
    }

    .home_page_feature {
        width: 100%;
        max-width: 300px;
    }

    .home_page_cta {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }

    .jersey_page_title {
        font-size: 3rem;
    }

    .jersey_page_features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .jersey_page_feature {
        transform: none !important;
    }

    .footer_container {
        padding: 0 1rem;
    }

    .footer_nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .home_page_header {
        flex-direction: column;
        padding: 0.5rem;
    }

    .home_page_nav {
        margin-top: 0.5rem;
    }

    .home_page_nav ul {
        justify-content: center;
    }

    .home_page_nav ul li {
        margin: 0 0.5rem;
    }

    .home_page_title {
        font-size: 2rem;
    }

    .home_page_subtitle {
        font-size: 1rem;
    }

    .home_page_feature i {
        font-size: 1.5rem;
    }

    .home_page_feature .home_page_para_headers {
        font-size: 0.9rem;
    }

    .home_page_paras {
        font-size: 0.8rem;
    }

    .jersey_page_title {
        font-size: 2.5rem;
    }

    .jersey_page_para_header {
        font-size: 1.1rem;
    }

    .jersey_page_para {
        font-size: 0.9rem;
    }

    .jersey_page_cta {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }

    .footer_tagline {
        font-size: 0.9rem;
    }

    .footer_link {
        font-size: 1rem;
    }

    .footer_copyright {
        font-size: 0.8rem;
    }
}

/* Add hamburger menu for mobile */
.mobile_menu_btn {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile_menu_btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .mobile_menu_btn {
        display: block;
    }

    .home_page_nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 80px 20px;
        transition: right 0.3s ease;
    }

    .home_page_nav.active {
        right: 0;
    }

    .home_page_nav ul {
        flex-direction: column;
        align-items: center;
    }

    .home_page_nav ul li {
        margin: 1rem 0;
    }

    .mobile_menu_btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile_menu_btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile_menu_btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    .home_page_container,
.jersey_page_container,
.footer_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Responsive typography */
body {
    font-size: 16px;
}
@media (max-width: 900px) {
    body {
        font-size: 15px;
    }
    .home_page_title, .jersey_page_title {
        font-size: 2rem;
    }
}
@media (max-width: 600px) {
    body {
        font-size: 14px;
    }
    .home_page_title, .jersey_page_title {
        font-size: 1.5rem;
    }
    .home_page_features, .jersey_page_features {
        flex-direction: column;
        gap: 16px;
    }
    .home_page_nav ul {
        flex-direction: column;
        gap: 8px;
    }
    .home_page_header, .footer_top {
        flex-direction: column;
        align-items: flex-start;
    }
    .jersey_page_model {
        width: 100%;
        min-width: 0;
        margin: 0 auto;
    }
}

/* Make images and 3D model responsive */
img, model-viewer {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive navigation menu (example) */
.mobile_menu_btn {
    display: none;
}
@media (max-width: 800px) {
    .home_page_nav ul {
        display: none;
    }
    .mobile_menu_btn {
        display: block;
    }
}
}



