/* Pistons Rewards Styles */
:root {
    --pistons-blue: #1D428A;
    --pistons-red: #C8102E;
    --pistons-gray: #BEC0C2;
    --pistons-black: #000000;
    --pistons-white: #ffffff;
    --pistons-dark: #1a1a1a;
    --pistons-light: #f8f9fa;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--pistons-black);
    color: var(--pistons-white);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(29, 66, 138, 0.3);
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--pistons-white) !important;
    text-decoration: none;
}

.pistons-logo {
    background: var(--pistons-blue);
    color: var(--pistons-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    margin-right: 10px;
}

.brand-text {
    color: var(--pistons-white);
    margin-right: 5px;
}

.rewards-text {
    color: var(--pistons-red);
}

.nav-link {
    color: var(--pistons-white) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--pistons-red) !important;
    transform: translateY(-2px);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--pistons-white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--pistons-red);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--pistons-black) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    background-image: url(img/heroImage.jpg);
    background-size: cover;
    height: 90vh;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--pistons-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.hero-title i {
    color: var(--pistons-red);
    margin-left: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pistons-gray);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--pistons-light);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.join-btn {
    background: var(--pistons-blue);
    border: none;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.login-btn {
    background: var(--pistons-red);
    border: none;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}login

.join-btn:hover {
    background: #0f2a5c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(29, 66, 138, 0.3);
}

.enrollment-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-wrap: wrap; */
    gap: 20px;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

/* .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 150px;
} */

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--pistons-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--pistons-white);
}

.step span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pistons-white);
}

.step-arrow {
    color: var(--pistons-red);
    font-size: 1.5rem;
    font-weight: bold;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--pistons-white);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: var(--pistons-red);
    border-radius: 2px;
    transition: width 1.5s ease-out;
}

.section-title.animate::after {
    width: 100px;
}

@keyframes drawLine {
    0% {
        width: 0;
    }
    100% {
        width: 100px;
    }
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--pistons-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Redeem Section */
.redeem-section {
    padding: 80px 0;
    background: rgba(29, 66, 138, 0.1);
}

.reward-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.reward-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.reward-image {
    margin-bottom: 1.5rem;
}

.reward-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.reward-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pistons-white);
    margin-bottom: 1rem;
}

.reward-card p {
    color: var(--pistons-light);
    font-size: 1rem;
}

/* Earn Section */
.earn-section {
    padding: 80px 0;
    background: rgba(29, 66, 138, 0.1);
}

.earn-method {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.earn-method:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: var(--pistons-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--pistons-white);
}

.earn-method h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pistons-white);
    margin-bottom: 1rem;
}

.earn-method p {
    color: var(--pistons-light);
}

/* Video Section */
.video-section {
    margin-top: 4rem;
    text-align: center;
}

.video-container {
    margin-bottom: 3rem;
}

.video-thumbnail {
    position: relative;
    background: linear-gradient(135deg, var(--pistons-blue), #0f2a5c);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-overlay {
    margin-bottom: 2rem;
}

.pistons-logo-small {
    font-size: 2rem;
    font-weight: 900;
    color: var(--pistons-red);
    margin-bottom: 1rem;
}

.video-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pistons-white);
}

.bonus-points {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pistons-red);
    margin-bottom: 2rem;
}

.video-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.tier-shields {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.shield {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--pistons-light);
    opacity: 0.5;
}

.shield.champion {
    background: var(--pistons-gold);
    color: var(--pistons-dark);
    opacity: 1;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.partner-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.partner-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.partner-logo {
    width: 100px;
    height: 100px;
    background: var(--pistons-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
    color: var(--pistons-white);
    flex-shrink: 0;
}

.partner-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pistons-white);
    margin-bottom: 0.5rem;
}

.partner-info p {
    color: var(--pistons-light);
    font-size: 0.9rem;
}

.plus-more-section {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.plus-more-section p {
    font-size: 1.1rem;
    color: var(--pistons-white);
    margin-bottom: 1.5rem;
}

.btn-warning {
    background: var(--pistons-red);
    border: none;
    color: var(--pistons-white);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background: #a00d1f;
    transform: translateY(-2px);
}

/* Play to Earn Section */
.play-to-earn-section {
    padding: 80px 0;
    background: rgba(29, 66, 138, 0.1);
}

.play-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.play-step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--pistons-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--pistons-white);
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--pistons-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--pistons-white);
}

.play-step h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--pistons-white);
    margin-bottom: 1rem;
}

.play-step p {
    color: var(--pistons-light);
    font-size: 0.9rem;
}

/* Badges Section */
.badges-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.badge-column {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.badge-column.animate {
    opacity: 1;
    transform: translateY(0);
}

.badge-card {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.badge-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.badge-shield {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--pistons-white);
    position: relative;
    transition: all 0.3s ease;
}

.badge-shield.rookie {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.badge-shield.veteran {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.badge-shield.all-star {
    background: linear-gradient(135deg, #6c757d, #495057);
}

.badge-shield.champion {
    background: linear-gradient(135deg, var(--pistons-red), #a00d1f);
    color: var(--pistons-white);
}

.badge-shield.legend {
    background: linear-gradient(135deg, var(--pistons-red), #a00d1f);
    color: var(--pistons-white);
}

.badge-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--pistons-white);
    margin-bottom: 0.5rem;
}

.badge-card p {
    color: var(--pistons-light);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgba(29, 66, 138, 0.1);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(29, 66, 138, 0.1);
}

.faq-question h5 {
    margin: 0;
    font-weight: 600;
    color: var(--pistons-white);
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--pistons-red);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--pistons-light);
    line-height: 1.6;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .redeem-logo{
        width: 60%;
        height: auto;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .enrollment-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .partner-card {
        flex-direction: column;
        text-align: center;
    }
    
    .partner-logo {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .badges-row {
        flex-direction: column;
        align-items: center;
    }
    
    .badge-column {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .video-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .tier-shields {
        flex-direction: column;
        align-items: center;
    }
}
