/* ===== Quest Rewards System Styles ===== */

/* Rewards Section */
.quest-rewards-section {
    margin-top: 4rem;
    padding: 3rem 0;
    background: var(--color-game-dark-surface);
    border-radius: 24px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    position: relative;
    overflow: hidden;
}

.quest-rewards-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-game-primary);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.rewards-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.rewards-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-game-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.5);
    position: relative;
}

.rewards-title::after {
    content: "✨";
    position: absolute;
    right: -60px;
    top: -10px;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

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

.rewards-description {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Rewards Grid */
.rewards-chain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Reward Chain Card */
.reward-chain-card {
    background: var(--color-game-dark-card);
    border-radius: 20px;
    border: 2px solid rgba(168, 85, 247, 0.2);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.reward-chain-card:nth-child(1) { animation-delay: 0.1s; }
.reward-chain-card:nth-child(2) { animation-delay: 0.2s; }
.reward-chain-card:nth-child(3) { animation-delay: 0.3s; }
.reward-chain-card:nth-child(4) { animation-delay: 0.4s; }
.reward-chain-card:nth-child(5) { animation-delay: 0.5s; }
.reward-chain-card:nth-child(6) { animation-delay: 0.6s; }
.reward-chain-card:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reward-chain-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-game-neon);
    border-color: var(--color-game-neon-cyan);
}

.reward-chain-card.claimable {
    border-color: var(--color-game-purple-400);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.4);
}

.reward-chain-card.claimed {
    opacity: 0.7;
    border-color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
}

/* Card Header */
.reward-card-header {
    position: relative;
    padding: 1.5rem 2rem 1rem;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.reward-day-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-game-secondary);
    color: var(--color-text-primary);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-game-purple);
    border: 2px solid rgba(0, 255, 255, 0.3);
    z-index: 2;
}

.reward-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-game-purple-200);
    margin-bottom: 0.5rem;
}

.reward-description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* Card Body */
.reward-card-body {
    padding: 2rem;
}

.rewards-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Individual Reward */
.reward-item {
    background: var(--color-game-dark-surface);
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(168, 85, 247, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.reward-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--color-game-purple-400) 50%, transparent 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.reward-item:hover::before {
    transform: scaleX(1);
}

.reward-item.normal {
    border-color: rgba(34, 197, 94, 0.3);
}

.reward-item.normal::before {
    background: linear-gradient(90deg, transparent 0%, #22c55e 50%, transparent 100%);
}

.reward-item.vip {
    border-color: rgba(251, 146, 60, 0.3);
}

.reward-item.vip::before {
    background: linear-gradient(90deg, transparent 0%, #fb923c 50%, transparent 100%);
}

.reward-item.claimed {
    border-color: rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.reward-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Reward Header */
.reward-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reward-type-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reward-type-badge.normal {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
}

.reward-type-badge.vip {
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    color: white;
}

/* Reward Content */
.reward-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reward-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(168, 85, 247, 0.2);
    position: relative;
}

.reward-icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reward-item:hover .reward-icon::after {
    opacity: 1;
}

.reward-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reward-details {
    flex: 1;
}

.reward-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.reward-type-info {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.reward-count {
    background: linear-gradient(135deg, var(--color-game-purple-600) 0%, var(--color-game-purple-700) 100%);
    color: var(--color-text-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

/* Action Buttons */
.reward-action {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.reward-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.reward-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.reward-btn:hover::before {
    left: 100%;
}

.reward-btn.collect {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.reward-btn.collect:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.reward-btn.collected {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: #d1d5db;
    cursor: not-allowed;
}

.reward-btn.locked {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

.reward-btn-icon {
    font-size: 1rem;
}

/* VIP Status Indicator */
.vip-required {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Claimed Status Overlay */
.reward-claimed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(5, 150, 105, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reward-item.claimed:hover .reward-claimed-overlay {
    opacity: 1;
}

/* Progress Indicator */
.reward-progress {
    height: 4px;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
}

.reward-progress-fill {
    height: 100%;
    background: var(--gradient-game-primary);
    transition: width 0.5s ease;
    border-radius: 2px;
}

/* Special Effects for Claimable Rewards */
@keyframes claimablePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.reward-btn.collect.pulse {
    animation: claimablePulse 2s infinite;
}

/* Loading State */
.reward-btn.loading {
    position: relative;
    color: transparent;
}

.reward-btn.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .rewards-chain-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .quest-rewards-section {
        margin-top: 1rem;
        padding: 1rem 0;
        border-radius: 12px;
    }
    .rewards-title {
        font-size: 2rem;
    }
    .rewards-title::after {
        right: -20px;
        font-size: 1.2rem;
    }
    .rewards-chain-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 0.5rem;
    }
    .reward-chain-card {
        border-radius: 12px;
        min-width: 0;
    }
    .rewards-split {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }
    .reward-card-header {
        padding: 0.7rem 1rem 0.3rem;
    }
    .reward-card-body {
        padding: 1rem;
    }
    .reward-day-badge {
        top: -8px;
        right: 10px;
        padding: 0.4rem 0.7rem;
        font-size: 0.8rem;
    }
    .reward-content {
        gap: 0.5rem;
        flex-direction: column;
        text-align: center;
    }
    .reward-icon {
        width: 44px;
        height: 44px;
        margin: 0 auto;
    }
    .reward-details {
        text-align: center;
    }
    .reward-name {
        font-size: 1.05rem;
    }
    .reward-btn {
        width: 100%;
        padding: 0.8rem 0;
        font-size: 1rem;
        justify-content: center;
    }
    .reward-btn-icon {
        font-size: 1.2rem;
    }
    .reward-claimed-overlay {
        font-size: 1rem;
        padding: 0.5rem;
    }
    .vip-required {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .rewards-title {
        font-size: 1.3rem;
    }
    .reward-chain-card {
        padding: 0.5rem;
    }
    .reward-content {
        gap: 0.3rem;
    }
    .reward-btn {
        font-size: 0.95rem;
        padding: 0.7rem 0;
    }
    .reward-claimed-overlay {
        font-size: 0.9rem;
    }
}

/* Dark Mode Enhancements */
@media (prefers-color-scheme: dark) {
    .reward-icon {
        border-color: rgba(168, 85, 247, 0.3);
    }

    .reward-item {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .reward-item:hover {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    }
}

/* Animation Delays for Staggered Effect */
.reward-chain-card:nth-child(8) { animation-delay: 0.8s; }
.reward-chain-card:nth-child(9) { animation-delay: 0.9s; }
.reward-chain-card:nth-child(10) { animation-delay: 1.0s; }
.reward-chain-card:nth-child(11) { animation-delay: 1.1s; }

/* ===== Journey Complete Celebration Styles ===== */
.journey-complete-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg,
        rgba(168, 85, 247, 0.15) 0%,
        rgba(236, 72, 153, 0.15) 25%,
        rgba(245, 158, 11, 0.15) 50%,
        rgba(34, 197, 94, 0.15) 75%,
        rgba(59, 130, 246, 0.15) 100%);
    border-radius: 2rem;
    border: 3px solid;
    border-image: linear-gradient(45deg, #a855f7, #ec4899, #f59e0b, #22c55e, #3b82f6) 1;
    overflow: hidden;
    text-align: center;
    color: white;
}

.journey-complete-container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate-glow 8s linear infinite;
    pointer-events: none;
}

.celebration-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ffd700, #ffed4e, #fbbf24, #f59e0b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    margin-bottom: 1rem;
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

.celebration-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #a855f7;
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

.celebration-message {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
    color: #e5e7eb;
    animation: fadeInUp 1s ease-out;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.achievement-card {
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

.achievement-card:nth-child(1) { animation-delay: 0.2s; }
.achievement-card:nth-child(2) { animation-delay: 0.4s; }
.achievement-card:nth-child(3) { animation-delay: 0.6s; }

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: bounce 1.5s infinite;
}

.achievement-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 1rem;
    color: #d1d5db;
}

.legendary-message {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
    border: 2px solid #ffd700;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffd700;
    animation: glow-pulse 3s ease-in-out infinite;
}

.new-journey-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 1.5rem;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.new-journey-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 1rem;
}

.new-journey-description {
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.journey-action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.journey-btn {
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.journey-btn-primary {
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.journey-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

.journey-btn-secondary {
    background: rgba(107, 114, 128, 0.8);
    color: #d1d5db;
    border: 2px solid rgba(107, 114, 128, 0.5);
}

.journey-btn-secondary:hover {
    background: rgba(107, 114, 128, 1);
    transform: translateY(-1px);
}

/* Fireworks Animation */
.fireworks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.firework {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: firework 2s ease-out infinite;
}

.firework-1 {
    background: #ff6b6b;
    animation-delay: 0s;
    top: 20%;
    left: 20%;
}

.firework-2 {
    background: #4ecdc4;
    animation-delay: 0.5s;
    top: 30%;
    right: 20%;
}

.firework-3 {
    background: #45b7d1;
    animation-delay: 1s;
    bottom: 30%;
    left: 30%;
}

.firework-4 {
    background: #f9ca24;
    animation-delay: 1.5s;
    bottom: 20%;
    right: 30%;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffd700;
    animation: confetti-fall 3s linear infinite;
}

.confetti:nth-child(odd) {
    background: #ff6b6b;
    animation-delay: 0.5s;
    width: 6px;
    height: 6px;
}

.confetti:nth-child(3n) {
    background: #4ecdc4;
    animation-delay: 1s;
    width: 8px;
    height: 8px;
}

/* Keyframe Animations */
@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    100% { text-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.6); }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.3);
    }
}

@keyframes firework {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(3);
        opacity: 0.8;
    }
    100% {
        transform: scale(6);
        opacity: 0;
    }
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Additional celebration animations */
@keyframes celebration-zoom {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes text-rainbow {
    0% { color: #ff6b6b; }
    16% { color: #feca57; }
    32% { color: #48dbfb; }
    48% { color: #ff9ff3; }
    64% { color: #54a0ff; }
    80% { color: #5f27cd; }
    100% { color: #ff6b6b; }
}

/* Enhanced Journey Complete Animations */
.celebration-title {
    animation: pulse-glow 2s ease-in-out infinite alternate, text-rainbow 3s infinite;
}

.achievement-card {
    animation: slideInUp 0.8s ease-out forwards, celebration-zoom 2s ease-in-out 1s infinite alternate;
}

.journey-btn {
    position: relative;
    overflow: hidden;
}

.journey-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.journey-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Mobile optimizations for journey complete */
@media (max-width: 480px) {
    .celebration-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .achievement-card {
        padding: 1rem;
    }

    .achievement-icon {
        font-size: 2rem;
    }

    .firework {
        width: 3px;
        height: 3px;
    }

    .journey-complete-container {
        padding: 1.5rem 1rem;
        margin: 1rem;
    }
}

/* Responsive Design for Journey Complete */
@media (max-width: 768px) {
    .journey-complete-container {
        padding: 2rem 1.5rem;
    }

    .celebration-title {
        font-size: 2.5rem;
    }

    .celebration-subtitle {
        font-size: 1.4rem;
    }

    .celebration-message {
        font-size: 1.1rem;
    }

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

    .journey-action-buttons {
        flex-direction: column;
        align-items: center;
    }

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