@font-face {
    font-family: 'Super Kindly';
    src: url('fonts/super_kindly.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #0c1e35;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-width: 660px;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px 40px 40px;
    background-image: url(images/bottom.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    position: relative;
}

.bg-fish {
    position: absolute;
    z-index: -1;
    width: 120px;
}

h1 {
    text-align: center;
    font-size: 4em;
    margin-bottom: 20px;
    font-family: 'Super Kindly', sans-serif;
    font-weight: 100;
}

h2 {
    font-family: 'Super Kindly', sans-serif;
    font-weight: 100;
}

h3, h4 {
    font-family: 'Super Kindly', sans-serif;
    font-weight: 100;
}

h4 {
    padding-bottom: 5px;
    margin-top: 1.5em;
}

.description p {
    line-height: 1.6;
    font-size: 1.1em;
    margin-bottom: 1em;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.videos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.video-container {
    flex: 1 1 45%;
    min-width: 300px;
}

.video-container iframe {
    width: 100%;
    height: 315px;
    border: none;
    border-radius: 10px;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: #3a46d1;
}

footer p {
    margin: 0;
}

footer a {
    text-decoration: none;
    font-family: 'Super Kindly', sans-serif;
    font-weight: 100;
    font-size: 1.5em;
}

a {
    color: #ffffff;
}

h1 a, h2 a, h3 a, h4 a {
    text-decoration: none;
    color: inherit;
}

.feature-header {
    width: 100%;
    padding: 20px 0;
    background-color: #3a46d1;
}

.header-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon {
    width: 80px;
    height: 80px;
}

.feature-header h1 {
    margin: 0;
    text-align: left;
}

.feature-header .store-badge {
    height: 60px;
}

.weapon-list {
    list-style: none;
    padding: 0;
}

.weapon-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    height: 100%;
}

.weapon-item video {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    width: 200px;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.weapon-desc {
    flex: 1;
    font-size: 1.1em;
    line-height: 1.5;
}

.weapon-title {
    font-size: 1.2em;
    margin-bottom: 5px;
}

@media (min-width: 960px) {
    .weapon-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
