/* Home Specific Styles */
.home-hero {
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-search {
    display: flex;
    align-items: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 0.5rem;
    border-radius: 100px;
    background: rgba(24, 24, 27, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-search i {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0 1rem 0 1.5rem;
}

.hero-search input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-family: inherit;
    outline: none;
}

.hero-search input::placeholder {
    color: rgba(161, 161, 170, 0.7);
}

.hero-search .btn {
    border-radius: 100px;
    padding: 0.8rem 2.5rem;
    font-size: 1.05rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-stats span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(24,24,27,0.5);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.05);
}

.home-section {
    padding: 3rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
}

.view-all {
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.view-all:hover {
    color: var(--accent-primary);
    transform: translateX(5px);
}

.game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.game-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-8px);
    background: rgba(39, 39, 42, 0.6);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.game-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.game-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.game-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.p-card-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--glass-border);
}

.p-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.p-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.p-card-body h3 {
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    flex: 1;
}

.p-card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid var(--glass-border);
    margin-bottom: 1rem;
}

.p-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.p-value {
    font-size: 1.35rem;
    font-weight: 800;
}

/* Feature Boxes */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-box {
    padding: 2.5rem 2rem;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
}

.f-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.feature-box h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Home */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-search {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border: none;
        gap: 1rem;
    }
    .hero-search input {
        width: 100%;
        background: rgba(24, 24, 27, 0.8);
        padding: 1rem 1.5rem;
        border-radius: 100px;
        border: 1px solid var(--border-color);
        margin: 0;
    }
    .hero-search i {
        display: none;
    }
    .hero-search .btn {
        width: 100%;
    }
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
