:root {
    --color-black: #0F0E0E;
    --color-turquoise: #41EAD4;
    --color-pink: #FF2F92;
    --color-bg: #FFFFFF;
    --color-yellow: #FFBA49;
    --color-blue: #3F88E5;
    --color-pourquoi: #5A6268;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}

body {
    background-color: var(--color-bg);
    color: var(--color-black);
    font-size: 16px;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Styles communs */
.section-title {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background-color: var(--color-turquoise);
    color: var(--color-black);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    position: relative;
    transition: transform 0.3s;
}

.btn::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    border-radius: 30px;
    z-index: -1;
}

.btn:hover {
    transform: translate(2px, 2px);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 20px;
    }
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background-color: var(--color-bg);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Sora', sans-serif;
}

.hero-image {
    position: relative;
}

.document-graphic {
    background-color: var(--color-bg);
    border: 2px solid var(--color-black);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
}

.doc-line {
    height: 2px;
    background-color: var(--color-black);
    margin-bottom: 1rem;
}

.doc-line.short {
    width: 60%;
}

.doc-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-black);
    border-radius: 4px;
}

.checkbox.checked {
    background-color: var(--color-turquoise);
    border-color: var(--color-turquoise);
}

.checkbox-line {
    height: 2px;
    background-color: var(--color-black);
    flex: 1;
}

.controller {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--color-black);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
}

.controller-button {
    width: 20px;
    height: 20px;
    background-color: var(--color-turquoise);
    border-radius: 50%;
}

/* Search Section */
.search-section {
    padding: 2rem 0;
    background-color: rgba(15, 14, 14, 0.05);
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid var(--color-black);
    border-radius: 30px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
}

.search-icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Categories Section */
.categories-section {
    padding: 4rem 0;
}

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

.category-card {
    background-color: var(--color-bg);
    border: 2px solid var(--color-black);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    position: relative;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    border: 2px solid var(--color-black);
    border-radius: 8px;
    z-index: -1;
}

.category-card:hover {
    transform: translate(2px, 2px);
}

.category-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 1rem;
}

.category-level {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--color-pink);
}

.category-title {
    font-size: 20px;
    font-weight: 800;
}

/* Alert Section */
.alert-section {
    padding: 2rem 0;
    background-color: rgba(255, 47, 146, 0.1);
}

.alert-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-bg);
    border: 2px solid var(--color-pink);
    border-radius: 8px;
    padding: 1.5rem;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-pink);
    margin-bottom: 0.5rem;
}

.alert-text {
    font-size: 16px;
}

.alert-btn {
    margin-left: 2rem;
}

/* Guides Section */
.guides-section {
    padding: 4rem 0;
}

.guide-card {
    display: flex;
    align-items: center;
    background-color: var(--color-bg);
    border: 2px solid var(--color-black);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.guide-card::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    border: 2px solid var(--color-black);
    border-radius: 8px;
    z-index: -1;
}

.guide-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 1.5rem;
}

.guide-content {
    flex: 1;
}

.guide-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-pink);
    margin-bottom: 0.5rem;
}

.guide-title {
    font-size: 18px;
    font-weight: 800;
}

.guide-link {
    text-decoration: none;
    color: var(--color-black);
    font-weight: 700;
    display: inline-block;
    transition: transform 0.2s;
}

/* Nouveau style pour le bouton de détail de quête */
.btn-quest {
    background-color: var(--color-turquoise);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid var(--color-black);
}

.btn-quest:hover {
    transform: translateY(-3px);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.3);
    background-color: var(--color-yellow);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 18px;
    }

    .alert-box {
        flex-direction: column;
        text-align: center;
    }

    .alert-btn {
        margin: 1rem 0 0;
    }

    .guide-card {
        flex-direction: column;
        text-align: center;
    }

    .guide-icon {
        margin: 0 0 1rem;
    }

    .guide-link {
        margin-top: 1rem;
        display: inline-block;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .category-card {
        padding: 1.5rem;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .category-title {
        font-size: 18px;
    }
}

/* Pages de catégorie */
.category-page {
    padding: 2rem 0;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-icon {
    font-size: 48px;
    margin-bottom: 1rem;
}

.category-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 1rem;
}

.category-description {
    font-size: 18px;
    color: var(--color-black);
    opacity: 0.8;
}

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

.guide-card {
    background-color: var(--color-bg);
    border: 2px solid var(--color-black);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s;
    position: relative;
}

.guide-card::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    border: 2px solid var(--color-black);
    border-radius: 8px;
    z-index: -1;
}

.guide-card:hover {
    transform: translate(4px, 4px);
}

.guide-icon {
    font-size: 24px;
    margin-bottom: 1rem;
}

.guide-category {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.guide-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.guide-description {
    font-size: 16px;
    color: var(--color-black);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.guide-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .category-header h1 {
        font-size: 32px;
    }

    .category-description {
        font-size: 16px;
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }
}

/* Encarts publicitaires */
.ad-container {
    grid-column: 1 / -1;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: rgba(15, 14, 14, 0.05);
    border: 2px dashed var(--color-black);
    border-radius: 8px;
    text-align: center;
}

.ad-container::before {
    content: "Publicité";
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-bg);
    border: 1px solid var(--color-black);
    border-radius: 4px;
    margin-bottom: 1rem;
}

.ad-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--color-bg);
    border: 1px solid var(--color-black);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-black);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .ad-placeholder {
        height: 200px;
    }
}

/* Section Mais pourquoi ? */
.why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-pourquoi);
}

.why-text p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.why-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: #495057;
}

.why-icon {
    font-size: 1.3rem;
}

.why-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--color-pourquoi);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.why-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(155, 93, 229, 0.2);
}

.why-visual {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.why-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.why-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.why-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%) scale(0.95);
    opacity: 0.7;
    text-decoration: none;
    cursor: pointer;
}

.why-card:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.why-card.active {
    opacity: 1;
    transform: translateY(-50%) scale(1);
    z-index: 3;
}

.why-card.prev {
    transform: translateY(-150%) scale(0.95);
    z-index: 2;
}

.why-card.next {
    transform: translateY(50%) scale(0.95);
    z-index: 2;
}

.why-card.prev-2 {
    transform: translateY(-250%) scale(0.9);
    z-index: 1;
}

.why-card.next-2 {
    transform: translateY(150%) scale(0.9);
    z-index: 1;
}

.why-card-icon {
    font-size: 2rem;
    background: var(--color-pourquoi);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
}

@media (max-width: 768px) {
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-text h2 {
        font-size: 2rem;
    }

    .why-visual {
        height: 350px;
    }
    
    .why-card {
        padding: 15px;
    }
    
    .why-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-turquoise);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Category Progress */
.category-progress {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background-color: var(--color-turquoise);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gaming Elements */
.category-card {
    position: relative;
    overflow: hidden;
}

.category-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.category-card:hover::after {
    transform: translateX(100%);
}

.search-input {
    background-color: rgba(15, 14, 14, 0.05);
    border: 2px solid var(--color-black);
    transition: all 0.3s ease;
}

.search-input:focus {
    background-color: var(--color-bg);
    box-shadow: 0 0 0 3px var(--color-turquoise);
    outline: none;
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .category-progress {
        margin-top: 0.5rem;
    }
}

/* Search Results */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border: 2px solid var(--color-black);
    border-radius: 8px;
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-result-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    text-decoration: none;
    color: var(--color-black);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: rgba(15, 14, 14, 0.05);
}

.search-result-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-turquoise);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.search-result-content {
    flex: 1;
}

.search-result-category {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-pink);
    margin-bottom: 0.25rem;
}

.search-result-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.search-result-description {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
}

.no-results {
    padding: 2rem;
    text-align: center;
    color: #6c757d;
}

.no-results-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .search-results {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 80vh;
        border-radius: 12px 12px 0 0;
        margin: 0;
    }

    .search-result-item {
        padding: 0.75rem;
    }

    .search-result-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .search-result-title {
        font-size: 0.9rem;
    }

    .search-result-description {
        font-size: 0.8rem;
    }
}

/* Page d'erreur 404 */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg);
    padding: 2rem;
}

.error-content {
    text-align: center;
    max-width: 600px;
}

.error-content h1 {
    font-size: 8rem;
    color: var(--color-turquoise);
    margin: 0;
    line-height: 1;
    text-shadow: 2px 2px 0 var(--color-pink);
}

.error-content h2 {
    font-size: 2rem;
    color: var(--color-black);
    margin: 1rem 0;
}

.error-content p {
    color: #6c757d;
    margin: 0.5rem 0;
}

.error-content .button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: var(--color-turquoise);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.2s, box-shadow 0.2s;
}

.error-content .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .error-content h1 {
        font-size: 6rem;
    }
    
    .error-content h2 {
        font-size: 1.5rem;
    }
}

/* Authentification */
.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-login,
.btn-register,
.btn-logout {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-login {
    background-color: var(--color-turquoise);
    color: white;
}

.btn-register {
    background-color: var(--color-pink);
    color: white;
}

.btn-logout {
    background-color: #f8f9fa;
    color: #6c757d;
}

.btn-login:hover,
.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.username {
    font-weight: 600;
    color: var(--color-black);
}

.points {
    color: var(--color-turquoise);
    font-weight: 700;
}

/* Modales */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-content h2 {
    margin: 0 0 1.5rem;
    color: var(--color-black);
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-content input {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    font-size: 1rem;
}

.modal-content input:focus {
    border-color: var(--color-turquoise);
    outline: none;
}

.modal-content button {
    padding: 0.75rem;
    background-color: var(--color-turquoise);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.modal-content button:hover {
    background-color: var(--color-pink);
}

/* Notifications */
.notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

.notification.success {
    background-color: #28a745;
    color: white;
}

.notification.error {
    background-color: #dc3545;
    color: white;
}

.notification.warning {
    background-color: #ffc107;
    color: #212529;
}

.notification.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

/* Quêtes */
.quest-validate-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-turquoise);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
}

.quest-validate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.quest-progress {
    width: 100%;
    padding: 1rem;
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background-color: var(--color-turquoise);
    transition: width 0.3s ease;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #6c757d;
}

.quest-complete-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.quest-complete-content {
    text-align: center;
    color: white;
}

.quest-complete-content h2 {
    font-size: 2.5rem;
    margin: 0;
}

.points-earned {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-turquoise);
    margin: 1rem 0;
}

.quest-complete-animation {
    font-size: 4rem;
    animation: bounce 1s ease infinite;
}

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .auth-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .user-info {
        flex-direction: column;
        text-align: center;
    }

    .notification {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        text-align: center;
    }

    .quest-complete-content h2 {
        font-size: 2rem;
    }

    .points-earned {
        font-size: 2.5rem;
    }
} 