@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&family=Cinzel:wght@400;700&family=Montserrat:wght@400;700&display=swap');

:root {
    --bg-dark: #050505;
    --panel-bg: #111111;
    --text-main: #e1e1e1;
    --gold: #ffd100;
    --dark-gold: #b8860b;
    --border-color: #4a3c28;
    --wow-blue: #1b263b;
    --wow-blue-hover: #2c3e50;
    --blood-red: #800000;
    --blood-hover: #a00000;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #000 url(assets/vorna.jpg) no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    padding: 20px;
    color: var(--text-main);
    font-size: 0.95em;
    line-height: 1.5;
}

.container {
    max-width: 1450px;
    margin: auto;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.header-panel {
    max-width: 1400px;
    margin: 0 auto 20px auto;
    background: rgba(10, 10, 10, 0.9);
    padding: 15px 20px;
    border: 3px solid var(--dark-gold);
    border-radius: 8px;
    box-shadow: 0 0 15px #000, inset 0 0 10px #000;
    position: relative;
    text-align: center;
}

.header-panel::before, .header-panel::after {
    content: "⚔️";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    opacity: 0.5;
}
@media (max-width: 768px) {
    .header-panel::before, .header-panel::after {
        display: none;
    }
}
.header-panel::before { left: 20px; }
.header-panel::after { right: 20px; }

.side-panel {
    flex: 0 0 250px;
    background: rgba(15, 15, 15, 0.95);
    padding: 20px;
    border: 2px solid var(--dark-gold);
    border-radius: 5px;
    box-shadow: 0 0 20px #000;
    position: relative;
}

.side-panel h3 {
    font-family: 'Cinzel', serif;
    border-bottom: 2px solid var(--gold);
    margin-top: 0;
    padding-bottom: 5px;
    font-size: 1.1em;
}

.main-content {
    flex: 1;
    min-width: 0;
    background: rgba(20, 20, 20, 0.9);
    padding: 30px;
    border: 3px solid var(--dark-gold);
    border-radius: 10px;
    box-shadow: 0 0 40px #000;
    position: relative;
    min-height: 600px;
}

.main-content::before, .main-content::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    opacity: 0.3;
}
.main-content::before { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.main-content::after { bottom: 10px; right: 10px; border-left: none; border-top: none; }

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    text-align: center;
    text-transform: none;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,1);
}

h1 { font-size: 2.5em; margin: 0; }

.game-header {
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--dark-gold);
}

.header-actions {
    position: absolute;
    top: 5px;
    right: 15px;
    display: flex;
    gap: 15px;
}

.header-actions a {
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: var(--gold);
    transition: all 0.3s;
    text-shadow: 1px 1px 2px #000;
}
.header-actions a:hover {
    filter: brightness(1.2);
    text-shadow: 0 0 5px currentColor;
}

.stats {
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border: 1px solid var(--dark-gold);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.stat-item {
    font-size: 0.9em;
    border-bottom: 1px solid rgba(255, 209, 0, 0.1);
    padding: 4px 0;
    color: #fff;
}
.stat-desc {
    color: #ffd100;
    margin-right: 5px;
}

nav {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--dark-gold);
    padding-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: bold;
    padding: 8px 15px;
    border: 2px solid var(--border-color);
    background: linear-gradient(to bottom, #2c3e50, #1b263b);
    border-radius: 4px;
    transition: all 0.2s;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 2px 4px rgba(0,0,0,0.8);
    text-transform: uppercase;
    font-size: 0.85em;
}
nav a:hover {
    background: linear-gradient(to bottom, #34495e, #2c3e50);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 0 10px rgba(255, 209, 0, 0.4);
}
nav a.active {
    background: linear-gradient(to bottom, #ffd100, #b8860b);
    color: #000;
    border-color: #fff;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.5);
}

.action-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(to bottom, #800000, #400000);
    color: #ffd100;
    text-decoration: none;
    border: 2px solid #b8860b;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0,0,0,0.5);
    transition: all 0.2s;
    text-shadow: 1px 1px 2px #000;
}
.action-btn:hover {
    background: linear-gradient(to bottom, #a00000, #600000);
    border-color: #fff;
    transform: scale(1.05);
}
.action-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.msg {
    padding: 12px 20px;
    background: linear-gradient(to right, rgba(255, 209, 0, 0.1), rgba(0, 0, 0, 0.8));
    color: #ffd100;
    border-left: 4px solid var(--gold);
    margin-bottom: 20px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.error {
    padding: 12px 20px;
    background: linear-gradient(to right, rgba(255, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
    color: #ff4d4d;
    border-left: 4px solid #ff0000;
    margin-bottom: 20px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.4);
    font-size: 0.9em;
}
table th {
    background: #1a1a1a;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    text-align: left;
    padding: 10px;
    border-bottom: 2px solid var(--dark-gold);
}
table td {
    padding: 8px 10px;
    border-bottom: 1px solid #1a1a1a;
}
table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.progress-container {
    width: 100%;
    background: #000;
    border: 2px solid var(--dark-gold);
    border-radius: 4px;
    height: 22px;
    margin: 10px 0;
    position: relative;
    box-shadow: inset 0 0 5px #000;
}
.progress-bar {
    height: 100%;
    background: linear-gradient(to bottom, #2ecc71, #27ae60);
    width: 0%;
    transition: width 0.5s ease-in-out;
}
.progress-text {
    position: absolute;
    width: 100%;
    text-align: center;
    line-height: 22px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85em;
}

.stat-progress {
    width: 100%;
    height: 8px;
    background: #000;
    border: 1px solid var(--dark-gold);
    border-radius: 2px;
    margin-top: 4px;
    margin-bottom: 8px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}
.stat-progress-fill {
    height: 100%;
    transition: width 0.5s;
    box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.4);
}

.panel-toggle {
    display: none;
}

input[type="text"], input[type="password"], input[type="number"], select, textarea {
    background: #000;
    border: 1px solid var(--dark-gold);
    border-radius: 3px;
    padding: 8px 12px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    outline: none;
}
input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 5px var(--gold);
}

.map-container {
    position: relative;
    width: 100%;
    border: 3px solid var(--dark-gold);
    border-radius: 8px;
    box-shadow: 0 0 20px #000;
    overflow: hidden;
}
.map-container:hover {
    filter: sepia(0.2) contrast(1.1) brightness(0.9);
}
.map-image {
    display: block;
    width: 100%;
    height: auto;
}
.map-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
}
.map-grid-overlay > a {
    border: 1px solid rgba(255, 209, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-family: 'Cinzel', serif;
    text-shadow: 2px 2px 4px #000;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    text-transform: uppercase;
    font-size: 1.2em;
}
.map-grid-overlay > a:hover {
    background: rgba(255, 209, 0, 0.3);
    color: #ffd100;
    border-color: #ffd100;
}
.travel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(3px);
    color: var(--gold);
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    pointer-events: all;
}

.travel-overlay h3 {
    font-size: 2.5em;
    margin-bottom: 0;
    text-shadow: 0 0 10px #000;
}

.travel-overlay .timer {
    font-size: 4em;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    margin: 10px 0;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 209, 0, 0.5);
}

.travel-overlay .destination {
    font-size: 1.2em;
    font-style: italic;
    opacity: 0.9;
}

.traveling-to {
    background: rgba(128, 0, 0, 0.4) !important;
    color: #fff !important;
    border: 2px solid var(--blood-red) !important;
    animation: pulse 1.5s infinite;
}
.visiting {
    text-decoration: underline !important;
    color: white !important;
    background: rgba(255, 255, 255, .3) !important;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.4; }
    100% { opacity: 1; }
}
.table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 20px;
    -webkit-overflow-scrolling: touch;
}

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

hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 15px 0;
}

/* Vybavenie a SVG figurína */
.mannequin-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}
.slots-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.equipment-slot {
    width: 80px;
    height: 80px;
    border: 2px solid var(--border-color);
    background: rgba(0,0,0,0.4);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7em;
    text-align: center;
    color: var(--dark-gold);
}
.equipment-slot img {
    max-width: 90%;
    max-height: 90%;
}
.equipment-slot.active {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
    color: var(--text-main);
    font-weight: bold;
}
.slot-label {
    position: absolute;
    bottom: -18px;
    width: 100%;
    text-align: center;
    font-size: 0.9em;
    color: var(--gold);
    font-family: 'MedievalSharp', cursive;
}
.mannequin-svg {
    width: 250px;
    height: 400px;
    fill: #1a1a1a;
    stroke: var(--dark-gold);
    stroke-width: 2;
}

/* Responzivita */
@media screen and (max-width: 992px) {
    .container {
        flex-direction: column;
    }
    .side-panel {
        flex: none;
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 20px;
    }
    .main-content {
        width: 100%;
        box-sizing: border-box;
        padding: 15px;
    }

    /* Responzívny layout od 992px */
    table {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .table-container {
        overflow-x: visible;
    }
    table, thead, tbody, th, td, tr {
        display: block;
    }
    table tr {
        border: 1px solid var(--border-color);
        margin-bottom: 15px;
        background: rgba(0, 0, 0, 0.5);
    }
    table th {
        display: none;
    }
    table td {
        border: none;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
        position: relative;
        padding-left: 42% !important;
        text-align: right;
        min-height: 28px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
    table td:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 38%;
        height: 100%;
        padding: 8px 10px;
        white-space: nowrap;
        content: attr(data-label);
        font-weight: bold;
        color: var(--gold);
        text-align: left;
        background: rgba(44, 30, 18, 0.5);
        display: flex;
        align-items: center;
        font-size: 0.9em;
    }
    table td:last-child {
        border-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .header-actions {
        position: static;
        justify-content: center;
        margin-top: 10px;
    }
    body {
        padding: 10px;
    }
    .header-panel {
        padding: 80px 10px 10px;
    }
    h1 {
        font-size: 1.8em;
    }
    nav a {
        padding: 5px 10px;
        font-size: 0.9em;
    }
}

/* Nové štýly pre login a registráciu */
.auth-container {
    max-width: 500px;
    margin: 40px auto;
    background: rgba(22, 22, 22, 0.95);
    border: 3px solid var(--border-color);
    box-shadow: 0 0 50px rgba(0,0,0,0.9);
    padding: 40px;
    position: relative;
    background-image: url('https://www.transparenttextures.com/patterns/parchment.png');
}

.auth-container h2 {
    margin-top: 0;
    font-size: 2em;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.auth-form-group {
    margin-bottom: 20px;
}

.auth-form-group label {
    display: block;
    font-family: 'MedievalSharp', cursive;
    color: var(--gold);
    margin-bottom: 5px;
}

.auth-form-group input, .auth-form-group select {
    width: 100%;
    box-sizing: border-box;
    background: rgba(0,0,0,0.5);
    font-size: 1.1em;
    padding: 10px;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-family: 'EB Garamond', serif;
}

.auth-links {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.race-description {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
    padding: 15px;
    margin-top: 15px;
    font-size: 0.9em;
    color: var(--text-main);
}

.race-bonus {
    color: var(--gold);
    font-weight: bold;
}

#panel-resize-btn {
    display: none;
}

@media screen and (max-width: 768px) {
    .container { padding-bottom: 250px; }
    .right-panel {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: rgba(22, 22, 22, 0.95);
        border-top: 3px solid #c5a059;
        padding: 10px;
        box-sizing: border-box;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.8);
        margin: 0 !important;
        transition: all 0.3s ease-in-out;
    }
    #panel-resize-btn {
        display: block;
        position: absolute;
        top: -28px;
        right: 10px;
        background: rgba(22, 22, 22, 0.95);
        color: var(--gold);
        border: 2px solid var(--gold);
        border-bottom: none;
        width: 35px;
        height: 28px;
        border-radius: 8px 8px 0 0;
        text-align: center;
        line-height: 26px;
        cursor: pointer;
        z-index: 9998;
    }
    .right-panel.shrunk {
        padding: 5px 10px;
    }
    .right-panel.shrunk .stat-item:not(.keep-mobile) {
        display: none !important;
    }
    .right-panel.shrunk .stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
    .right-panel.shrunk .stat-item.keep-mobile {
        font-size: 10px;
        padding: 2px 0;
        border-bottom: none;
    }
    .right-panel.shrunk .stat-item.keep-mobile strong {
        display: block;
        font-size: 9px;
    }
    .right-panel.shrunk .stat-progress {
        height: 3px;
        margin: 2px 0;
    }
    .right-panel.shrunk hr, .right-panel.shrunk h3, .right-panel.shrunk .mobile-hide {
        display: none !important;
    }
    .right-panel .stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px 15px;
    }
    .right-panel .stat-item {
        font-size: 11px;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
        padding: 4px 0;
        line-height: 1.3;
    }
    .right-panel .mobile-hide {
        display: none;
    }
    .right-panel .stat-progress {
        height: 4px;
        margin-top: 2px;
    }

    /* Plávajúci horný panel pre štatistiky */
    .left-panel {
        position: fixed;
        left: 10px;
        top: 0;
        width: auto;
        max-width: calc(100% - 20px);
        box-sizing: border-box;
        z-index: 10001;
        background: rgba(22, 22, 22, 0.98);
        border: 2px solid var(--gold);
        border-top: none;
        border-radius: 0 0 10px 10px;
        padding: 5px 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.8);
        transition: all 0.5s ease-in-out;
        max-height: 140px;
        overflow: hidden;
        margin: 0 !important;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }
    .left-panel.expanded {
        left: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        max-height: 500px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 20px;
    }
    .left-panel .panel-toggle {
        display: block;
        text-align: center;
        cursor: pointer;
        font-size: 1.2em;
        color: var(--gold);
        height: 30px;
        line-height: 30px;
    }
    .left-panel.expanded .panel-toggle {
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 5px;
    }
    .left-panel h3 {
        font-size: 0.9em;
        margin: 5px 0;
        white-space: normal;
        text-align: center;
    }
    .left-panel:not(.expanded) h3 {
        display: none;
    }
    .left-panel .stats {
        padding: 5px 0;
        background: none;
        box-shadow: none;
        border: none;
        gap: 5px;
        display: flex;
        flex-direction: column;
    }
    .left-panel:not(.expanded) .stats {
        flex-direction: row;
        gap: 10px;
        padding: 0;
    }
    .left-panel .stat-item {
        font-size: 0.9em;
        padding: 6px 0;
        text-align: left;
        border-bottom: 1px solid rgba(197, 160, 89, 0.1);
        white-space: normal;
    }
    .left-panel:not(.expanded) .stat-item {
        border-bottom: none;
        padding: 0;
        font-size: 1.2em;
    }
    .left-panel .stat-desc {
        display: inline;
    }
    .left-panel:not(.expanded) .stat-desc {
        display: none;
    }
    
    .left-panel:not(.expanded) .effects-full {
        display: none;
    }
    .left-panel.expanded .effects-mobile-collapsed {
        display: none;
    }
    .left-panel:not(.expanded) .effects-mobile-collapsed {
        display: block;
        font-size: 1.2em;
        color: #ffcc66;
    }
}

.effects-mobile-collapsed {
    display: none;
}

/* Obchod - Záložky */
.shop-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--dark-gold);
    padding-bottom: 15px;
}

.shop-tab {
    text-decoration: none;
    color: var(--text-main);
    font-weight: bold;
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    background: #1a1a1a;
    transition: all 0.3s;
    font-family: 'MedievalSharp', cursive;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    text-transform: uppercase;
    font-size: 0.9em;
}

.shop-tab:hover {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    text-decoration: none;
}

.shop-tab.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.5);
}

.shop-tab-content {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 600px) {
    .shop-tabs {
        gap: 5px;
    }
    .shop-tab {
        padding: 6px 8px;
        font-size: 0.8em;
        flex: 1 1 30%;
        text-align: center;
    }
}
/* Štýly pre lode */
.ships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.ship-card {
    background: rgba(197, 160, 89, 0.05);
    border: 1px solid var(--gold);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.ship-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
    background: rgba(197, 160, 89, 0.08);
}

.ship-card h3 {
    margin: 0 0 5px 0;
    text-align: left;
    color: var(--gold);
}

.ship-type-label {
    color: #a8a8a8;
    font-size: 0.85em;
    margin-bottom: 15px;
    display: block;
}

.ship-details {
    margin-bottom: 20px;
}

.ship-status-box {
    padding: 10px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 10px;
}

.ship-status-in-port {
    color: var(--gold);
    font-weight: bold;
}

.ship-status-sailing {
    color: #fff;
}

.ship-status-finished {
    color: #81c784;
    font-weight: bold;
}

.ship-stats-small {
    font-size: 0.9em;
    color: var(--text-main);
    opacity: 0.8;
    margin-top: 5px;
}

.shop-item {
    background: rgba(197, 160, 89, 0.1);
    border: 2px solid var(--gold);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
}

.shop-item:hover {
    transform: scale(1.02);
    background: rgba(197, 160, 89, 0.15);
}

.shop-item h3 {
    margin-top: 0;
    color: var(--gold);
}

.shop-item-price {
    color: var(--gold);
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0;
}

.shop-item-input {
    width: 100%;
    margin-bottom: 10px;
    box-sizing: border-box;
}

@media screen and (max-width: 600px) {
    .ships-grid {
        grid-template-columns: 1fr;
    }
}
