body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: white;
    color: black;
}

body.home {
    height: auto;
    min-height: 100vh;
    background: #e0e0e0;
    overflow-x: hidden;
}

.home-navbar {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.home-logo {
    height: 95px;
}

.icon {
    position: absolute;
    text-decoration: none;
    color: black;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon:hover {
    transform: scale(1.1);
}

.home-icon {
    left: 20px;
    width: 32px;
    height: 32px;
}

.home-icon svg {
    width: 100%;
    height: 100%;
    fill: black;
}

.user-icon {
    right: 20px;
}

.home-hero {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #e0e0e0;
}

.home-options {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    padding: 0;
    gap: 0;
    margin: 0;
}

.home-btn {
    flex: 1;
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
    padding: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    border: none;
}

.home-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    transition: all 0.3s ease;
    z-index: 1;
}

.home-btn:hover::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.home-btn span {
    position: relative;
    z-index: 2;
    text-align: center;
}

.home-btn-left {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('imagenes/CK2_home.jpg');
    border-right: 2px solid white;
}

.home-btn-right {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('imagenes/CK2_home.jpg');
}

.home-btn:hover {
    filter: brightness(1.1);
}

/* ===== SECCIÓN ¿QUIÉNES SOMOS? ===== */
.about-section {
    background: #D1FF00;
    padding: 50px 40px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.about-title-container {
    margin: 0 auto 30px;
}

.about-title {
    font-size: 32px;
    font-weight: bold;
    color: black;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.about-text {
    max-width: 1000px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.8;
    color: black;
    text-align: justify;
}

.about-text strong {
    font-weight: bold;
}

.brands-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-logo {
    height: 100px;
    object-fit: contain;
    filter: brightness(0);
    transition: transform 0.3s;
}

.brand-logo:hover {
    transform: scale(1.1);
}

/* ===== BARRA DE REDES SOCIALES ===== */
.social-bar {
    background: #000000;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.social-text {
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    color: #D1FF00;
}

.social-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    max-width: 750px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

.social-icon {
    width: 18px;
    height: 18px;
}

.whatsapp-btn {
    background: #25D366;
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok-btn {
    background: #000000;
}

.tiktok-btn:hover {
    background: #1a1a1a;
}

.facebook-btn {
    background: #1877F2;
}

.facebook-btn:hover {
    background: #145dbf;
}

/* ===== EN TIENDA / PREVENTAS ===== */
.store-header {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.store-home {
    position: absolute;
    left: 20px;
    text-decoration: none;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.store-home:hover {
    transform: scale(1.1);
}

.store-home svg {
    width: 100%;
    height: 100%;
    fill: black;
}

.store-logo {
    height: 95px;
}

.store-title {
    text-align: center;
    margin: 40px 20px 20px;
}

.store-title h1 {
    font-size: 36px;
    margin: 10px 0;
    color: #2c3e50;
}

.store-title p {
    color: #7f8c8d;
    font-size: 18px;
}

/* Filtros y Buscador - ARREGLADO */
.filtros-container {
    margin-top: 25px;
    padding: 0 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.controles-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.buscador-wrapper {
    flex: 1;
    max-width: 500px;
}

.buscador-input {
    width: 100%;
    padding: 10px 15px;
    font-size: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.buscador-input:focus {
    outline: none;
    border-color: #D1FF00;
}

.buscador-input::placeholder {
    color: #999;
}

.filtro-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.filtro-wrapper label {
    font-weight: bold;
    color: #2c3e50;
    font-size: 16px;
    white-space: nowrap;
}

.filtro-select {
    padding: 10px 15px;
    font-size: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s;
    min-width: 220px;
}

.filtro-select:focus {
    outline: none;
    border-color: #D1FF00;
}

.filtro-select:hover {
    border-color: #D1FF00;
}

/* Admin específico */
.admin .filtros-container {
    padding: 0;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-rows: minmax(400px, auto);
    gap: 30px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    border: 1px solid #ddd;
    padding: 0;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 3px solid #D1FF00;
}

.card-content {
    padding: 20px;
}

.card h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    color: #2c3e50;
}

.card p {
    margin: 8px 0;
    color: #555;
    font-size: 15px;
}

.card p strong {
    color: #2c3e50;
}

.btn-detalles {
    margin-top: 15px;
    padding: 10px 20px;
    background: #D1FF00;
    color: black;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-detalles:hover {
    background: #b8e000;
}

/* ===== MODAL DE DETALLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 20px;
}

.modal-container {
    background: white;
    border-radius: 15px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 35px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10;
    background: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    color: #e74c3c;
    background: #f8f8f8;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.modal-imagen {
    position: relative;
    overflow: hidden;
}

.modal-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
    position: relative;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(209, 255, 0, 0.9);
    color: black;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    z-index: 10;
    transition: background 0.3s;
    border-radius: 5px;
}

.carousel-btn:hover {
    background: rgba(209, 255, 0, 1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-indicator.active {
    background: #D1FF00;
    width: 12px;
    height: 12px;
}

.image-preview-item {
    position: relative;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview-item.main {
    border-color: #D1FF00;
    border-width: 3px;
}

.image-preview-item .remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-preview-item .main-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background: #D1FF00;
    color: black;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: bold;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-titulo {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
    line-height: 1.2;
}

.modal-version {
    font-size: 18px;
    color: #7f8c8d;
    margin: -10px 0 0 0;
}

.modal-precio {
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
    margin: 10px 0;
}

.modal-descripcion {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 5px 0 20px 0;
}

.modal-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    margin-bottom: 20px;
}

.modal-whatsapp-btn:hover {
    background: #20BA5A;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.modal-whatsapp-icon {
    width: 22px;
    height: 22px;
}

.modal-tabla {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.modal-tabla tr {
    border-bottom: 1px solid #eee;
}

.modal-tabla td {
    padding: 10px 8px;
    text-align: left;
}

.modal-tabla td:first-child {
    width: 140px;
    color: #2c3e50;
}

.modal-tabla td:last-child {
    color: #555;
}

/* ===== CONTADOR REGRESIVO ===== */
.contador-wrapper {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #D1FF00;
    margin-top: 10px;
}

.contador-wrapper.visible {
    display: flex;
}

.contador-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contador-input-group input {
    flex: 1;
    padding: 10px;
    font-size: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
}

.contador-display {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: #e74c3c;
    color: white;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
}

.contador-display.expirado {
    background: #95a5a6;
}

.contador-time {
    font-family: 'Courier New', monospace;
    font-size: 15px;
    letter-spacing: 1px;
}

.card .contador-badge {
    background: #e74c3c;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 13px;
    margin-top: 10px;
    display: inline-block;
}

.card .contador-badge.expirado {
    background: #95a5a6;
}

.card .precio-expirado {
    color: #e74c3c;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
}

/* ===== ADMIN ===== */
.admin-header {
    text-align: center;
    padding: 20px;
    position: relative;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.admin-logo {
    height: 95px;
}

.admin-header h2 {
    margin: 10px 0;
    color: #2c3e50;
}

.icon.home-icon {
    position: absolute;
    left: 20px;
    top: 20px;
    text-decoration: none;
    color: black;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon.home-icon svg {
    width: 100%;
    height: 100%;
    fill: black;
}

.admin {
    max-width: 600px;
    margin: 40px auto;
    padding: 0 20px;
}

.admin .filtros-container {
    padding: 0;
    justify-content: flex-end;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.admin-form input,
.admin-form textarea,
.admin-form select {
    padding: 12px;
    font-size: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s;
    font-family: Arial, sans-serif;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
    outline: none;
    border-color: #D1FF00;
}

.admin-form textarea {
    min-height: 100px;
    resize: vertical;
}

.admin-form button {
    padding: 14px;
    font-size: 16px;
    font-weight: bold;
    background: #D1FF00;
    color: black;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.admin-form button:hover {
    background: #b8e000;
}

.admin-form button:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.admin-list {
    margin-top: 40px;
    display: grid;
    gap: 15px;
}

.admin-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background: white;
}

.admin-item button {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.admin-item button:hover {
    opacity: 0.8;
}

/* ===== LOGIN ===== */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a4a4d 0%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.login-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.login-logo {
    height: 80px;
    margin-bottom: 20px;
}

.login-container h2 {
    margin: 10px 0;
    color: #2c3e50;
    font-size: 24px;
}

.login-subtitle {
    color: #7f8c8d;
    margin: 5px 0 25px;
    font-size: 14px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group {
    text-align: left;
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.login-form input:focus {
    outline: none;
    border-color: #D1FF00;
}

.login-error {
    color: #e74c3c;
    font-size: 14px;
    min-height: 20px;
    text-align: center;
}

.login-btn {
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    background: #D1FF00;
    color: black;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 5px;
}

.login-btn:hover {
    background: #b8e000;
}

.login-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.login-back {
    display: block;
    margin-top: 15px;
    color: #7f8c8d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.login-back:hover {
    color: #2c3e50;
}

.logout-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s;
}

.logout-btn:hover {
    background: #c0392b;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .store-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        grid-auto-rows: auto;
    }

    .home-hero {
        min-height: calc(100vh - 120px);
        padding: 0;
    }

    .home-options {
        flex-direction: column;
        height: 100%;
    }

    .home-btn {
        font-size: 32px;
        padding: 30px 20px;
        min-height: 50vh;
        border-right: none !important;
        border-bottom: 2px solid white;
    }

    .home-btn-right {
        border-bottom: none;
    }

    .modal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .modal-imagen {
        max-height: 300px;
    }

    .modal-titulo {
        font-size: 24px;
    }

    .modal-precio {
        font-size: 22px;
    }

    .modal-close {
        right: 10px;
        top: 10px;
        width: 35px;
        height: 35px;
        font-size: 28px;
    }

    /* FILTROS Y BUSCADOR RESPONSIVE - ARREGLADO */
    .filtros-container {
        padding: 0 20px;
    }

    .controles-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .buscador-wrapper {
        max-width: 100%;
        order: 1;
    }

    .filtro-wrapper {
        flex-direction: row;
        width: 100%;
        order: 2;
    }

    .filtro-wrapper label {
        flex-shrink: 0;
    }

    .filtro-select {
        flex: 1;
        min-width: unset;
    }

    .login-container {
        padding: 30px 20px;
    }

    .logout-btn {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 12px;
    }

    .social-bar {
        padding: 15px 20px;
    }

    .social-text {
        font-size: 13px;
        text-align: center;
    }

    .social-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 300px;
    }

    .social-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
    }

    .social-icon {
        width: 16px;
        height: 16px;
    }

    .about-section {
        padding: 40px 20px;
    }

    .about-title {
        font-size: 24px;
        margin: 0 0 20px 0;
    }

    .about-text {
        font-size: 16px;
        padding: 0 10px;
        text-align: left;
        margin: 0 auto 40px;
    }

    .brands-container {
        gap: 30px;
    }

    .brand-logo {
        height: 60px;
    }
}

/* Grid para pantallas grandes - 2 filas */
@media (min-width: 769px) and (max-width: 1200px) {
    .store-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1201px) {
    .store-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== MODAL DE IMAGEN COMPLETA ===== */
.full-image-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.full-image-modal.show {
    opacity: 1;
}

.full-image-content {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.full-image-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10001;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.full-image-close:hover {
    color: #D1FF00;
}

/* Indicador visual de que la imagen es clickeable */
.modal-imagen img,
.carousel-image {
    cursor: pointer;
    transition: opacity 0.3s;
}

.modal-imagen img:hover,
.carousel-image:hover {
    opacity: 0.85;
}

/* Responsive para imagen completa */
@media (max-width: 768px) {
    .full-image-close {
        top: 10px;
        right: 15px;
        font-size: 40px;
    }

    .full-image-content {
        max-width: 98%;
        max-height: 98%;
    }
}