


.xbox-hero {
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 80px;
}

.xbox-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 15px rgba(212, 165, 82, 0.7);
}

.xbox-title span {
    color: #FFD37A;
    text-shadow: 0 0 20px #D4A552;
}

.xbox-subtitle {
    font-size: 1.3rem;
    color: #e6e6e6;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-img-container {
    position: relative;
    display: inline-block;
}

.hero-img {
    max-height: 400px;
    filter: drop-shadow(0 0 20px rgba(212, 165, 82, 0.3));
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 165, 82, 0.1) 0%, transparent 70%);
    z-index: -1;
}


.btn-main {
    display: inline-block;
    padding: 12px 30px;
    background: #D4A552;
    color: #000;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.btn-main:hover {
    background: #FFD37A;
    box-shadow: 0 0 20px #D4A552;
    color: #000;
    transform: translateY(-2px);
}


.gaming-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px #D4A552, 0 0 25px rgba(212,165,82,0.7);
    margin-bottom: 40px;
}

.gaming-title span {
    color: #FFD37A;
}


.xbox-consoles {
    background: rgba(0, 0, 0, 0.5);
}


.xbox-console-card {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(212,165,82,0.35);
    border-radius: 18px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 0 20px rgba(212,165,82,0.25);
    transform: translateY(0);
    height: 100%;
}

.xbox-console-card:hover {
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.65);
    border-color: #D4A552;
    box-shadow: 0 0 25px rgba(212,165,82,0.7);
    transform: translateY(-10px);
}

.card-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: 0.4s ease;
}


.xbox-console-card:hover .card-img {
    filter: blur(0);
    transform: scale(1.05);
}


.console-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
}

.series-x-badge { background: #107C10; }
.series-s-badge { background: #A4C639; }
.one-x-badge { background: #0D47A1; }
.one-s-badge { background: #1976D2; }
.badge-360 { background: #9C27B0; }
.original-badge { background: #455A64; }

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(76, 175, 80, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.card-body {
    padding: 20px;
}

.card-title {
    color: #FFD37A;
    font-weight: 700;
    text-shadow: 0 0 10px #D4A552;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.card-text {
    color: #efe8d6;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.console-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f2e8d4;
    font-size: 0.9rem;
}

.detail-item i {
    color: #D4A552;
    width: 20px;
}

.console-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-badge {
    background: rgba(212, 165, 82, 0.2);
    color: #FFD37A;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-actions {
    display: flex;
    gap: 10px;
}

.btn-download {
    flex: 1;
    background: rgba(212, 165, 82, 0.15);
    color: #D4A552;
    font-weight: 600;
    border: 1px solid #D4A552;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-download:hover {
    background: #D4A552;
    color: black;
    box-shadow: 0 0 15px #D4A552;
}

.btn-view {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-view:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #D4A552;
}


.xbox-features {
    background: rgba(0, 0, 0, 0.7);
}

.feature-card {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(212, 165, 82, 0.2);
    transition: 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #D4A552;
    box-shadow: 0 5px 20px rgba(212, 165, 82, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 165, 82, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #FFD37A;
}

.feature-card h5 {
    color: #FFD37A;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card p {
    color: #d4d4d4;
    font-size: 0.9rem;
    line-height: 1.5;
}


.xbox-cta {
    background: rgba(212, 165, 82, 0.1);
    border-top: 1px solid rgba(212, 165, 82, 0.3);
    border-bottom: 1px solid rgba(212, 165, 82, 0.3);
}

.cta-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 165, 82, 0.3);
    border-radius: 15px;
    padding: 40px;
}

.cta-card h3 {
    color: #FFD37A;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-card p {
    color: #e6e6e6;
    font-size: 1.1rem;
    margin: 0;
}


@media (max-width: 768px) {
    .xbox-hero {
        padding: 80px 0 40px;
        margin-top: 70px;
    }
    
    .xbox-title {
        font-size: 2.5rem;
    }
    
    .gaming-title {
        font-size: 2.2rem;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .cta-card .row {
        text-align: center;
        gap: 20px;
    }
    
    .btn-main {
        width: 100%;
        max-width: 300px;
    }
}
.herodiv{
    background-image: url(../img/reX.png);
    margin-right: 70px;
    margin-left: 70px;
border-radius: 20px;
background-position: center;
background-repeat: no-repeat;
background-position: right;
background-size: 500px;
background-color: #107C10;



}
 p {
    color: #000;
}

::-webkit-scrollbar {
    width: 12px;
    background: #0a0e17;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #D4A552, #B8860B);
    border-radius: 10px;
    border: 2px solid #0a0e17;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #107C10, #28b628);
}
.game-card, .console-card, .category-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: perspective(1000px) rotateX(0) rotateY(0);
}
.breadcrumb-item + .breadcrumb-item::before {
 
  color: #FFD37A;
  font-size: 1.2rem;
  padding: 0 8px;
}

.breadcrumb-item.active {
  color: #ffffff;
  font-weight: 700;
}
.breadcrumb-item::before {
  display: none;
}

