/* Enhanced Battle Pass - Phase 3: Educational Integration */

.enhanced-battle-pass {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header with Education Integration */
.battle-pass-header {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(0, 9, 17, 0.9) 100%);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.battle-pass-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 165, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.season-info {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.season-title {
    font-size: 3rem;
    color: #ffa500;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(255, 165, 0, 0.5);
    background: linear-gradient(135deg, #ffa500, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.season-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Education Integration Section */
.education-integration {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(78, 205, 196, 0.3);
    position: relative;
    z-index: 1;
}

.depth-hound-avatar {
    position: relative;
    flex-shrink: 0;
}

.hound-mini {
    font-size: 3rem;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.4);
    animation: houndPulse 2s ease-in-out infinite;
}

@keyframes houndPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.avatar-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.education-status {
    flex: 1;
}

.education-label {
    color: #4ecdc4;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.bonus-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.bonus-chip {
    background: rgba(78, 205, 196, 0.2);
    border: 1px solid rgba(78, 205, 196, 0.4);
    border-radius: 15px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    color: #4ecdc4;
    font-weight: 500;
    white-space: nowrap;
}

.bonus-chip.inactive {
    background: rgba(128, 128, 128, 0.2);
    border-color: rgba(128, 128, 128, 0.3);
    color: #888;
}

.total-education-bonus {
    color: #ffa500;
    font-weight: bold;
    font-size: 1rem;
}

/* Progress Overview */
.progress-overview {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.tier-progress {
    margin-bottom: 2rem;
}

.current-tier-display {
    text-align: center;
    margin-bottom: 1rem;
}

.tier-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-number {
    display: block;
    font-size: 4rem;
    color: #ffa500;
    font-weight: bold;
    text-shadow: 0 0 30px rgba(255, 165, 0, 0.5);
    line-height: 1;
}

.tier-sublabel {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
}

/* Progress Bar with Educational Milestones */
.progress-bar-container {
    position: relative;
    width: 100%;
    height: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: visible;
    border: 1px solid rgba(255, 165, 0, 0.3);
    margin-bottom: 1rem;
}

.progress-bar-bg {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffa500, #ff6b35);
    border-radius: 10px;
    transition: width 0.8s ease;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
}

/* Educational Milestone Markers */
.milestone-marker {
    position: absolute;
    top: -10px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    border: 3px solid rgba(78, 205, 196, 0.6);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.milestone-marker:hover {
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 0 20px rgba(78, 205, 196, 0.6);
}

.marker-icon {
    font-size: 1rem;
    line-height: 1;
}

.marker-label {
    font-size: 0.6rem;
    font-weight: bold;
    color: #000;
    margin-top: 2px;
}

.next-milestone-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.milestone-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.milestone-details {
    display: flex;
    flex-direction: column;
}

.milestone-name {
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1rem;
}

.milestone-distance {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Quick Stats Grid */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.stat-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 165, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(255, 165, 0, 0.4);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.stat-value {
    color: #ffa500;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

/* Battle Pass Track */
.battle-pass-track {
    margin-bottom: 3rem;
}

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

.track-header h2 {
    color: #ffa500;
    font-size: 2rem;
    margin: 0;
}

.track-controls {
    display: flex;
    gap: 1rem;
}

.start-learning-btn {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.start-learning-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.premium-btn {
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

/* Tier Grid */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.tier-group {
    display: contents;
}

/* Individual Tier Items */
.tier-item {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 165, 0, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tier-item:hover {
    border-color: rgba(255, 165, 0, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
}

.tier-item.educational-tier {
    border-color: rgba(78, 205, 196, 0.4);
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.tier-item.educational-tier:hover {
    border-color: rgba(78, 205, 196, 0.6);
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.2);
}

.tier-item.current {
    border-color: #ffa500;
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.4);
    animation: currentTierGlow 2s ease-in-out infinite;
}

@keyframes currentTierGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255, 165, 0, 0.4); }
    50% { box-shadow: 0 0 40px rgba(255, 165, 0, 0.6); }
}

.tier-item.locked {
    opacity: 0.6;
    cursor: not-allowed;
}

.tier-number {
    position: absolute;
    top: -10px;
    left: 20px;
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

/* Educational Badge */
.education-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    border: 2px solid rgba(78, 205, 196, 0.6);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: educationBadgeGlow 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.badge-label {
    font-size: 0.6rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin-top: 2px;
}

@keyframes educationBadgeGlow {
    0%, 100% { box-shadow: 0 0 15px rgba(78, 205, 196, 0.4); }
    50% { box-shadow: 0 0 25px rgba(78, 205, 196, 0.7); }
}

/* Educational Content in Tiers */
.educational-content {
    margin-top: 1rem;
}

.milestone-name {
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.milestone-requirement {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.education-rewards {
    display: grid;
    gap: 0.5rem;
}

.mini-reward {
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    border-radius: 8px;
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    color: #4ecdc4;
    display: inline-block;
}

/* Standard Tier Content */
.standard-content {
    margin-top: 1rem;
}

.tier-rewards {
    display: grid;
    gap: 0.5rem;
}

.reward-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.reward-icon {
    font-size: 1.2rem;
}

.reward-amount {
    color: #ffa500;
    font-weight: bold;
}

.reward-type {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Tier States */
.tier-lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.claimed-checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: #4caf50;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.claim-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(45deg, #4caf50, #45a049);
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
}

/* Educational Premium Upsell */
.education-premium-upsell {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.15) 0%, rgba(78, 205, 196, 0.1) 100%);
    border: 2px solid rgba(255, 165, 0, 0.4);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.upsell-content {
    position: relative;
    z-index: 1;
}

.premium-header {
    margin-bottom: 2rem;
}

.depth-hound-premium {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: premiumFloat 3s ease-in-out infinite;
}

@keyframes premiumFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.premium-header h3 {
    color: #ffa500;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.premium-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Premium Benefits */
.premium-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-category {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.benefit-category h4 {
    color: #4ecdc4;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefit-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-category li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Premium Pricing */
.premium-pricing {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.price-tier {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    min-width: 200px;
}

.price-option.featured {
    border-color: #ffa500;
    box-shadow: 0 0 30px rgba(255, 165, 0, 0.3);
    transform: scale(1.05);
}

.best-value-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #4caf50, #45a049);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price-option h4 {
    color: #ffa500;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.price {
    color: #ffffff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.original-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.discount-price {
    color: #4caf50;
}

.savings {
    color: #4caf50;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.premium-button {
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.premium-button.premium {
    background: linear-gradient(45deg, #4caf50, #45a049);
    color: #fff;
}

.premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
}

.premium-guarantee {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Modal Styles */
.tier-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-content {
    background: linear-gradient(135deg, rgba(0, 9, 17, 0.95), rgba(30, 58, 95, 0.95));
    border: 2px solid rgba(255, 165, 0, 0.5);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.educational-modal .modal-content {
    border-color: rgba(78, 205, 196, 0.5);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.milestone-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.modal-header h2 {
    color: #4ecdc4;
    margin-bottom: 0.5rem;
}

.milestone-description {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.requirement-section {
    background: rgba(78, 205, 196, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.requirement-text {
    color: #4ecdc4;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.progress-to-milestone {
    margin-top: 1rem;
}

.progress-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.milestone-unlocked {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4caf50;
    font-weight: bold;
    font-size: 1.1rem;
}

.unlock-icon {
    font-size: 1.5rem;
}

.rewards-section {
    margin-bottom: 2rem;
}

.rewards-section h3 {
    color: #ffa500;
    margin-bottom: 1rem;
}

.reward-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.reward-item {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reward-item .reward-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.reward-details {
    display: flex;
    flex-direction: column;
}

.reward-name {
    color: #ffa500;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: capitalize;
}

.reward-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.close-modal {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.claim-milestone-btn {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover,
.claim-milestone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

/* Achievement Notification */
.achievement-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: #000;
    border: 2px solid rgba(78, 205, 196, 0.6);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2000;
    animation: achievementSlideIn 0.5s ease-out;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

@keyframes achievementSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.achievement-icon {
    font-size: 2rem;
    animation: achievementGlow 1s ease-in-out infinite;
}

@keyframes achievementGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.achievement-text h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: bold;
}

.achievement-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Reward Claim Modal */
.reward-claim-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.reward-modal-content {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2), rgba(255, 165, 0, 0.1));
    border: 3px solid rgba(78, 205, 196, 0.6);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: rewardModalAppear 0.5s ease-out;
}

@keyframes rewardModalAppear {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.reward-celebration {
    margin-bottom: 2rem;
}

.celebration-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    display: block;
    animation: celebrationBounce 1s ease-in-out infinite;
}

@keyframes celebrationBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.reward-showcase {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.reward-item-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(78, 205, 196, 0.3);
}

.reward-item-large .reward-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.reward-item-large .reward-name {
    color: #4ecdc4;
    font-weight: bold;
    text-transform: capitalize;
}

.reward-item-large .reward-value {
    color: #ffa500;
    font-weight: bold;
}

.depth-hound-celebration {
    background: rgba(78, 205, 196, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.hound-excited {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    animation: houndCelebrate 0.5s ease-in-out infinite alternate;
}

@keyframes houndCelebrate {
    from { transform: rotate(-5deg) scale(1); }
    to { transform: rotate(5deg) scale(1.1); }
}

.depth-hound-celebration p {
    color: #4ecdc4;
    font-style: italic;
    font-size: 1rem;
    margin: 0;
}

.continue-btn {
    background: linear-gradient(45deg, #ffa500, #ff6b35);
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.continue-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 165, 0, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .enhanced-battle-pass {
        padding: 1rem;
    }
    
    .season-title {
        font-size: 2rem;
    }
    
    .education-integration {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tier-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-benefits {
        grid-template-columns: 1fr;
    }
    
    .price-tier {
        flex-direction: column;
        align-items: center;
    }
    
    .price-option {
        min-width: 100%;
    }
    
    .premium-guarantee {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}