* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2c2c2c;
    color: #ffffff;
    overflow-x: hidden;
    padding: 15px;
    min-height: 100vh;
}

.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.language-dropdown {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-family: inherit;
    min-width: 120px;
    touch-action: manipulation;
}

.language-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.language-btn.active {
    border-color: rgba(255, 255, 255, 0.4);
}

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.language-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.language-btn.active i {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.95) 0%, rgba(40, 40, 40, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 150px;
}

.language-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    touch-action: manipulation;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-option.active {
    background: rgba(255, 107, 122, 0.2);
    color: #ff6b7a;
}

.language-option span {
    font-size: 14px;
    font-weight: 500;
}

[lang="ar"] {
    direction: rtl;
    text-align: right;
}

[lang="ar"] .language-selector {
    left: 20px;
    right: auto;
}

[lang="ar"] .github-student-badge {
    right: 20px;
    left: auto;
}

[lang="ar"] .hero-stats {
    direction: ltr;
}

[lang="ar"] .skill-percentage {
    float: left;
}

.github-student-badge {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 999;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 10px 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
}

.badge-content i {
    font-size: 16px;
    color: #ff6b7a;
}

.dashboard {
    display: flex;
    height: calc(100vh - 30px);
    gap: 15px;
    max-width: 100%;
}

.main-content {
    flex: 1;
    background-color: #2c2c2c;
    overflow-y: auto;
    padding: 30px;
    border-radius: 15px;
    min-width: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.hero-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 300px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6b7a, #ff4757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: clamp(16px, 3vw, 20px);
    color: #b8b8b8;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 120px;
}

.stat-number {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: #ff6b7a;
    margin-bottom: 5px;
}

.stat-label {
    font-size: clamp(12px, 2vw, 14px);
    color: #b8b8b8;
    font-weight: 500;
    line-height: 1.3;
}

.hero-image {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-animation {
    width: clamp(100px, 20vw, 150px);
    height: clamp(100px, 20vw, 150px);
    background: linear-gradient(135deg, #ff6b7a, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(40px, 8vw, 60px);
    color: white;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(255, 107, 122, 0.3);
}

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

.skills-section, .database-section, .tools-section, .maxbot-section, .journey-section, .contact-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.skills-section h3, .database-section h3, .tools-section h3, .maxbot-section h3, .journey-section h3, .contact-section h3 {
    font-size: clamp(20px, 4vw, 24px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 20px;
}

.skill-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.skill-card.main-skill {
    border-color: rgba(255, 107, 122, 0.3);
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.1) 0%, rgba(255, 71, 87, 0.05) 100%);
}

.skill-card:hover {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.15) 0%, rgba(255, 71, 87, 0.08) 100%);
    border-color: rgba(255, 107, 122, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 122, 0.2);
}

.skill-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.skill-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.skill-info {
    flex: 1;
    min-width: 0;
}

.skill-info h4 {
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.skill-info p {
    font-size: clamp(12px, 2.5vw, 13px);
    color: #b8b8b8;
    margin-bottom: 10px;
    line-height: 1.4;
}

.skill-level {
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #ff6b7a, #ff4757);
    border-radius: 4px;
    transition: width 1s ease;
}

.skill-percentage {
    font-size: 12px;
    font-weight: 600;
    color: #ff6b7a;
    min-width: 35px;
}

.database-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 20px;
}

.database-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.database-card:hover {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.15) 0%, rgba(255, 71, 87, 0.08) 100%);
    border-color: rgba(255, 107, 122, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 122, 0.2);
}

.database-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.database-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.database-info {
    flex: 1;
    min-width: 0;
}

.database-info h4 {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.database-info p {
    font-size: clamp(12px, 2.5vw, 14px);
    color: #b8b8b8;
    margin-bottom: 10px;
    line-height: 1.4;
}

.skill-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-badge.expert {
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
}

.skill-badge.good {
    background: rgba(255, 165, 2, 0.2);
    color: #ffa502;
}

.skill-badge.basic {
    background: rgba(255, 107, 122, 0.2);
    color: #ff6b7a;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 20px;
}

.tool-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tool-card:hover {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.15) 0%, rgba(255, 71, 87, 0.08) 100%);
    border-color: rgba(255, 107, 122, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 122, 0.2);
}

.tool-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.tool-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.tool-info {
    flex: 1;
    min-width: 0;
}

.tool-info h4 {
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.tool-info p {
    font-size: clamp(12px, 2.5vw, 14px);
    color: #b8b8b8;
    margin-bottom: 10px;
    line-height: 1.4;
}

.license-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.license-badge.own {
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
}

.license-badge.student {
    background: rgba(255, 107, 122, 0.2);
    color: #ff6b7a;
}

.license-badge.free {
    background: rgba(74, 144, 226, 0.2);
    color: #4a90e2;
}

.maxbot-section > p {
    font-size: clamp(14px, 3vw, 16px);
    color: #b8b8b8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 25px;
}

.feature-category {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-category:hover {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.12) 0%, rgba(255, 71, 87, 0.06) 100%);
    border-color: rgba(255, 107, 122, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 122, 0.15);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b7a, #ff4757);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    flex-shrink: 0;
}

.category-header h4 {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 600;
    color: #ffffff;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: clamp(12px, 2.5vw, 14px);
    color: #b8b8b8;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b7a;
    font-weight: bold;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #ff6b7a, #ff4757);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff6b7a, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 122, 0.3);
    border: 3px solid #2c2c2c;
}

.timeline-marker img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 4px;
}

.timeline-marker i {
    font-size: 18px;
    color: white;
}

.timeline-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.12) 0%, rgba(255, 71, 87, 0.06) 100%);
    border-color: rgba(255, 107, 122, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 122, 0.15);
}

.timeline-content h4 {
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: clamp(12px, 2.5vw, 14px);
    color: #b8b8b8;
    line-height: 1.6;
}

.contact-section > p {
    font-size: clamp(14px, 3vw, 16px);
    color: #b8b8b8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 20px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    touch-action: manipulation;
}

.contact-card:hover {
    background: linear-gradient(135deg, rgba(255, 107, 122, 0.15) 0%, rgba(255, 71, 87, 0.08) 100%);
    border-color: rgba(255, 107, 122, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 122, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b7a, #ff4757);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 107, 122, 0.3);
}

.contact-info {
    flex: 1;
    min-width: 0;
}

.contact-info h4 {
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.contact-info p {
    font-size: clamp(12px, 2.5vw, 14px);
    color: #ff6b7a;
    font-weight: 500;
    margin-bottom: 6px;
    word-break: break-all;
}

.contact-info span {
    font-size: clamp(11px, 2vw, 13px);
    color: #b8b8b8;
    line-height: 1.4;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
        overflow: auto;
    }

    .language-selector {
        top: 15px;
        right: 15px;
    }

    .github-student-badge {
        top: 15px;
        left: 15px;
        padding: 8px 12px;
    }

    .badge-content {
        font-size: 11px;
    }

    .badge-content i {
        font-size: 14px;
    }

    .dashboard {
        flex-direction: column;
        height: auto;
        gap: 10px;
    }

    .main-content {
        padding: 20px;
        border-radius: 10px;
        overflow-y: visible;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 25px;
        min-height: auto;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .hero-stat {
        min-width: 100px;
    }

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

    .skill-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }

    .skill-icon {
        align-self: center;
    }

    .database-grid, .tools-grid, .contact-cards {
        grid-template-columns: 1fr;
    }

    .database-card, .tool-card, .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

    .feature-categories {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-marker {
        left: -25px;
        width: 35px;
        height: 35px;
    }

    .timeline-marker img {
        width: 20px;
        height: 20px;
    }

    .timeline-marker i {
        font-size: 16px;
    }

    .language-btn {
        min-width: 100px;
        padding: 8px 12px;
        font-size: 13px;
    }

    .language-menu {
        min-width: 130px;
    }

    .language-option {
        padding: 10px 14px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 8px;
    }

    .language-selector {
        top: 10px;
        right: 10px;
    }

    .github-student-badge {
        top: 10px;
        left: 10px;
        padding: 6px 10px;
    }

    .main-content {
        padding: 15px;
    }

    .hero-section {
        padding: 20px 15px;
        gap: 20px;
        border-radius: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-stat {
        min-width: auto;
        width: 100%;
    }

    .skills-section, .database-section, .tools-section, .maxbot-section, .journey-section, .contact-section {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .skill-card, .database-card, .tool-card, .contact-card, .feature-category {
        padding: 15px;
        border-radius: 12px;
    }

    .timeline {
        padding-left: 25px;
    }

    .timeline-marker {
        left: -20px;
        width: 30px;
        height: 30px;
    }

    .timeline-marker img {
        width: 16px;
        height: 16px;
    }

    .timeline-marker i {
        font-size: 14px;
    }

    .timeline-content {
        padding: 15px;
    }

    .language-btn {
        min-width: 90px;
        padding: 6px 10px;
        font-size: 12px;
    }

    .language-menu {
        min-width: 120px;
    }

    .language-option {
        padding: 8px 12px;
    }
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6b7a, #ff4757);
    border-radius: 4px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff4757, #ff6b7a);
    box-shadow: 0 2px 8px rgba(255, 107, 122, 0.4);
}

::-webkit-scrollbar-corner {
    background: rgba(255, 255, 255, 0.05);
}

* {
    scrollbar-width: thin;
    scrollbar-color: #ff6b7a rgba(255, 255, 255, 0.05);
}

.main-content::-webkit-scrollbar {
    width: 10px;
}

.main-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    margin: 10px 0;
}

.main-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6b7a, #ff4757);
    border-radius: 5px;
    border: 2px solid transparent;
    background-clip: content-box;
}

.main-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff4757, #ff6b7a);
    box-shadow: 0 2px 8px rgba(255, 107, 122, 0.4);
}

@media (hover: none) and (pointer: coarse) {
    .skill-card:hover,
    .database-card:hover,
    .tool-card:hover,
    .contact-card:hover,
    .feature-category:hover,
    .timeline-content:hover {
        transform: none;
        box-shadow: none;
    }

    .language-btn:hover {
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .code-animation {
        animation: none;
    }
}
