/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hind Guntur', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-image: url('../assets/branding/triangle-bg.svg');
    background-repeat: repeat-y;
    background-size: 100vw auto;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    background-color: rgba(239, 222, 238, 0.476); /* E9DFE8 with 40% opacity */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
}

.navigation {
    display: flex;
    gap: 1rem;
}

.nav-button {
    background-color: #f4e4a6; /* Light yellow */
    color: #CF7031;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-button:hover {
    background-color: #e6d595;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    flex: 1;
}

/* Section Headers */
.section-header {
    font-family: 'Comfortaa', cursive;
    font-size: 2.5rem;
    font-weight: 900;
    color: #CF7031;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

/* Welcome header - larger size */
.welcome-section .section-header {
    font-size: 3rem;
}

/* Welcome Section */
.welcome-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid rgba(207, 112, 49, 0.3);
}

.guinea-pigs-animation-container {
    position: relative;
    width: 100vw;
    height: 120px;
    overflow: hidden;
    margin: 1rem 0;
    margin-left: calc(-50vw + 50%);
    max-width: 100vw;
}

.walking-guinea-pig {
    position: absolute;
    width: 180px;
    height: 104px;
    background-image: url('../assets/animations/guineaPigWalking.png');
    background-repeat: no-repeat;
    background-size: 720px 104px;
    animation: 
        walk 0.6s steps(4) infinite,
        moveRight 8s linear infinite;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

@keyframes walk {
    0% { background-position: 0 0; }
    100% { background-position: -720px 0; } /* 4 frames * 180px width */
}

/* Mobile walk animations */
@media (max-width: 768px) {
    @keyframes walk {
        0% { background-position: 0 0; }
        100% { background-position: -600px 0; } /* 4 frames * 150px width */
    }
}

@media (max-width: 480px) {
    @keyframes walk {
        0% { background-position: 0 0; }
        100% { background-position: -480px 0; } /* 4 frames * 120px width */
    }
}

@media (max-width: 375px) {
    @keyframes walk {
        0% { background-position: 0 0; }
        100% { background-position: -400px 0; } /* 4 frames * 100px width */
    }
}

@keyframes moveRight {
    0% { left: -180px; }
    100% { left: 100vw; }
}

/* Projects Section */
.projects-section {
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 3px solid rgba(207, 112, 49, 0.3);
}

.project-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.project-image {
    text-align: center;
}

.game-image {
    width: 510px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.project-text {
    padding: 1rem;
}

.game-title {
    font-family: 'Comfortaa', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: #CF7031;
    margin-bottom: 1rem;
    text-align: center;
}

.game-title a {
    color: #CF7031;
    text-decoration: none;
    transition: color 0.3s ease;
}

.game-title a:hover {
    color: #b85a28;
}

.game-description,
.release-info {
    font-size: 1.3rem;
    color: #9D511F;
    margin-bottom: 1rem;
    line-height: 1.7;
    text-align: center;
}

/* About Section */
.about-section {
    margin-bottom: 4rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    font-size: 1.3rem;
    color: #9D511F;
    line-height: 1.7;
    text-align: center;
}

.about-logo {
    text-align: center;
}

.about-logo-image {
    max-width: 200px;
    height: auto;
}

/* Newsletter Section */
.newsletter-section {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 3px solid rgba(207, 112, 49, 0.3);
}

.newsletter-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-art {
    text-align: center;
}

.newsletter-art img {
    width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.newsletter-form {
    background-color: #f4e4a6;
    border: 5px solid #CF7031;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background-color: #FFEEAA;
    color: #333;
    padding: 1.5rem 0;
    margin-top: auto;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.footer-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder styles for social icons */
.instagram {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
}

.tiktok {
    background-color: #000;
}

.kofi {
    background: linear-gradient(45deg, #29abe2, #8b4513);
}

/* Additional Page Styles */
.devlog-content,
.contact-content,
.games-content {
    text-align: center;
    font-size: 1.4rem;
    color: #9D511F;
    line-height: 1.7;
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 2rem auto 0;
    background-color: #f4e4a6;
    border: 5px solid #CF7031;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    color: #9D511F;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 3px solid #CF7031;
    border-radius: 8px;
    font-family: 'Hind Guntur', sans-serif;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: #9D511F;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #29abe2;
    box-shadow: 0 0 0 3px rgba(41, 171, 226, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background-color: #CF7031;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 100%;
    margin-top: 1rem;
}

.submit-button:hover {
    background-color: #b85a28;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.submit-button:active {
    transform: translateY(0);
}

/* Blog Post Styles */
.blog-posts {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-preview {
    background-color: #f4e4a6;
    border: 5px solid #CF7031;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.blog-post-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-post-header-preview {
    margin-bottom: 1.5rem;
}

.blog-post-title {
    font-family: 'Comfortaa', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: #9D511F;
    margin-bottom: 0.5rem;
    text-align: left;
}

.blog-post-date {
    font-size: 1rem;
    color: #CF7031;
    margin-bottom: 1rem;
    font-weight: 400;
}

.blog-post-content-preview {
    font-size: 1.1rem;
    color: #9D511F;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-height: 60vh;
    overflow: hidden;
    position: relative;
}

.blog-post-content-preview p {
    margin-bottom: 1.5rem;
}

.blog-post-image-section-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin: 2rem 0;
}

.blog-post-text-preview {
    display: flex;
    align-items: center;
}

.blog-post-image-preview {
    text-align: center;
}

.blog-post-image-center-preview {
    text-align: center;
    margin: 2rem 0;
}

.blog-post-list-preview {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-list-preview li {
    margin-bottom: 0.8rem;
    color: #9D511F;
}

.blog-post-closing-preview {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
}

.blog-post-read-more {
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid rgba(207, 112, 49, 0.3);
    position: relative;
    z-index: 10;
    margin-top: auto;
}

.read-more-button {
    background-color: #CF7031;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.read-more-button:hover {
    background-color: #b85a28;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem;
}

.page-info {
    font-family: 'Comfortaa', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    color: #CF7031;
    background-color: #f4e4a6;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 3px solid #CF7031;
}

/* Individual Blog Post Page */
.blog-post {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-container {
    background-color: #f4e4a6;
    border: 5px solid #CF7031;
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.blog-post-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-post-header .blog-post-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #9D511F;
}

.blog-post-date {
    font-size: 1.2rem;
    color: #CF7031;
    font-weight: 600;
}

.date-bold {
    font-weight: 700;
}

.blog-post-content {
    font-size: 1.1rem;
    color: #9D511F;
    line-height: 1.7;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
}

.blog-post-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin: 2rem 0;
}

.blog-post-text {
    display: flex;
    align-items: center;
}

.blog-post-image {
    text-align: center;
}

.blog-post-image-center {
    text-align: center;
    margin: 2rem 0;
}

.blog-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.blog-post-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-post-list li {
    margin-bottom: 0.8rem;
    color: #9D511F;
}

.blog-post-closing {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 2rem;
}

.blog-post-back-button {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(207, 112, 49, 0.3);
}

.back-to-blog-button {
    background-color: #CF7031;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.back-to-blog-button:hover {
    background-color: #b85a28;
}

.game-card {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
}

.game-card .game-image {
    margin-bottom: 0;
    justify-self: end;
}

.game-card .game-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Game Screenshots */
.game-screenshots {
    margin-top: 3rem;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.screenshot-item {
    text-align: center;
}

.screenshot-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Logo link styling */
.logo a {
    text-decoration: none;
    display: block;
}

.logo a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-content {
        padding: 1rem;
    }
    
    .section-header {
        font-size: 2rem;
    }
    
    .project-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guinea-pigs-animation-container {
        height: 100px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        max-width: 100vw;
    }
    
    .walking-guinea-pig {
        width: 150px;
        height: 86px;
        background-size: 600px 86px;
    }
    
    .game-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .game-card .game-text {
        text-align: center;
    }
    
    .game-image {
        width: 100%;
        max-width: 400px;
        justify-self: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Blog responsive styles */
    .blog-post-preview {
        padding: 1.5rem;
    }
    
    .blog-post-content-preview {
        max-height: 50vh;
    }
    
    .blog-post-title {
        font-size: 1.5rem;
    }
    
    .blog-post-container {
        padding: 2rem;
    }
    
    .blog-post-header .blog-post-title {
        font-size: 2rem;
    }
    
    .blog-post-image-section,
    .blog-post-image-section-preview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .screenshot-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 1.5rem auto 0;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.95rem;
    }
    
    .submit-button {
        padding: 0.8rem 1.5rem;
        font-size: 1.1rem;
    }
    
    /* Newsletter responsive styles */
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-art img {
        width: 350px;
    }
}

@media (max-width: 480px) {
    .section-header {
        font-size: 1.5rem;
    }
    
    .game-title {
        font-size: 1.5rem;
    }
    
    .guinea-pigs-animation-container {
        height: 80px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        max-width: 100vw;
    }
    
    .walking-guinea-pig {
        width: 120px;
        height: 69px;
        background-size: 480px 69px;
    }
    
    .game-image {
        width: 100%;
        max-width: 300px;
    }
    
    .game-description,
    .release-info {
        font-size: 1.1rem;
    }
    
    .about-text p {
        font-size: 1.1rem;
    }
    
    /* Blog responsive styles for small screens */
    .blog-post-preview {
        padding: 1rem;
    }
    
    .blog-post-content-preview {
        max-height: 40vh;
    }
    
    .blog-post-title {
        font-size: 1.3rem;
    }
    
    .blog-post-container {
        padding: 1.5rem;
    }
    
    .blog-post-header .blog-post-title {
        font-size: 1.8rem;
    }
    
    .blog-post-content,
    .blog-post-content-preview {
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
        margin: 1rem auto 0;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
    }
    
    /* Newsletter responsive styles for small screens */
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-art img {
        width: 300px;
    }
}

/* Extra small mobile devices (iPhone SE, etc.) */
@media (max-width: 375px) {
    .main-content {
        padding: 0.5rem;
    }
    
    .section-header {
        font-size: 1.3rem;
    }
    
    .welcome-section .section-header {
        font-size: 1.5rem;
    }
    
    .game-title {
        font-size: 1.3rem;
    }
    
    .game-image {
        width: 100%;
        max-width: 250px;
    }
    
    .game-description,
    .release-info {
        font-size: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .guinea-pigs-animation-container {
        height: 70px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        max-width: 100vw;
    }
    
    .walking-guinea-pig {
        width: 100px;
        height: 58px;
        background-size: 400px 58px;
    }
    
    /* Blog responsive styles for extra small screens */
    .blog-post-preview {
        padding: 0.8rem;
    }
    
    .blog-post-content-preview {
        max-height: 30vh;
    }
    
    .blog-post-title {
        font-size: 1.2rem;
    }
    
    .blog-post-container {
        padding: 1rem;
    }
    
    .blog-post-header .blog-post-title {
        font-size: 1.5rem;
    }
    
    .blog-post-content,
    .blog-post-content-preview {
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 0.8rem;
        margin: 0.8rem auto 0;
    }
    
    .form-group {
        margin-bottom: 0.8rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.4rem;
        font-size: 0.85rem;
    }
    
    .submit-button {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
    }
    
    /* Newsletter responsive styles */
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-art img {
        width: 320px;
    }
}

/* MailerLite Form Custom Styling */
.newsletter-form .ml-form-embedContainer {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.newsletter-form .ml-form-embedWrapper {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
}

.newsletter-form .ml-form-embedBody {
    padding: 0 !important;
}

.newsletter-form .ml-form-embedContent h4 {
    font-family: 'Comfortaa', cursive !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #9D511F !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
}

.newsletter-form .ml-form-embedContent p {
    font-family: 'Hind Guntur', sans-serif !important;
    font-size: 1.1rem !important;
    color: #9D511F !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.6 !important;
}

.newsletter-form .ml-form-fieldRow input {
    background-color: rgba(255, 255, 255, 0.9) !important;
    border: 3px solid #CF7031 !important;
    border-radius: 8px !important;
    font-family: 'Hind Guntur', sans-serif !important;
    font-size: 1rem !important;
    color: #9D511F !important;
    padding: 0.75rem !important;
    margin-bottom: 1rem !important;
}

.newsletter-form .ml-form-fieldRow input:focus {
    outline: none !important;
    border-color: #29abe2 !important;
    box-shadow: 0 0 0 3px rgba(41, 171, 226, 0.2) !important;
}

.newsletter-form .ml-form-embedSubmit button {
    background: linear-gradient(90deg, #80C8E0 0%, #F26D86 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #5D3A1A !important;
    font-family: 'Comfortaa', cursive !important;
    font-weight: 900 !important;
    font-size: 1.1rem !important;
    padding: 0.75rem 1.5rem !important;
    width: 100% !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.newsletter-form .ml-form-embedSubmit button:hover {
    background: linear-gradient(90deg, #6BB8D0 0%, #E25D76 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.newsletter-form .ml-form-successBody {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.newsletter-form .ml-form-successContent h4 {
    font-family: 'Comfortaa', cursive !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #9D511F !important;
    text-align: center !important;
    margin-bottom: 1rem !important;
}

.newsletter-form .ml-form-successContent p {
    font-family: 'Hind Guntur', sans-serif !important;
    font-size: 1.1rem !important;
    color: #9D511F !important;
    text-align: center !important;
    line-height: 1.6 !important;
} 