/* ============================================
   JUVEN STARS - PROFESSIONAL CSS
   Background image visible with subtle overlays
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.5;
}

/* Glass morphism background overlay - LIGHT so image shows */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: -1;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1a1a2e;
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.navbar {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700, #ff6600);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: #ffd700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #ffd700;
    border-radius: 2px;
}

.admin-link {
    background: #ff6600;
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
}

.admin-link:hover {
    background: #e55a00;
    color: white;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #1a1a2e;
    z-index: 1000;
    transition: right 0.3s ease;
    padding: 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-header img {
    height: 40px;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-links a {
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.3s;
}

.mobile-menu-links a:hover {
    background: #ff6600;
}

/* ============================================
   MAIN CONTAINER
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    text-align: center;
    padding: 80px 0 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,102,0,0.2);
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 24px;
    border: 1px solid rgba(255,102,0,0.3);
}

.badge-year {
    background: #ff6600;
    padding: 2px 10px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
}

.badge-text {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-year {
    color: #ffd700;
}

.hero-tagline {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

.hero-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.category-badge.singing {
    background: linear-gradient(135deg, #1e3c72, #0f2b4f);
    border: 1px solid #2a5298;
}

.category-badge.spelling {
    background: linear-gradient(135deg, #ff6600, #e55a00);
    border: 1px solid #ff6600;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: #ff6600;
    color: white;
}

.btn-primary:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: #1e3c72;
    transform: translateY(-2px);
}

/* ============================================
   PRIZES SECTION
   ============================================ */
.prizes {
    padding: 60px 0;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.prize-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.prize-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255,215,0,0.3);
}

.prize-card.first-prize {
    border-top: 4px solid #ffd700;
}

.prize-card.second-prize {
    border-top: 4px solid #adb5bd;
}

.prize-corner {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    background: #1a1a2e;
    padding: 0 10px;
}

.prize-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px;
}

.prize-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.prize-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.prize-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.prize-item {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.prize-item i {
    color: #28a745;
}

.prize-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ============================================
   JOURNEY SECTION
   ============================================ */
.journey {
    padding: 60px 0;
}

.journey-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.step {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    background: #ff6600;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.step-arrow {
    color: #ffd700;
    font-size: 1.2rem;
}

/* ============================================
   SCHEDULE SECTION
   ============================================ */
.schedule {
    padding: 60px 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.schedule-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.schedule-card:hover {
    background: rgba(0, 0, 0, 0.6);
}

.schedule-icon {
    font-size: 2rem;
    color: #ffd700;
}

.schedule-info h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.schedule-info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin: 5px 0;
}

.schedule-info i {
    margin-right: 8px;
    width: 16px;
}

.registration-card {
    background: rgba(30,60,114,0.6);
    border-left: 4px solid #28a745;
    margin-bottom: 20px;
}

.grand-finale-card {
    background: rgba(255,102,0,0.2);
    border: 1px solid #ffd700;
    margin-top: 20px;
}

/* ============================================
   RULES SECTION
   ============================================ */
.rules {
    padding: 60px 0;
}

.rules-list {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 40px;
    list-style: none;
}

.rules-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rules-list li i {
    color: #28a745;
    font-size: 1rem;
}

/* ============================================
   SPONSORS SECTION
   ============================================ */
.sponsors {
    padding: 60px 0;
}

.sponsors-scroll {
    overflow: hidden;
    padding: 20px 0;
}

.sponsors-track {
    display: flex;
    animation: scrollSponsors 30s linear infinite;
    gap: 40px;
}

.sponsors-track:hover {
    animation-play-state: paused;
}

.sponsor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 100px;
}

.sponsor-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: white;
    border-radius: 12px;
    padding: 8px;
}

.sponsor-placeholder {
    width: 60px;
    height: 60px;
    background: #1e3c72;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #ffd700;
}

.sponsor-item span {
    font-size: 0.75rem;
    text-align: center;
}

@keyframes scrollSponsors {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   HALL OF FAME
   ============================================ */
.hall-of-fame {
    padding: 60px 0;
}

.winners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.winner-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.winner-card:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.6);
}

.winner-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.winner-name {
    font-weight: 600;
    margin-bottom: 5px;
}

.winner-year {
    font-size: 0.75rem;
    color: #ffd700;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item i {
    width: 45px;
    height: 45px;
    background: rgba(255,102,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffd700;
}

.contact-info-item h4 {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.contact-info-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.contact-form {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
    font-family: inherit;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.contact-form textarea {
    resize: vertical;
    margin-bottom: 15px;
}

#contactResponse {
    margin-top: 15px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 50px 24px 30px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #ffd700;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.social-links a:hover {
    background: #ff6600;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */
.about-hero {
    text-align: center;
    padding: 60px 0 40px;
}

.mission-vision {
    padding: 40px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.mv-card:hover {
    transform: translateY(-5px);
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255,215,0,0.3);
}

.mv-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.mv-card p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.about-content {
    padding: 40px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.about-text h2 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: #ffd700;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.why-list {
    list-style: none;
    margin: 15px 0 20px;
}

.why-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
}

.why-list li i {
    color: #28a745;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-content: start;
}

.about-stats .stat-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.about-stats .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffd700;
}

.about-stats .stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.team {
    padding: 60px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.team-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.team-card:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.6);
}

.team-avatar {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.team-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.team-note {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-top: 20px;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
}

.contact-info-section {
    padding: 40px 0;
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(30,60,114,0.6), rgba(255,102,0,0.3));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.3);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.contact-details p {
    margin: 12px 0;
    color: rgba(255,255,255,0.8);
}

.contact-details i {
    width: 30px;
    color: #ffd700;
    margin-right: 10px;
}

.cta-section {
    padding: 40px 0 60px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(255,102,0,0.2), rgba(255,215,0,0.1));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255,215,0,0.3);
}

.cta-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #ffd700;
}

.cta-card p {
    margin-bottom: 25px;
    color: rgba(255,255,255,0.8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .prizes-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-steps {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-card h3 {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0 20px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .prize-card {
        padding: 20px;
    }
    
    .rules-list {
        padding: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-details p {
        font-size: 0.8rem;
        word-break: break-word;
    }
}