/* ===================================
   Gulay Avenue Comics - Custom Styles
   =================================== */

/* Root Variables */
:root {
    --primary-color: #4facfe;
    --secondary-color: #ffc107;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --accent-color: #ff6b6b;
    --sky-blue: #4facfe;
    --sky-blue-light: #00f2fe;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.3);
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-4);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

/* Navigation */
#mainNav {
    background: rgba(33, 37, 41, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

#mainNav.scrolled {
    padding: 0.5rem 0;
    background: rgba(33, 37, 41, 0.98);
}

.logo-img,
.navbar-logo {
    height: 50px;
    transition: transform 0.3s ease;
}

.logo-img:hover,
.navbar-logo:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-4);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    animation: wave 15s ease-in-out infinite;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('gulayavenue_poster_ensemble.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    transform: scale(1.1);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-logo-wrapper {
    margin-bottom: 1rem;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-family: 'Bangers', cursive;
    font-size: 4.5rem;
    color: #fff;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.text-gradient {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-motto {
    display: inline-block;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.hero-buttons .btn-primary {
    background: var(--gradient-4);
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: var(--dark-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator a {
    color: #fff;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
}

.about-section img {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.about-section img:hover {
    transform: scale(1.02);
}

.timeline-info {
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1) 0%, rgba(0, 242, 254, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--sky-blue);
}

.timeline-item {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item i {
    color: var(--sky-blue);
    font-size: 1.2rem;
}

/* Creator Info Box */
.creator-info {
    border-left: 4px solid var(--sky-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.creator-info h5 {
    color: var(--dark-color);
    font-weight: 700;
}

.creator-info p {
    color: var(--dark-color);
    line-height: 1.8;
}

.creator-info strong {
    color: var(--sky-blue);
}

.feature-list {
    font-size: 1.1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--sky-blue);
}

/* Stats Section */
.stats-section {
    background: var(--gradient-1);
    color: #fff;
}

.stat-card {
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Comics Section */
.comics-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.btn-filter {
    background: #fff;
    color: var(--dark-color);
    border: 2px solid #dee2e6;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-filter:hover,
.btn-filter.active {
    background: var(--gradient-4);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.comic-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.comic-item.hidden {
    display: none;
}

/* Pagination Info */
#paginationInfo {
    font-size: 0.95rem;
}

#paginationInfo i {
    color: var(--primary-color);
}

.comic-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.comic-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.comic-image-wrapper {
    position: relative;
    overflow: hidden;
}

.comic-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.comic-card:hover .comic-image-wrapper img {
    transform: scale(1.05);
}

.comic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.comic-card:hover .comic-overlay {
    opacity: 1;
}

.btn-view {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-view:hover {
    transform: scale(1.1);
}

.comic-info {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comic-date {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.comic-info .badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

/* Characters Section */
.characters-section {
    background: #fff;
    padding: 5rem 0;
}

.character-showcase {
    position: relative;
}

/* Character Carousel */
.character-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.carousel-container {
    position: relative;
    width: 100%;
    padding-bottom: 110%;
    background: #f8f9fa;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-image {
    width: 100%;
    height: auto;
    max-height: 85%;
    object-fit: contain;
    border-radius: 20px;
}

.carousel-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(102, 126, 234, 0.95);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.character-showcase img {
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.character-showcase:hover img {
    transform: scale(1.02);
}

.character-description {
    text-align: left;
}

.character-list {
    padding-left: 1rem;
}

.character-list p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-color);
}

.character-list strong {
    color: var(--sky-blue);
    font-weight: 600;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--gradient-2);
    color: #fff;
}

.newsletter-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.newsletter-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.newsletter-form .input-group {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
}

.newsletter-form .btn {
    padding: 1rem 2rem;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    background: var(--dark-color);
    border: none;
}

.newsletter-form .btn:hover {
    background: #000;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
    padding: 5rem 0;
}

.contact-box {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-control {
    padding: 1rem;
    border: 2px solid #dee2e6;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.social-links {
    margin-top: 3rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-3);
    color: #fff;
    border-radius: 50%;
    margin: 0 0.5rem;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

/* Legal Pages */
.legal-section {
    background: #f8f9fa;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.legal-content {
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.legal-content h1 {
    color: var(--dark-color);
    font-family: 'Bangers', cursive;
    font-size: 3rem;
    letter-spacing: 2px;
}

.legal-content h2 {
    color: var(--sky-blue);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.legal-content p, .legal-content li {
    color: var(--dark-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
}

.legal-content a {
    color: var(--sky-blue);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: #fff;
}

.footer-logo {
    height: 40px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-4);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Modal Styles */
.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: var(--gradient-1);
    color: #fff;
    border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 2rem;
}

.comic-description {
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    border: 2px solid #e9ecef;
    text-align: left;
}

.comic-description h5 {
    color: var(--sky-blue);
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--sky-blue);
}

.comic-description p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--dark-color);
}

.comic-description .scripture {
    background: rgba(79, 172, 254, 0.1);
    padding: 1rem;
    border-left: 4px solid var(--sky-blue);
    border-radius: 5px;
    font-style: italic;
    margin: 1.5rem 0;
}

.comic-description .motto {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 237, 78, 0.2) 100%);
    padding: 1rem;
    border-left: 4px solid #ffd700;
    border-radius: 5px;
    font-weight: 600;
    color: #856404;
    margin: 1.5rem 0;
}

.comic-description .hashtags {
    color: var(--sky-blue);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-logo {
        max-width: 300px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-motto {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 250px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-motto {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0 !important;
    }

    .newsletter-box {
        padding: 2rem 1.5rem;
    }

    .contact-box {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-logo {
        max-width: 200px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-motto {
        font-size: 0.95rem;
    }

    .logo-img,
    .navbar-logo {
        height: 40px;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* ===================================
   Pagination Controls
   =================================== */

.pagination-controls {
    margin-top: 3rem;
}

.btn-pagination {
    background: #fff;
    color: var(--dark-color);
    border: 2px solid #dee2e6;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-pagination:hover:not(:disabled) {
    background: var(--gradient-4);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-pagination:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8f9fa;
    color: #6c757d;
}

.btn-pagination i {
    font-size: 0.9rem;
}

/* Page Number Buttons */
.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-page-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    background: #fff;
    color: var(--dark-color);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-page-number:hover {
    background: var(--gradient-4);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.btn-page-number.active {
    background: var(--gradient-4);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

/* Pagination Dots */
.pagination-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.pagination-dot:hover {
    background: #adb5bd;
    transform: scale(1.2);
}

.pagination-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Responsive Pagination */
@media (max-width: 576px) {
    .btn-pagination {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .btn-page-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .pagination-numbers {
        display: none; /* Hide page numbers on mobile, show dots instead */
    }
}

@media (min-width: 577px) {
    .pagination-dots {
        display: none; /* Hide dots on desktop, show page numbers instead */
    }
}

/* Responsive Carousel Labels */
@media (max-width: 768px) {
    .carousel-label {
        font-size: 0.9rem;
        padding: 8px 15px;
        bottom: 5px;
    }
}

@media (max-width: 576px) {
    .carousel-label {
        font-size: 0.85rem;
        padding: 6px 12px;
        white-space: normal;
        max-width: 95%;
    }
}

