﻿/* ============================================
   STYLES RESPONSIVE MOBILE - iPhone 13 Pro Max (428x926)
   ============================================ */

/* Variables pour mobile */
:root {
    --mobile-padding: 16px;
    --mobile-gap: 12px;
    --mobile-radius: 12px;
}

/* ============================================
   BREAKPOINT: MAX 480px (iPhone et petits mobiles)
   ============================================ */

@media (max-width: 480px) {
    /* Reset base */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    body {
        font-size: 14px;
        -webkit-text-size-adjust: 100%;
    }
    
    .container {
        padding: 0 var(--mobile-padding);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Empêcher tout débordement */
    .main-content,
    .content-section,
    .dashboard-section,
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    /* Header Mobile */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: white;
    }
    
    .header .container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .logo-container {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 1;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .nav {
        display: flex;
        align-items: center;
        flex: 0 0 auto;
    }
    
    /* Navigation Mobile */
    .nav ul,
    .nav-links {
        display: none;
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: white;
        padding: 0;
        margin: 0;
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        z-index: 999;
        gap: 0;
    }
    
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        padding: 10px;
        background: #f8f9fa;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        z-index: 1001;
        width: 44px;
        height: 44px;
        justify-content: center;
        align-items: center;
    }
    
    .menu-toggle span {
        display: block;
        width: 22px;
        height: 3px;
        background: var(--primary-color, #5d5033);
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    /* Menu mobile ouvert */
    .nav ul.active,
    .nav-links.active {
        display: flex !important;
        flex-direction: column;
    }
    
    .nav ul.active li,
    .nav-links.active li {
        width: 100%;
        text-align: center;
        list-style: none;
    }
    
    .nav ul.active a,
    .nav ul.active button,
    .nav-links.active a,
    .nav-links.active button {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        font-size: 15px;
        color: var(--text-color, #333);
        text-decoration: none;
        width: 100%;
    }
    
    .nav ul.active li:last-child a,
    .nav ul.active li:last-child button,
    .nav-links.active li:last-child a {
        border-bottom: none;
    }
    
    .nav ul.active .login-btn,
    .nav-links.active .login-btn {
        margin: 15px 20px;
        width: calc(100% - 40px);
    }
    
    /* Boutons Header */
    .header-buttons {
        gap: 8px;
    }
    
    .header-buttons .btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    /* Banner Section (index.html) */
    .banner {
        padding: 100px var(--mobile-padding) 60px;
        min-height: auto;
        flex-direction: column;
        justify-content: center;
    }
    
    .banner-content {
        text-align: center;
        padding: 0 10px;
        max-width: 100%;
    }
    
    .banner h2 {
        font-size: 24px !important;
        white-space: normal !important;
        word-wrap: break-word;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .banner p,
    .banner .typing-text {
        font-size: 14px !important;
        white-space: normal !important;
        word-wrap: break-word;
        line-height: 1.4;
    }
    
    .banner-image {
        display: none;
    }
    
    .scroll-down {
        width: 40px;
        height: 40px;
        bottom: 20px;
    }
    
    /* Contact Section Mobile */
    .contact-wrapper {
        flex-direction: column !important;
        padding: 0 10px !important;
        margin-top: 20px !important;
    }
    
    .contact-info {
        padding: 25px 15px !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-info h3 {
        font-size: 18px !important;
        white-space: nowrap !important;
        text-align: center !important;
        margin-bottom: 20px !important;
    }
    
    .contact-item {
        flex-direction: column !important;
        text-align: center !important;
        gap: 12px !important;
        padding: 15px !important;
    }
    
    .contact-icon {
        width: 50px !important;
        height: 50px !important;
        margin: 0 auto !important;
    }
    
    .contact-details {
        text-align: center !important;
    }
    
    .contact-details h4 {
        font-size: 14px !important;
        white-space: nowrap !important;
    }
    
    .contact-details p {
        font-size: 13px !important;
        word-break: break-word !important;
    }
    
    .contact-details p a {
        word-break: break-all !important;
    }
    
    /* Hero Section */
    .hero-section,
    .hero {
        padding: 60px var(--mobile-padding) 40px;
        text-align: center;
    }
    
    .hero-content {
        padding: 0;
    }
    
    .hero h1,
    .hero-section h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero p,
    .hero-section p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    /* Cards et Grilles */
    .courses-grid,
    .course-grid,
    .formateurs-grid,
    .testimonials-grid,
    .features-grid,
    .valeurs-grid {
        grid-template-columns: 1fr !important;
        gap: var(--mobile-gap);
        padding: 0 var(--mobile-padding);
    }
    
    .course-card,
    .formateur-card,
    .testimonial-card,
    .feature-card,
    .valeur-item {
        margin: 0;
        border-radius: var(--mobile-radius);
    }
    
    .course-card img,
    .course-card .course-image {
        height: 180px;
    }
    
    .course-card-content {
        padding: 15px;
    }
    
    .course-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .course-card p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .course-price {
        font-size: 18px;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    section h2,
    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
        padding: 0 var(--mobile-padding);
    }
    
    section p.section-subtitle {
        font-size: 14px;
        padding: 0 var(--mobile-padding);
    }
    
    /* Boutons généraux */
    .btn,
    button {
        padding: 12px 20px;
        font-size: 14px;
        border-radius: 8px;
    }
    
    .btn-primary {
        width: 100%;
    }
    
    /* Formulaires */
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 16px; /* Empêche le zoom sur iOS */
        border-radius: 8px;
    }
    
    /* Modal Mobile */
    .modal-content,
    .modal {
        width: 95%;
        max-width: none;
        margin: 10px;
        padding: 20px;
        border-radius: var(--mobile-radius);
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .close,
    .close-signup {
        top: 10px;
        right: 15px;
        font-size: 24px;
    }
    
    /* Footer Mobile */
    footer,
    .footer {
        padding: 40px var(--mobile-padding);
    }
    
    .footer-main {
        padding: 30px 15px !important;
    }
    
    .footer-main .container {
        padding: 0 !important;
    }
    
    .footer-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    .footer-brand {
        text-align: center !important;
    }
    
    .footer-logo {
        justify-content: center !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .footer-logo img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .footer-logo-text {
        text-align: center !important;
    }
    
    .footer-logo-text h3 {
        font-size: 22px !important;
    }
    
    .footer-logo-text span {
        font-size: 12px !important;
        white-space: nowrap !important;
    }
    
    .footer-brand > p {
        font-size: 13px !important;
        line-height: 1.6 !important;
        padding: 0 10px !important;
        text-align: center !important;
    }
    
    .footer-social {
        justify-content: center !important;
    }
    
    .footer-col {
        text-align: center !important;
    }
    
    .footer-col h4 {
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }
    
    .footer-col ul {
        align-items: center !important;
    }
    
    .footer-col a {
        font-size: 13px !important;
    }
    
    .footer-contact-info {
        align-items: center !important;
    }
    
    .footer-contact-info a {
        font-size: 12px !important;
        word-break: break-all !important;
    }
    
    .footer-bottom {
        padding: 20px 15px !important;
    }
    
    .footer-bottom-content {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
    }
    
    .footer-copyright {
        font-size: 12px !important;
    }
    
    .footer-legal {
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .footer-legal a {
        font-size: 12px !important;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
    
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-section a,
    .footer-section p {
        font-size: 13px;
    }
    
    /* Tables Mobile */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px;
        padding: 0 16px;
    }
    
    table {
        min-width: 600px;
        font-size: 13px;
    }
    
    th, td {
        padding: 10px 8px;
    }
}

/* ============================================
   BREAKPOINT: MAX 428px (iPhone 13 Pro Max exact)
   ============================================ */

@media (max-width: 428px) {
    /* Ajustements spécifiques iPhone 13 Pro Max */
    
    .hero h1,
    .hero-section h1 {
        font-size: 24px;
    }
    
    .hero p,
    .hero-section p {
        font-size: 13px;
    }
    
    /* Stats Cards */
    .stats-card,
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }
    
    .stat-item,
    .stat-card {
        padding: 15px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
    }
    
    .stat-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .stat-content h3,
    .stat-value {
        font-size: 20px;
    }
    
    .stat-content p,
    .stat-label {
        font-size: 11px;
    }
    
    /* Alternative Stats */
    .stats-alt-card {
        grid-template-columns: 1fr !important;
    }
    
    .stat-alt-item {
        padding: 15px;
    }
    
    .stat-alt-item h3 {
        font-size: 24px;
    }
    
    .stat-alt-item p {
        font-size: 11px;
    }
    
    /* Pricing Cards */
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .pricing-card .price {
        font-size: 32px;
    }
    
    /* FAQ */
    .faq-item {
        padding: 15px;
    }
    
    .faq-question {
        font-size: 14px;
    }
    
    .faq-answer {
        font-size: 13px;
    }
    
    /* Contact Form */
    .contact-form {
        padding: 20px;
    }
    
    /* Newsletter */
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* ============================================
   DASHBOARD MOBILE
   ============================================ */

@media (max-width: 480px) {
    /* Sidebar Mobile */
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        transform: translateX(-100%);
        z-index: 1000;
        transition: transform 0.3s ease;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .sidebar.active + .sidebar-overlay {
        display: block;
    }
    
    .sidebar-header h2 {
        font-size: 18px;
    }
    
    .sidebar-logo {
        width: 40px;
        height: 40px;
    }
    
    .nav-item {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .nav-item svg {
        width: 18px;
        height: 18px;
    }
    
    /* Main Content Mobile */
    .main-content {
        margin-left: 0 !important;
        padding: 15px;
        padding-top: 80px;
    }
    
    /* Header Dashboard */
    .dashboard-header,
    .header,
    .top-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 998 !important;
        padding: 12px 15px;
        background: white !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        display: flex !important;
        align-items: center;
        gap: 10px;
        width: 100% !important;
    }
    
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: #f0f0f0;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        flex-shrink: 0;
    }
    
    .menu-toggle svg {
        width: 24px;
        height: 24px;
        stroke: #333;
    }
    
    .header-right {
        gap: 8px;
    }
    
    .search-box {
        flex: 1;
        min-width: 0;
    }
    
    .search-box.mobile-visible {
        display: flex;
        position: absolute;
        top: 60px;
        left: 15px;
        right: 15px;
        z-index: 100;
    }
    
    .user-profile {
        gap: 8px;
    }
    
    .user-profile img {
        width: 35px;
        height: 35px;
    }
    
    .user-info {
        display: none;
    }
    
    /* Welcome Banner */
    .welcome-banner {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 15px;
    }
    
    .welcome-banner h1 {
        font-size: 20px;
    }
    
    .welcome-banner p {
        font-size: 13px;
    }
    
    /* Stats Overview */
    .stats-overview,
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    
    .stat-card {
        padding: 15px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .stat-card .icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .stat-card .icon svg {
        width: 20px;
        height: 20px;
    }
    
    .stat-card h3 {
        font-size: 22px;
        margin-bottom: 2px;
    }
    
    .stat-card p {
        font-size: 12px;
    }
    
    /* Content Sections */
    .content-section {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: var(--mobile-radius);
    }
    
    .content-section h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    /* Dashboard Grids */
    .dashboard-grid,
    .charts-grid,
    .activity-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    /* Course Cards */
    .course-list,
    .my-courses-grid {
        grid-template-columns: 1fr !important;
    }
    
    .course-item {
        flex-direction: column;
    }
    
    .course-item img,
    .course-item .course-thumb {
        width: 100%;
        height: 160px;
    }
    
    /* Form Elements */
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    /* Notifications */
    .notification-dropdown {
        position: fixed;
        top: 60px;
        left: 10px;
        right: 10px;
        width: auto;
        max-height: 70vh;
    }
    
    /* Messages */
    .messages-list {
        max-height: 400px;
    }
    
    .message-item {
        padding: 12px;
    }
    
    .message-avatar {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    /* Tabs */
    .tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tab-btn {
        flex: 1;
        min-width: calc(50% - 4px);
        padding: 10px 15px;
        font-size: 13px;
        text-align: center;
    }
    
    /* Charts */
    .chart-container {
        height: 250px !important;
    }
    
    /* Activity List */
    .activity-list,
    .recent-activity {
        padding: 0;
    }
    
    .activity-item {
        padding: 12px;
        flex-direction: row;
        gap: 10px;
    }
    
    .activity-icon {
        width: 35px;
        height: 35px;
    }
    
    .activity-content h4 {
        font-size: 14px;
    }
    
    .activity-content p {
        font-size: 12px;
    }
    
    .activity-time {
        font-size: 11px;
    }
}

/* ============================================
   COURSE BUILDER MOBILE
   ============================================ */

@media (max-width: 480px) {
    .course-builder-container {
        flex-direction: column;
    }
    
    .builder-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        order: 2;
    }
    
    .builder-main {
        width: 100%;
        padding: 15px;
        order: 1;
    }
    
    .builder-header {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .builder-header h1 {
        font-size: 20px;
    }
    
    .builder-actions {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }
    
    .builder-actions .btn {
        width: 100%;
    }
    
    /* Steps */
    .builder-steps {
        overflow-x: auto;
        padding: 10px;
        gap: 5px;
    }
    
    .step {
        min-width: 100px;
        padding: 10px;
        font-size: 12px;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }
    
    /* Module Items */
    .module-item {
        padding: 12px;
    }
    
    .module-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .module-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    /* Lesson Items */
    .lesson-item {
        padding: 10px;
        flex-wrap: wrap;
    }
    
    .lesson-actions {
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px;
    }
    
    /* Image Preview */
    .image-preview-container {
        height: 180px;
    }
    
    /* Price Inputs */
    .price-input {
        flex-direction: column;
    }
}

/* ============================================
   COURSE VIEW MOBILE
   ============================================ */

@media (max-width: 480px) {
    .course-view-container {
        flex-direction: column;
    }
    
    .course-content {
        padding: 15px;
    }
    
    .course-header-section {
        padding: 20px 15px;
    }
    
    .course-title {
        font-size: 22px;
    }
    
    .course-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .course-meta span {
        font-size: 12px;
    }
    
    .course-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }
    
    .course-price-card {
        padding: 20px;
    }
    
    .course-price {
        font-size: 28px;
    }
    
    /* Video Player */
    .video-container {
        border-radius: 8px;
    }
    
    .video-container iframe {
        height: 200px;
    }
    
    /* Curriculum */
    .curriculum-section {
        padding: 15px;
    }
    
    .module-accordion {
        padding: 12px;
    }
    
    .lesson-row {
        padding: 10px;
        flex-wrap: wrap;
    }
    
    /* Reviews */
    .reviews-section {
        padding: 15px;
    }
    
    .review-item {
        padding: 15px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
    }
    
    /* Related Courses */
    .related-courses-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   CATALOGUE MOBILE
   ============================================ */

@media (max-width: 480px) {
    .catalogue-header {
        padding: 30px 15px;
    }
    
    .catalogue-header h1 {
        font-size: 24px;
    }
    
    .filters-container {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .filter-group select {
        width: 100%;
    }
    
    .search-filter {
        width: 100%;
    }
    
    .search-filter input {
        width: 100%;
    }
    
    .catalogue-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
        padding: 15px;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    
    .pagination-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
}

/* ============================================
   UTILITAIRES MOBILE
   ============================================ */

@media (max-width: 480px) {
    /* Hide on mobile */
    .hide-mobile,
    .desktop-only {
        display: none !important;
    }
    
    /* Show on mobile only */
    .show-mobile,
    .mobile-only {
        display: block !important;
    }
    
    /* Flex utilities */
    .flex-mobile-col {
        flex-direction: column !important;
    }
    
    /* Text alignment */
    .text-mobile-center {
        text-align: center !important;
    }
    
    /* Width utilities */
    .w-mobile-full {
        width: 100% !important;
    }
    
    /* Spacing */
    .p-mobile-sm {
        padding: 10px !important;
    }
    
    .m-mobile-0 {
        margin: 0 !important;
    }
    
    /* Scrollbar webkit */
    ::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }
    
    /* Touch improvements */
    button,
    a,
    input,
    select,
    textarea {
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* ============================================
   SAFE AREA (Notch iPhone)
   ============================================ */

@supports (padding: max(0px)) {
    .header,
    .dashboard-header {
        padding-top: max(12px, env(safe-area-inset-top));
    }
    
    footer,
    .footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
    
    .sidebar {
        padding-top: max(20px, env(safe-area-inset-top));
    }
}

/* ============================================
   ORIENTATION: LANDSCAPE
   ============================================ */

@media (max-width: 926px) and (orientation: landscape) {
    .hero-section,
    .hero {
        padding: 30px var(--mobile-padding);
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .modal-content {
        max-height: 85vh;
    }
    
    .sidebar {
        width: 220px;
    }
    
    .video-container iframe {
        height: 250px;
    }
}

/* ============================================
   DARK MODE SUPPORT (optionnel)
   ============================================ */

@media (prefers-color-scheme: dark) {
    /* Ajoutez ici les styles dark mode si nécessaire */
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
