/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

:root {
    --primary-color: #4F46E5;
    --secondary-color: #7C3AED;
    /*--background-color: #F9FAFB;*/
    /*--text-color: #1F2937;*/
    --background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    --text-color: white;
    --text-na-bilem-pozadi: black;
    --accent-color: #10B981;
    --error-color: #EF4444;
    --success-color: #059669;
    --header-bg: #1F2937;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Layout Styles */
html, body {
    /*height: 100%;*/
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Inter', system-ui, sans-serif;    
    background: var(--background);
    color: var(--text-color);
    /*background: linear-gradient(135deg, #1a1a1a, #2a2a2a);*/
}

.language-switcher{
    float:right;
    margin-right: 20px;
}

/* Game Styles */
#matching-game {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 2rem auto;
    gap: 2rem;
}

.left-column, .right-column {
    display: flex;
    flex-direction: column;
    width: 45%;
    gap: 1rem;
}

.draggable, .droppable {
    padding: 1rem;
    margin: 0.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    text-align: center;
    cursor: move;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.draggable:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.droppable {
    min-height: 40px;
    background: #F3F4F6;
    border: 2px dashed #D1D5DB;
}



/* Header & Navigation */
header, footer {
    background: var(--header-bg);
    color: white;
    text-align: center;
    padding: 1.5rem 0;
    box-shadow: var(--card-shadow);
}

nav ul {
    list-style: none;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    text-align: center;
    padding: 1rem 0;
}

nav ul li {
    display: inline;
    margin: 0 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.25rem;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

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

}

/* Buttons */
button {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.2s ease, background-color 0.2s ease;
    margin:2px 0px;
}

form input[type="file"]{
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: transform 0.2s ease, background-color 0.2s ease;
    margin:2px 0px;
}

button:hover {
    background: var(--secondary-color);
    /*transform: translateY(-2px);*/
}

form input[type="file"]:hover{
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Door Block */
.blok-dveri {
    margin-top: 2rem;
    background-image: url("../img/dvere.jpg");
    height: 600px;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}

.dvere {
    display: inline-block;
    margin-top: 170px;
    height: 150px;
    width: 89px;
    margin-left: 34px;
    margin-right: 33px;
    transition: transform 0.3s ease;
}

.dvere:hover {
    transform: scale(1.05);
}

/* Status Messages */
.uspech {
    color: var(--success-color);
    animation: fadeIn 0.5s ease;
}

.neuspech, .chyba {
    color: var(--error-color);
    animation: fadeIn 0.5s ease;
}

/* Forms */
form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    max-width: 80%;
    margin: 2rem auto;
}

form label {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    display: block;
    margin-top: 20px;
    margin-bottom: 5px;
}

form input[type="text"],
form input[type="password"],
form input[type="email"],
form input[type="number"],
form textarea,
form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

form input:focus,
form textarea:focus,
form select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Tables */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1rem 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);  
    border: 1px solid #E5E7EB;  
}

th {
    background: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 1rem;
    text-align: left;    
}

td {
    padding: 1rem;
    border-bottom: 1px solid #E5E7EB;
    color: white;
    z-index: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background: #aec6d1;
}

/* Dashboard */
.dashboard {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    box-shadow: var(--card-shadow);
}

.section{
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);    
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.steps {
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.steps li:before {
    content: "✔";
    color: var(--accent-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    main {
        width: 95%;
        padding: 1rem;
    }
    
    form {
        max-width: 90%;
    }
    
    nav ul li {
        margin: 0 0.75rem;
    }
    
    .button-container {
        flex-direction: column;
    }
    
    table {
        font-size: 0.875rem;
    }
}

/* Message Overlay */
.message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.message-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    text-align: center;
    font-size: 1.2rem;
    max-width: 90%;
    width: 400px;
    animation: slideIn 0.3s ease;
    color:var(--primary-color);
}

/* Additional Animations */
@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Search Input */
#tableSearch {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    width: 250px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    float: right;
    transition: all 0.2s ease;
}

#tableSearch:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Action Buttons */
.btn-smazat,
.btn-pridat {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 6px;
    cursor: pointer;
    color: white;
    width: auto;
    min-width: 134px;
    border: none;
    transition: all 0.2s ease;
    margin: 7px 0px;
}

.btn-smazat {
    background-color: var(--error-color);
}

.btn-smazat:hover {
    background-color: #DC2626;
    transform: translateY(-2px);
}

.btn-pridat {
    background-color: var(--success-color);
}

.btn-pridat:hover {
    background-color: #047857;
    transform: translateY(-2px);
}

/*login style*/
/* Modern Split Screen Login Styles */

:root {
    --primary-color: #4F46E5;
    --secondary-color: #7C3AED;
    --gradient-start: #4F46E5;
    --gradient-end: #7C3AED;
    --text-primary: #1F2937;
    --text-secondary: #6B7280;
    --background-light: #F9FAFB;
    --error-color: #EF4444;
    --success-color: #10B981;
}

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

.split-container {
    display: flex;
}


.left-side {
    flex: 1;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    padding: 4rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.dynamic-text {
    max-width: 500px;
}

.dynamic-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#typing-text {
    font-size: 1.5rem;
    min-height: 3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.features {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.feature-item i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}


.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.1s ease-out;
}

.layer:nth-child(1) {
    background-image: url('../img/pozadi/ovladac.png');
    opacity: 0.1;
}

.floating-elements {
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-item {
    position: absolute;
    opacity: 0.1;
    background: white;
}

.dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 70%;
    right: 20%;
    animation: float 6s infinite ease-in-out;
    animation-delay: -1s;
}

.cross {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 50%;
    animation: float 7s infinite ease-in-out;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, 20px) rotate(5deg); }
    50% { transform: translate(20px, -20px) rotate(-5deg); }
    75% { transform: translate(-20px, -20px) rotate(5deg); }
}

.right-side {
    flex: 1;
    background: var(--background-light);

    align-items: center;
    justify-content: center;

}

.login-container {
    width: 100%;
    padding: 2.5rem;
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo-container {
    margin-bottom: 1.5rem;
}

.logo-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.logo-circle i {
    font-size: 2.5rem;
    color: white;
}

.login-header h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 700;
}

.form-group {
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

form {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    margin: 1rem auto;
}

.registrace-reset{
    margin-top:10px;
    font-size: 15px;
}

.seznamy{
    margin-top:50px;
    display: contents;
}

.separator-box {
    background-color: #f9f9f9; 
    border: 1px solid #ddd;   
    border-radius: 8px;       
    padding: 15px;           
    margin: 10px 0;          
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}


.separator-box label {
    color: var(--text-na-bilem-pozadi);
}

.separator-box:hover {
    background-color: #aec6d1;

}

.login-form{
    max-width:100% !important;
    width: 100% !important;
}




/*tvary*/


.shape {
    position: fixed;  /* Changed from absolute to fixed */
    opacity: 0.3;    /* Reduced opacity for better content visibility */
    filter: blur(1px);
    pointer-events: none;  /* Makes shapes non-interactive */
    z-index: -1;     /* Ensures shapes stay behind content */
}

.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
}

.small-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4ECDC4, #556270);
}

.square {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #4ECDC4, #556270);
    transform: rotate(45deg);
}

.small-square {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    transform: rotate(80deg);
}

.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid #6C5B7B;
}

.small-triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid #4ECDC4;
}

form {    
    color: white;
    z-index: 1;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: relative;
}

a{
    text-decoration: none;
    color: var(--text-color);
}

.akce-mistnosti{
    text-wrap-mode: nowrap;
}
.register-link{
    color: var(--text-na-bilem-pozadi);
}

.register-link a{
    color: var(--primary-color);
}

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

/*editace mapy*/
#map-container {
    position: relative;
    width: 100%;
    border: 1px solid #ccc;
    overflow: hidden; /* Omezí obrázek na hranice containeru */
}

#map-container img {
    width: 100%;
    height: auto; /* Zachovává poměr stran */
    display: block;
}

.dataTables_filter {
    margin-bottom: 10px; /* Vytvoří mezeru pod vyhledávacím polem */
}

.seznam-her{
    margin-bottom:100px;
}


.dataTables_wrapper .dataTables_length select {
    border: 1px solid #aaa;
    border-radius: 3px;
    padding: 5px;
    background-color: white;
    color: black;
    padding: 4px;
}

/*uvodni stranka*/
/* Úprava YouTube videa */
.youtube-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Zamezí interakci s videem */
    object-fit: cover; /* Zajistí přizpůsobení videa */
}

/* Úvodní sekce
.hero {
    position: relative;

    overflow: hidden;
}

.hero-overlay {
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        background-image: radial-gradient(rgba(255, 255, 255, 0.2) 0.5px, transparent 1px);
        background-size: 10px 10px;
        z-index: 1;
    }
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin: 0;
    animation: fadeIn 6s infinite;
    background-color: rgba(255, 255, 255, 1);
    color: black;
    padding: 50px;
    border-radius: 21px;
    box-shadow: 0px 0px 19px 0px;
    display:none; 
}

@keyframes fadeIn {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}*/

/* Druhá sekce */
/* Druhá sekce */
.screenshots {
    position: relative;
    padding: 80px 40px;
    overflow: hidden;
    text-align: center;
    z-index: 1; /* Přesvědčíme se, že obsah je nad efektem */
}

/* Pozadí s efektem */
.screenshots .background-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Umístění pod obsah sekce */
    background: linear-gradient(120deg, #6a11cb, #2575fc);
    background-size: 300% 300%; /* Pro animaci gradientu */
    animation: moveGradient 8s ease infinite; /* Animace gradientu */
    mix-blend-mode: screen; /* Efekt překrytí pro dynamiku barev */
}

/* Animace pozadí */
@keyframes moveGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Efekt jemných vln */
.screenshots .background-effect::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: rippleEffect 4s linear infinite;
    pointer-events: none; /* Zabrání interakci s efektem */
    opacity: 0.4;
}

/* Vlnění v efektu */
@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Kontejner pro obrázky */
.cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Maximálně 4 sloupce */
    gap: 20px;
    justify-content: center; /* Zarovnání obrázků na střed */
}

/* Responzivní rozložení */
@media (max-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr); /* 3 sloupce při menší šířce */
    }
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr); /* 2 sloupce na úzkých obrazovkách */
    }
}

@media (max-width: 480px) {
    .cards-container {
        grid-template-columns: repeat(2, 1fr); /* Pořád 2 sloupce i na velmi malých displejích */
    }
}

/* Obrázky (karty) */
.card {
    position: relative;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 250px;
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
}

.card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
}

.card-front {
    background-size: cover;
    background-position: center;
}

.card-back {
    background: #343a40;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotateY(180deg);
    font-size: 15px;
    text-align: justify;
    padding: 20px;
}

/* Modal styling */
.modalni {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

/* Zabraňuje posouvání šipek podle velikosti obrázku */
/* Modalní okno */
.modalni-content {
    position: relative;
    max-width: 1200px;
    max-height: 80%;
    display: flex;
    flex-direction: column; /* Zarovná obsah na vertikální osu */
    align-items: center; /* Obsah na střed */
    justify-content: center; /* Obsah na střed */
    text-align: center;
    padding: 20px;
}

/* Obrázek */
#modalni-image {
    max-width: 100%;
    max-height: 50vh; /* Fixní maximální výška obrázku */
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Text pod obrázkem */
#modalni-caption {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    max-width: 70%; /* Pevná šířka textu */
    word-wrap: break-word; /* Zalamování slov, pokud jsou příliš dlouhá */
    line-height: 1.5;
    margin: 0 auto;
    overflow: hidden; /* Zabrání textu "přetékat" */
}


.modalni-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#modalni-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 10px;
    margin-bottom: 20px;
}

#modalni-caption {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
}
/* Šipky */
.predchozi, .dalsi, .close-modalni {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    position: absolute; /* Fixní pozicování vůči modalni-content */
    top: 50%; /* Zarovná vertikálně na střed */
    transform: translateY(-50%); /* Posun pro přesné vycentrování */
    padding: 10px;
    z-index: 20;
    user-select: none;
}

.predchozi:hover, .dalsi:hover, .close-modalni:hover {
    color: #ddd;
}

.close-modalni {
    top: 20px;
    right: 20px;
    font-size: 2rem;
}

.predchozi {
    left: 50px; /* Fixní pozice vlevo */
}

.dalsi {
    right: 50px; /* Fixní pozice vpravo */
}

/* čtvrtá sekce */
.parallax {
    position: relative;
    background-image: url('../img/pozadi/parallax.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.form-section {
    padding: 50px 20px;
    background: #f8f9fa;
    text-align: center;
}

.form-section form {
    max-width: 500px;
    margin: 0 auto;
}

.form-section input, .form-section button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-section button {
    background: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.form-section button:hover {
    background: #0056b3;
}

.nahledy-her{
    font-size: 45px;
    margin-bottom: 60px;
    text-align: center;

}

.seznam-her{
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    padding: 80px 40px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .seznam-her{
        margin-bottom: 500px;        
    }

    
    
    .split-container {
        flex-direction: column;        
    }

    .left-side,
    .right-side {
        flex: none;
        width: 100%;
    }

    .left-side {
        padding: 2rem;
        text-align: center;
    }

    .dynamic-text {
        max-width: 100%;
    }

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

    .right-side {
        padding: 2rem;
        display: flex;
        justify-content: center;
    }

    .login-container {
        max-width: 400px;
        width: 100%;
    }
}



