/* ========== RESET Y CONFIGURACIÓN BASE ========== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    /* Prevenir corte de palabras */
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    cursor: none; /* Ocultar cursor nativo en desktop */
    position: relative;
}

/* ========== CURSOR PERSONALIZADO ========== */
.cursor, .cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: opacity 0.3s;
}

.cursor {
    width: 10px;
    height: 10px;
    background: #0ff;
    box-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0,255,255,0.5);
    background: rgba(0,255,255,0.1);
}

/* ========== CANVAS MATRIX ========== */
#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    opacity: 0.15;
}

/* ========== FONDOS Y EFECTOS ========== */
.bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(120,0,255,0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0,255,255,0.3) 0%, transparent 50%),
                linear-gradient(125deg, #000 0%, #0a0a1a 100%);
    z-index: -2;
    animation: bgMove 20s ease infinite;
}

@keyframes bgMove {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(60deg); }
}

.grid {
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(0,255,255,0.1) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
    perspective: 1000px;
    transform: rotateX(60deg) scale(2);
}

@keyframes gridMove {
    100% { transform: rotateX(60deg) scale(2) translateY(50px); }
}

/* ========== PERSONAJES FLOTANTES ========== */
.persona {
    position: fixed;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 5;
    transition: transform 0.2s ease-out;
}

.persona-head {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0 auto 10px;
    box-shadow: 0 0 20px rgba(0,255,255,0.5);
    position: relative;
    transform-origin: center bottom;
    transition: transform 0.3s ease-out;
}

.persona-eye {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    position: absolute;
    top: 18px;
    transition: transform 0.1s ease-out;
}

.persona-eye.left { left: 12px; }
.persona-eye.right { right: 12px; }

.persona-mouth {
    width: 20px;
    height: 10px;
    border: 2px solid #000;
    border-top: none;
    border-radius: 0 0 20px 20px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.persona-body {
    width: 40px;
    height: 30px;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0,255,255,0.3);
}

/* ========== NAVEGACIÓN ========== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,255,255,0.1);
}

.logo {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(90deg, #0ff, #f0f, #0ff);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoGrad 3s linear infinite;
    letter-spacing: 3px;
    text-decoration: none;
    flex-shrink: 0;
}

@keyframes logoGrad {
    100% { background-position: 200%; }
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.3s;
    white-space: nowrap;
    /* Evitar corte de palabras */
    overflow: visible;
    word-break: keep-all;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0ff, #f0f);
    transition: width 0.3s;
    box-shadow: 0 0 10px #0ff;
}

.nav-links a:hover, .nav-links a.active {
    color: #0ff;
    text-shadow: 0 0 20px #0ff;
}

.nav-links a:hover::before, .nav-links a.active::before {
    width: 100%;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 50px 50px;
    perspective: 1000px;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.glitch {
    font-size: clamp(28px, 7vw, 90px);
    font-weight: 900;
    background: linear-gradient(90deg, #0ff, #f0f, #ff0, #0ff);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch 0.3s infinite, gradAnim 5s linear infinite;
    letter-spacing: clamp(1px, 0.8vw, 8px);
    margin-bottom: 30px;
    line-height: 1.2;
    /* NO romper palabras */
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

@keyframes glitch {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); filter: hue-rotate(90deg); }
    40% { transform: translate(-3px, -3px); filter: hue-rotate(180deg); }
    60% { transform: translate(3px, 3px); filter: hue-rotate(270deg); }
    80% { transform: translate(3px, -3px); filter: hue-rotate(360deg); }
}

@keyframes gradAnim {
    100% { background-position: 200%; }
}

.subtitle {
    font-size: clamp(12px, 3vw, 32px);
    color: #0ff;
    margin-bottom: 40px;
    letter-spacing: clamp(0.5px, 0.5vw, 6px);
    text-transform: uppercase;
    animation: neon 2s ease-in-out infinite;
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff;
    /* NO romper palabras */
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

@keyframes neon {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.description {
    font-size: clamp(14px, 2.5vw, 20px);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 60px;
    opacity: 0.9;
    padding: 0 15px;
    /* Permitir wrap de líneas pero NO romper palabras */
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

/* ========== BOTONES ========== */
.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    padding: 0 15px;
}

.btn {
    padding: 18px 50px;
    font-size: clamp(13px, 2vw, 16px);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #0ff, #f0f);
    color: #000;
    box-shadow: 0 0 20px rgba(0,255,255,0.5);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0,255,255,0.7);
}

.btn-secondary {
    background: transparent;
    color: #0ff;
    border: 3px solid #0ff;
    box-shadow: 0 0 20px rgba(0,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(0,255,255,0.1);
    transform: translateY(-5px) scale(1.05);
}

/* ========== SECCIONES ========== */
section {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    overflow-x: hidden;
}

.section-title {
    font-size: clamp(24px, 5.5vw, 60px);
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #0ff, #f0f, #ff0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: clamp(1px, 0.4vw, 4px);
    animation: titleFloat 3s ease-in-out infinite;
    padding: 0 15px;
    /* NO romper palabras */
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========== SKILLS GRID ========== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 30px;
    width: 100%;
}

.skill-item {
    background: rgba(0,0,0,0.6);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(0,255,255,0.3);
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0,255,255,0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.skill-item:hover::before {
    width: 300px;
    height: 300px;
}

.skill-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #0ff;
    box-shadow: 0 20px 60px rgba(0,255,255,0.5);
}

.skill-icon {
    font-size: clamp(40px, 6vw, 60px);
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0,255,255,0.5));
    position: relative;
    z-index: 1;
}

.skill-name {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    margin-bottom: 10px;
    color: #0ff;
    position: relative;
    z-index: 1;
    /* Evitar corte de palabras */
    hyphens: none;
    word-break: normal;
}

.skill-level {
    font-size: clamp(13px, 2vw, 14px);
    color: rgba(255,255,255,0.7);
    position: relative;
    z-index: 1;
}

/* ========== PROJECTS GRID ========== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 40px;
    width: 100%;
}

.project-card {
    background: rgba(0,0,0,0.6);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(0,255,255,0.3);
    transition: all 0.5s;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(0,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.5s;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #0ff;
    box-shadow: 0 25px 70px rgba(0,255,255,0.6);
}

.project-image {
    height: 250px;
    background: linear-gradient(135deg, rgba(0,255,255,0.2), rgba(255,0,255,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(50px, 8vw, 80px);
    border-bottom: 2px solid rgba(0,255,255,0.3);
    position: relative;
    z-index: 1;
}

.project-info {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.project-title {
    font-size: clamp(20px, 3vw, 28px);
    margin-bottom: 15px;
    color: #0ff;
    font-weight: 800;
    /* NO romper palabras */
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

.project-desc {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    /* Permitir wrap pero NO romper palabras */
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0,255,255,0.2);
    color: #0ff;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: clamp(11px, 1.5vw, 13px);
    border: 1px solid rgba(0,255,255,0.4);
    font-weight: 600;
    white-space: nowrap;
}

/* ========== SERVICES GRID ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 40px;
    width: 100%;
}

.service-card {
    background: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 25px;
    border: 2px solid rgba(0,255,255,0.3);
    text-align: center;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(0,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.5s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: #0ff;
    box-shadow: 0 25px 70px rgba(0,255,255,0.6);
}

.service-icon {
    font-size: clamp(45px, 6vw, 60px);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(0,255,255,0.5));
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: clamp(20px, 3vw, 26px);
    margin-bottom: 15px;
    color: #0ff;
    font-weight: 800;
    position: relative;
    z-index: 1;
    /* NO romper palabras */
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

.service-desc {
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
    /* Permitir wrap pero NO romper palabras */
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

/* ========== ABOUT SECTION ========== */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0,0,0,0.5);
    padding: 60px;
    border-radius: 30px;
    border: 2px solid rgba(0,255,255,0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(0,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.about-content p {
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 1.9;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 1;
    /* Permitir wrap pero NO romper palabras */
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* ========== CONTACT SECTION ========== */
.contact-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px;
    border: 2px solid rgba(0,255,255,0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.contact-content::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(0,255,255,0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.contact-intro {
    text-align: center;
    font-size: clamp(16px, 2.5vw, 20px);
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
    /* Permitir wrap pero NO romper palabras */
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

.contact-methods {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact-item {
    flex: 1;
    min-width: min(250px, 100%);
    text-align: center;
    padding: 40px 30px;
    background: rgba(0,255,255,0.05);
    border-radius: 20px;
    transition: all 0.5s;
    text-decoration: none;
    color: #fff;
    border: 2px solid rgba(0,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0,255,255,0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-item:hover::before {
    width: 400px;
    height: 400px;
}

.contact-item:hover {
    background: rgba(0,255,255,0.15);
    transform: translateY(-10px) scale(1.05);
    border-color: #0ff;
    box-shadow: 0 20px 60px rgba(0,255,255,0.4);
}

.contact-icon {
    font-size: clamp(45px, 6vw, 50px);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-label {
    font-size: clamp(12px, 2vw, 14px);
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.contact-value {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
    color: #0ff;
    text-shadow: 0 0 10px rgba(0,255,255,0.5);
    position: relative;
    z-index: 1;
    /* Solo para emails/números permitir romper */
    word-break: break-all;
}

/* ========== FOOTER ========== */
footer {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0,0,0,0.9);
    border-top: 2px solid rgba(0,255,255,0.3);
    box-shadow: 0 -10px 40px rgba(0,255,255,0.1);
    /* NO romper palabras */
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    nav {
        padding: 20px 30px;
    }
    
    .nav-links {
        gap: 25px;
    }
    
    .nav-links a {
        font-size: 13px;
    }
    
    section {
        padding: 80px 40px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
        gap: 30px;
    }
    
    .contact-content,
    .about-content {
        padding: 40px;
    }
}

/* Mobile Large (481px - 767px) */
@media (max-width: 767px) {
    body {
        cursor: auto; /* Restaurar cursor normal en móvil */
    }
    
    .cursor, .cursor-follower, .persona {
        display: none !important;
    }
    
    nav {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        font-size: 24px;
        letter-spacing: 2px;
    }
    
    .nav-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-links a {
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    .hero {
        min-height: 80vh;
        padding: 120px 20px 40px;
    }
    
    .description {
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        gap: 15px;
        margin-bottom: 50px;
    }
    
    .btn {
        padding: 15px 30px;
        letter-spacing: 1px;
    }
    
    section {
        padding: 60px 20px;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .projects-grid,
    .skills-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-info,
    .service-card {
        padding: 25px;
    }
    
    .contact-content,
    .about-content {
        padding: 30px 20px;
        border-radius: 25px;
    }
    
    .contact-methods {
        gap: 20px;
    }
    
    .contact-item {
        min-width: 100%;
        padding: 30px 20px;
    }
    
    footer {
        padding: 30px 20px;
        font-size: 14px;
    }
}

/* Mobile Small (320px - 480px) */
@media (max-width: 480px) {
    .nav-links {
        gap: 8px;
    }
    
    .nav-links a {
        font-size: 10px;
        letter-spacing: 0.5px;
    }
    
    .btn {
        padding: 12px 25px;
        letter-spacing: 1px;
    }
    
    .project-image {
        height: 180px;
    }
    
    .contact-value {
        word-break: break-all;
    }
}

/* Landscape mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 120px 20px 30px;
    }
    
    .glitch {
        margin-bottom: 15px;
    }
    
    .subtitle {
        margin-bottom: 15px;
    }
    
    .description {
        margin-bottom: 25px;
    }
}

/* High resolution screens */
@media (min-width: 1920px) {
    .hero-content,
    section {
        max-width: 1600px;
    }
}

/* Prevenir overflow horizontal en todos los elementos */
* {
    max-width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* ===== REGLAS ANTI-CORTE DE PALABRAS (CRÍTICO) ===== */
/* Aplicar a TODOS los elementos de texto */
h1, h2, h3, h4, h5, h6,
.glitch, .subtitle, .section-title,
.project-title, .service-title, .skill-name,
.nav-links a, .btn, .logo,
p, span, div, a {
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
}

/* Solo emails y números largos pueden romperse */
.contact-value {
    word-break: break-all !important;
}
@media (max-width: 768px) {
  h1.glitch {
    font-size: 42px !important;
  }
}
