/* Reset a základní styly */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b5cf6;
    --primary-dark: #7c3aed;
    --primary-light: #a78bfa;
    --secondary-color: #ec4899;
    --dark-bg: #0f0f1e;
    --darker-bg: #07070d;
    --card-bg: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --border-color: rgba(139, 92, 246, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigace */
.navbar {
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s;
    border-radius: 2px;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100vh;
    background: var(--darker-bg);
    z-index: 2000;
    transition: left 0.3s ease;
    overflow-y: auto;
    border-right: 1px solid var(--border-color);
}

.sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-header img {
    height: 35px;
}

.close-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.sidebar-menu {
    list-style: none;
    padding: 20px 0;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-menu a {
    display: block;
    padding: 15px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: background 0.3s;
}

.sidebar-menu a:hover {
    background: rgba(139, 92, 246, 0.1);
}

.sidebar-divider {
    height: 1px;
    background: var(--border-color);
    margin: 10px 0;
}

.sidebar-login,
.sidebar-signup {
    font-weight: 600;
}

/* Tlačítka */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.4);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background: white;
    color: var(--dark-bg);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero sekce */
.hero {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -250px;
    left: -250px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    top: 50%;
    right: -200px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    bottom: -150px;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-30px) translateX(30px); }
    50% { transform: translateY(-60px) translateX(-30px); }
    75% { transform: translateY(-30px) translateX(30px); }
}

/* Galerie postav */
.characters-gallery {
    padding: 100px 0;
    background: var(--dark-bg);
}

.characters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.character-card {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.character-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.character-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.character-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.character-card:hover .character-image img {
    transform: scale(1.1);
}

.character-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.character-card:hover .character-overlay {
    opacity: 1;
}

.character-info {
    padding: 20px;
}

.character-info h3 {
    font-size: 22px;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.character-age {
    color: var(--primary-color);
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}

.character-description {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.character-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 16px;
    font-size: 12px;
    color: var(--primary-light);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* Funkce sekce */
.features {
    padding: 100px 0;
    background: var(--darker-bg);
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 10;
    opacity: 1;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA sekce */
.cta-section {
    padding: 100px 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.cta-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

/* Fialová sekce */
.purple-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.1));
    position: relative;
    overflow: hidden;
}

.purple-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.purple-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.purple-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.purple-text p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.purple-features {
    list-style: none;
}

.purple-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 17px;
}

.purple-features i {
    color: var(--primary-color);
    font-size: 20px;
}

/* FAQ sekce */
.faq-section {
    padding: 100px 0;
    background: var(--darker-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-copyright,
.footer-company {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.footer-payment {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-payment img {
    height: 30px;
    opacity: 0.6;
}

/* Responzivní design */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-buttons {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .cta-content,
    .purple-content {
        grid-template-columns: 1fr;
    }

    .purple-content {
        grid-template-areas: 
            "text"
            "image";
    }

    .purple-text {
        grid-area: text;
    }

    .purple-image {
        grid-area: image;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .characters-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 969px) and (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .characters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-text h2,
    .purple-text h2 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        text-align: center;
    }
}

/* ====================================
   MEDIA SLIDERS (Rotace obrázků/videí)
   ==================================== */
.hero-media-slider,
.media-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 16px;
}

/* SKRÝT všechny položky defaultně */
.hero-media-slider .hero-media-item,
.media-slider .media-item {
    display: none !important;
}

/* ZOBRAZIT jen aktivní položku */
.hero-media-slider .hero-media-item.active,
.media-slider .media-item.active {
    display: block !important;
    width: 100%;
    height: 100%;
}

.hero-media-slider img,
.hero-media-slider video,
.media-slider img,
.media-slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* Větší obrázky v hero sekci */
.hero-image {
    min-height: 600px;
}

.hero-media-slider {
    max-width: 700px;
    width: 100%;
    min-height: 600px;
}

/* Větší obrázky v CTA a Purple sekcích */
.cta-image .media-slider,
.purple-image .media-slider {
    max-width: 650px;
    width: 100%;
    min-height: 550px;
}

/* ====================================
   REKLAMNÍ BANNER
   ==================================== */
.ad-banner-section {
    padding: 60px 0;
    background: var(--dark-bg);
}

.ad-banner-wrapper {
    max-width: 100%;
    overflow: hidden;
}

.ad-banner-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
}

/* Jednoduchý footer */
.footer-simple {
    text-align: center;
    padding: 30px 0;
}

.footer-simple p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
}

/* ====================================
   COOKIE LIŠTA
   ==================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-top: 2px solid var(--primary-color);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
}

.cookie-text strong {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.cookie-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* ====================================
   AGE VERIFICATION MODAL
   ==================================== */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.age-modal-content {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 550px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    animation: zoomIn 0.5s ease-out;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.age-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.age-icon i {
    font-size: 40px;
    color: white;
}

.age-modal-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-modal-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.age-modal-content p strong {
    color: var(--primary-color);
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.age-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* ====================================
   MOBILE RESPONSIVENESS - Nové prvky
   ==================================== */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-image {
        min-height: 400px;
    }
    
    .hero-media-slider {
        max-width: 100%;
    }
    
    .cta-image .media-slider,
    .purple-image .media-slider {
        max-width: 100%;
        min-height: 400px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
    
    .age-modal-content {
        padding: 40px 20px;
    }
    
    .age-buttons {
        gap: 10px;
    }
    
    .ad-banner-section {
        padding: 30px 0;
    }
}
/* ====================================
   KRITICKÁ OPRAVA MOBILU
   ==================================== */

/* Zabránit horizontálnímu scrollu */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

* {
    max-width: 100%;
}

/* OPRAVA MEDIA SLIDERŮ - absolutní pozice */
.hero-media-slider,
.media-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 16px;
}

.hero-media-slider .hero-media-item,
.media-slider .media-item {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.hero-media-slider .hero-media-item.active,
.media-slider .media-item.active {
    opacity: 1;
    pointer-events: auto;
}

/* HAMBURGER MENU - FORCE VISIBLE */
@media (max-width: 968px) {
    .hamburger {
        display: flex !important;
        z-index: 10001;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .nav-buttons {
        display: none !important;
    }
}

/* AGE MODAL - vyšší z-index */
.age-modal {
    z-index: 999999 !important;
}

.cookie-consent {
    z-index: 100000 !important;
}
/* ================================================
   KOMPLETNÍ MOBILNÍ OPRAVY
   ================================================ */

/* ZABRÁNIT HORIZONTÁLNÍMU SCROLLU */
html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 100%;
    padding: 0 15px;
}

/* MEDIA SLIDER - FINÁLNÍ VERZE */
.hero-media-slider .hero-media-item,
.media-slider .media-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: none;
    transition: opacity 0.5s ease;
}

.hero-media-slider .hero-media-item.active,
.media-slider .media-item.active {
    display: block;
    opacity: 1;
    position: relative;
}

/* MOBILNÍ RESPONSIVE */
@media (max-width: 768px) {
    /* Zabránit roztažení */
    * {
        max-width: 100vw;
    }
    
    img, video {
        max-width: 100%;
        height: auto;
    }
    
    /* Hero sekce */
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-image {
        min-height: 300px;
        max-height: 400px;
    }
    
    .hero-media-slider {
        max-width: 100%;
        height: 350px;
    }
    
    /* CTA a Purple sekce */
    .cta-content,
    .purple-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .cta-image .media-slider,
    .purple-image .media-slider {
        max-width: 100%;
        height: 350px;
        min-height: 350px;
    }
    
    /* Characters grid */
    .characters-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    /* Hamburger menu */
    .hamburger {
        display: flex !important;
        position: relative;
        z-index: 10001;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    /* Age modal */
    .age-modal {
        padding: 20px;
    }
    
    .age-modal-content {
        width: 95%;
        max-width: 95%;
        padding: 30px 20px;
    }
    
    .age-modal-content h2 {
        font-size: 24px;
    }
    
    /* Cookie consent */
    .cookie-consent {
        padding: 15px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-text {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
}