* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Segoe UI', sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Particules de fond anim\u00e9es */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 68, 68, 0.05) 0%, transparent 50%);
}

/* Hero Section - Version ULTRA motivante */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: #000;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1593003290823-7797b36ce422?w=1600') center/cover;
    filter: brightness(0.4);
    z-index: 1;
}

.fire-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(196, 30, 58, 0.3) 0%, 
        rgba(255, 68, 68, 0.2) 50%,
        rgba(255, 107, 107, 0.3) 100%);
    z-index: 2;
    animation: fireFlicker 3s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Banni\u00e8re urgente */
.urgent-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #c41e3a, #ff4444, #c41e3a);
    padding: 1rem;
    text-align: center;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 3px;
    z-index: 10;
    animation: bannerPulse 2s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    margin: 0 10px;
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    padding: 2rem;
    animation: heroEntry 1.5s ease-out;
}

@keyframes heroEntry {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.badge-large {
    display: inline-block;
    background: linear-gradient(135deg, #ff4444, #c41e3a);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    box-shadow: 0 0 60px rgba(255, 68, 68, 0.8);
    animation: badgeGlow 2s ease-in-out infinite;
    border: 3px solid #fff;
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 0 60px rgba(255, 68, 68, 0.8);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 100px rgba(255, 68, 68, 1);
        transform: scale(1.05);
    }
}

.main-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    margin: 2rem 0;
    text-transform: uppercase;
    letter-spacing: 8px;
    line-height: 1.1;
}

.title-line {
    display: block;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.title-highlight {
    display: block;
    font-size: 7rem;
    background: linear-gradient(135deg, #ff4444, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: titleShine 3s ease-in-out infinite;
    margin: 0.5rem 0;
}

@keyframes titleShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.power-statement {
    margin: 2rem 0 3rem;
}

.statement-big {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ff4444;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.8);
    margin-bottom: 0.5rem;
}

.statement-medium {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    opacity: 0.9;
}

.countdown-container {
    background: rgba(0, 0, 0, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid #ff4444;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 80px rgba(255, 68, 68, 0.6);
    margin-top: 3rem;
}

.countdown-label {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.countdown-display {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 68, 68, 1);
    letter-spacing: 3px;
}

.countdown-subtitle {
    font-size: 1rem;
    margin-top: 1rem;
    opacity: 0.8;
    letter-spacing: 2px;
}

/* Container */
.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Sections g\u00e9n\u00e9rales */
section {
    margin-bottom: 5rem;
    animation: sectionFadeIn 1s ease-out;
}

@keyframes sectionFadeIn {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    background: linear-gradient(135deg, #fff, #ff4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 68, 68, 0.3);
}

/* Section R\u00e9alit\u00e9 Check */
.reality-check {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(0, 0, 0, 0.8));
    padding: 4rem 2rem;
    border-radius: 30px;
    border: 3px solid #c41e3a;
    box-shadow: 0 20px 80px rgba(196, 30, 58, 0.4);
}

.shock-box {
    text-align: center;
}

.shock-title {
    font-size: 4rem;
    color: #ff4444;
    margin-bottom: 3rem;
    animation: shockPulse 2s ease-in-out infinite;
}

@keyframes shockPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.reality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.reality-item {
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.reality-item.danger {
    background: rgba(255, 68, 68, 0.2);
    border: 2px solid #ff4444;
}

.reality-item.success {
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4caf50;
}

.reality-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.4);
}

.reality-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Section Challenge */
.challenge-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(196, 30, 58, 0.3));
    border-radius: 30px;
    border: 3px solid #ff4444;
}

.challenge-box {
    max-width: 800px;
    margin: 0 auto;
}

.challenge-question {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 0 0 30px rgba(255, 68, 68, 0.8);
}

.challenge-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-yes {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
    border: 3px solid #fff;
    padding: 2rem 3rem;
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 15px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.6);
}

.btn-yes:hover {
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.8);
}

.btn-no {
    background: rgba(100, 100, 100, 0.3);
    color: #999;
    border: 2px solid #666;
    padding: 2rem 3rem;
    font-size: 1.5rem;
    font-weight: 900;
    border-radius: 15px;
    cursor: pointer;
    text-transform: lowercase;
    transition: all 0.3s ease;
}

.btn-no:hover {
    background: rgba(255, 68, 68, 0.3);
    border-color: #ff4444;
    color: #ff4444;
}

.challenge-response {
    margin-top: 2rem;
    font-size: 2rem;
    font-weight: bold;
    min-height: 60px;
    animation: responseSlide 0.5s ease-out;
}

@keyframes responseSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Excuses */
.excuses-section {
    background: rgba(0, 0, 0, 0.8);
    padding: 4rem 2rem;
    border-radius: 30px;
    border: 3px solid #ff4444;
}

.excuses-destroyer {
    max-width: 900px;
    margin: 0 auto;
}

.excuse-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 15px;
    border-left: 5px solid #ff4444;
    transition: all 0.3s ease;
}

.excuse-item:hover {
    background: rgba(255, 68, 68, 0.2);
    transform: translateX(10px);
}

.excuse-text {
    font-size: 1.5rem;
    font-style: italic;
    color: #999;
}

.excuse-response {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff4444;
    text-align: right;
}

/* Section Urgence */
.urgency-section {
    background: linear-gradient(135deg, #c41e3a, #8b0000);
    padding: 4rem 2rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 0 100px rgba(196, 30, 58, 0.8);
    animation: urgencyPulse 3s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { box-shadow: 0 0 100px rgba(196, 30, 58, 0.8); }
    50% { box-shadow: 0 0 150px rgba(255, 68, 68, 1); }
}

.urgency-box h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.urgency-big {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.ticking-facts {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.fact {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.urgency-action {
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.5;
}

/* Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.goal-card {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(139, 0, 0, 0.2));
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(196, 30, 58, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.goal-card:hover {
    transform: translateY(-10px);
    border-color: #c41e3a;
    box-shadow: 0 20px 60px rgba(196, 30, 58, 0.4);
}

.goal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.goal-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-box {
    background: linear-gradient(135deg, #c41e3a, #8b0000);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Workout Logger */
.workout-logger {
    text-align: center;
    margin: 3rem 0;
}

.btn-primary {
    background: linear-gradient(135deg, #c41e3a, #ff4444);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.5);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 60px rgba(196, 30, 58, 0.7);
}

.btn-primary:active {
    transform: scale(0.98);
}

.motivation-message {
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b6b;
    min-height: 40px;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress Bar */
.progress-bar-container {
    margin: 3rem 0;
}

.progress-label {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.1);
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(196, 30, 58, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c41e3a, #ff4444, #ff6b6b);
    border-radius: 20px;
    transition: width 1s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 1rem;
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.8);
}

.progress-percent {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
    color: #ff6b6b;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(196, 30, 58, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.reason-card:hover {
    background: rgba(196, 30, 58, 0.1);
    border-color: #c41e3a;
    transform: translateX(10px);
}

.reason-number {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 3rem;
    font-weight: bold;
    color: #c41e3a;
    opacity: 0.5;
}

.reason-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
    margin-top: 1rem;
}

/* BSPP Tests */
.test-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(196, 30, 58, 0.3);
}

.test-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(196, 30, 58, 0.2);
    transition: all 0.3s ease;
}

.test-item:last-child {
    border-bottom: none;
}

.test-item:hover {
    background: rgba(196, 30, 58, 0.1);
}

.test-name {
    font-size: 1.3rem;
    font-weight: bold;
}

.test-requirement {
    color: #ff6b6b;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Mantra Section - Version ULTRA */
.mantra-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(196, 30, 58, 0.3));
    padding: 4rem 2rem;
    border-radius: 30px;
    border: 3px solid #ff4444;
}

.daily-mantra {
    background: rgba(0, 0, 0, 0.8);
    padding: 4rem;
    border-radius: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: bold;
    font-style: normal;
    margin-bottom: 2rem;
    border: 3px solid #ff4444;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.8);
    line-height: 1.4;
}

.btn-secondary {
    background: linear-gradient(135deg, #ff4444, #c41e3a);
    color: white;
    border: 3px solid #fff;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.6);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #c41e3a, #ff4444);
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(255, 68, 68, 0.8);
}

/* Section Appel Final */
.final-call {
    background: linear-gradient(135deg, #000, #1a0000);
    padding: 6rem 2rem;
    text-align: center;
    border-top: 5px solid #ff4444;
    border-bottom: 5px solid #ff4444;
    position: relative;
    overflow: hidden;
}

.final-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 68, 68, 0.2), transparent);
    animation: sweep 3s ease-in-out infinite;
}

@keyframes sweep {
    0% { left: -100%; }
    100% { left: 100%; }
}

.final-call-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.final-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    margin-bottom: 2rem;
    color: #ff4444;
    text-shadow: 0 0 40px rgba(255, 68, 68, 1);
    animation: finalTitlePulse 2s ease-in-out infinite;
}

@keyframes finalTitlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.final-message {
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 600;
    line-height: 1.6;
}

.final-timer {
    font-size: 1.8rem;
    margin: 2rem 0;
    color: #ff4444;
    font-weight: bold;
    animation: timerBlink 1s ease-in-out infinite;
}

@keyframes timerBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.btn-massive {
    background: linear-gradient(135deg, #ff4444, #ffd93d);
    color: #000;
    border: 5px solid #fff;
    padding: 2.5rem 5rem;
    font-size: 2rem;
    font-weight: 900;
    border-radius: 20px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    box-shadow: 0 20px 80px rgba(255, 68, 68, 0.8);
    margin-top: 2rem;
}

.btn-massive:hover {
    transform: scale(1.15) rotate(-2deg);
    box-shadow: 0 30px 100px rgba(255, 68, 68, 1);
}

.btn-massive:active {
    transform: scale(1.1);
}

/* Vision Section */
.vision-box {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.3), rgba(139, 0, 0, 0.3));
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid #c41e3a;
    text-align: center;
}

.vision-text {
    font-size: 1.4rem;
    line-height: 2;
    font-style: italic;
}

.vision-text strong {
    font-size: 1.6rem;
    color: #ff6b6b;
    display: block;
    margin-top: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer - Version POWER */
.footer {
    background: linear-gradient(135deg, #000, #1a0000);
    text-align: center;
    padding: 4rem 2rem;
    border-top: 5px solid #ff4444;
}

.footer-motto {
    margin-bottom: 3rem;
}

.motto-big {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: #ff4444;
    margin-bottom: 1rem;
    letter-spacing: 8px;
    text-shadow: 0 0 30px rgba(255, 68, 68, 0.8);
}

.motto-sub {
    font-size: 1.5rem;
    color: #fff;
    opacity: 0.8;
}

.footer-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.footer-stats p {
    font-size: 1.3rem;
    font-weight: bold;
    padding: 1rem 2rem;
    background: rgba(255, 68, 68, 0.2);
    border-radius: 10px;
    border: 2px solid #ff4444;
}

.footer-final {
    font-size: 2rem;
    font-weight: 900;
    margin-top: 3rem;
    color: #ff4444;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Notifications Personnalisées */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: overlayFadeIn 0.3s ease-out;
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.notification-box {
    background: linear-gradient(135deg, #1a0000, #000);
    border: 4px solid #ff4444;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 0 80px rgba(255, 68, 68, 0.8);
    animation: notificationPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

@keyframes notificationPop {
    0% {
        transform: scale(0.5) rotate(-10deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.notification-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: iconBounce 1s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.notification-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ff4444;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 68, 68, 1);
}

.notification-message {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #fff;
}

.notification-btn {
    background: linear-gradient(135deg, #ff4444, #ffd93d);
    color: #000;
    border: 3px solid #fff;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 900;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.6);
}

.notification-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 60px rgba(255, 68, 68, 0.9);
}

.notification-btn:active {
    transform: scale(1.05);
}

/* Toast notifications (petites notifications en haut) */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 2rem;
    background: linear-gradient(135deg, #ff4444, #c41e3a);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 3px solid #fff;
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.8);
    z-index: 9999;
    min-width: 300px;
    animation: toastSlideIn 0.5s ease-out;
    font-weight: bold;
    font-size: 1.1rem;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-notification.toast-out {
    animation: toastSlideOut 0.5s ease-out forwards;
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.toast-icon {
    font-size: 2rem;
    margin-right: 1rem;
    display: inline-block;
    animation: toastIconSpin 1s ease-in-out;
}

@keyframes toastIconSpin {
    0% {
        transform: rotate(0deg) scale(0);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Responsive Design - Tablettes et petits écrans */
@media (max-width: 1024px) {
    .main-title {
        font-size: 4rem;
    }
    
    .title-highlight {
        font-size: 5rem;
    }
    
    .statement-big {
        font-size: 2rem;
    }
    
    .countdown-display {
        font-size: 2rem;
    }
    
    .shock-title {
        font-size: 3rem;
    }
    
    .challenge-question {
        font-size: 2.2rem;
    }
    
    .final-title {
        font-size: 3.5rem;
    }
    
    .motto-big {
        font-size: 3rem;
    }
}

/* Responsive Design - Mobiles */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .notification-box {
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .notification-icon {
        font-size: 2.5rem;
    }
    
    .notification-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .notification-message {
        font-size: 1rem;
    }
    
    .notification-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .toast-notification {
        right: 1rem;
        left: 1rem;
        min-width: auto;
        font-size: 0.9rem;
        padding: 1rem 1.5rem;
    }
}
    
    .title-highlight {
        font-size: 3.5rem;
    }
    
    .statement-big {
        font-size: 1.5rem;
    }
    
    .statement-medium {
        font-size: 1rem;
    }
    
    .countdown-display {
        font-size: 1.2rem;
    }
    
    .countdown-display > div {
        font-size: 2rem !important;
    }
    
    h2, .shock-title, .final-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .challenge-question {
        font-size: 1.5rem;
    }
    
    .challenge-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-yes, .btn-no {
        width: 100%;
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
    }
    
    .excuse-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .excuse-text,
    .excuse-response {
        font-size: 1.1rem;
        text-align: center;
        margin-top: 0.5rem;
    }
    
    .urgency-big {
        font-size: 2rem;
    }
    
    .urgency-action {
        font-size: 1.5rem;
    }
    
    .ticking-facts {
        flex-direction: column;
    }
    
    .fact {
        font-size: 1.1rem;
    }
    
    .footer-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .motto-big {
        font-size: 2.5rem;
    }
    
    .footer-final {
        font-size: 1.5rem;
    }
    
    .daily-mantra {
        font-size: 1.5rem;
        padding: 2rem;
        min-height: 150px;
    }
    
    .btn-massive {
        padding: 1.5rem 2rem;
        font-size: 1.2rem;
    }
    
    .container {
        padding: 2rem 1rem;
    }
    
    section {
        margin-bottom: 3rem;
    }
    
    .reality-check,
    .challenge-section,
    .excuses-section,
    .urgency-section,
    .mantra-section {
        padding: 2rem 1rem;
    }
}

/* Responsive Design - Très petits mobiles */
@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .title-highlight {
        font-size: 3rem;
    }
    
    .badge-large {
        font-size: 0.8rem;
        padding: 0.8rem 1.5rem;
    }
    
    .notification-box {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .notification-icon {
        font-size: 2rem;
    }
    
    .notification-title {
        font-size: 1.3rem;
    }
    
    .notification-message {
        font-size: 0.9rem;
    }
    
    .notification-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-massive {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}
