* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-soft: #020617;
    --accent-soft: #fde68a;
    --text-sub: #9ca3af;
}

html,
body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
    min-height: 100vh;
    color: #fff;
    background: url('/images/bg.jpg') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(
        rgba(0, 35, 70, 0.45),
        rgba(0, 90, 130, 0.45)
    );
    z-index: -1;
}

a {
    color: var(--accent-soft);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.header {
    width: 100%;
    min-height: 72px;
    padding: 18px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background: rgba(0, 40, 70, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
}

.logo a img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.logo a span {
    font-weight: 800;
    font-size: 22px;
    color: #fff;
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.nav a:hover {
    color: #ffe66d;
}

/* Hero */
.hero {
    min-height: 100vh;
    padding: 130px 7% 70px;
    display: flex;
    align-items: center;
}

.content-box {
    width: 100%;
    max-width: 720px;
    padding: 42px;
    border-radius: 28px;
    background: rgba(0, 45, 75, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 230, 109, 0.18);
    color: #ffe66d;
    font-weight: 700;
    margin-bottom: 18px;
}

h1 {
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 22px;
}

h1 span {
    color: #ffe66d;
}

.desc {
    font-size: 18px;
    line-height: 1.85;
    color: #f4fbff;
    margin-bottom: 28px;
}

.store-link {
    display: inline-block;
}

.store-link img {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Section */
.section {
    flex: 1;
    padding: 80px 7%;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.card {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #ffe66d;
}

.card p {
    font-size: 16px;
    line-height: 1.7;
    color: #f1fbff;
}

/* Fish Guide */
.section-title {
	margin-top:50px;
    text-align: center;
    margin-bottom: 34px;
}

.section-title span {
    color: #ffe66d;
    font-weight: 800;
}

.section-title h2 {
    font-size: 36px;
    margin: 8px 0 10px;
}

.section-title p {
    color: #e8faff;
    font-size: 17px;
}

.fish-table-wrap {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 24px;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.fish-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.fish-table th,
.fish-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.18);
}

.fish-table th {
    color: #ffe66d;
    font-size: 16px;
    background: rgba(0, 50, 80, 0.45);
}

.fish-table td {
    color: #f5fcff;
    font-size: 16px;
    line-height: 1.6;
}

.fish-table tr:last-child td {
    border-bottom: none;
}

.fish-table tbody tr:hover {
    background: rgba(255,255,255,0.08);
}

.fish-table td img {
    width: 120px;
    max-width: 100%;
    height: auto;
    border-radius: 10%;
    display: block;
    margin: 0 auto;
}

/* Footer */
footer {
    border-top: 1px solid #111827;
    background: var(--bg-soft);
    padding: 1.25rem 1.25rem 1.5rem;
    font-size: 0.85rem;
    color: var(--text-sub);
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-links a {
    font-weight: 500;
}

.copyright {
    color: #6b7280;
}

.copyright a {
    color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
    .header {
        min-height: 64px;
        padding: 12px 16px;
    }

    .logo a img {
        width: 36px;
        height: 36px;
    }

    .logo a span {
        font-size: 18px;
    }

    .nav {
        gap: 12px;
    }

    .nav a {
        font-size: 13px;
    }

    .hero {
        min-height: auto;
        padding: 96px 16px 36px;
        align-items: flex-start;
    }

    .content-box {
        padding: 24px 20px;
        border-radius: 22px;
    }
    .content-box img {
        width:100%;
    }

    .badge {
        font-size: 13px;
        padding: 7px 13px;
    }

    h1 {
        font-size: 28px;
        line-height: 1.35;
    }

    .desc {
        font-size: 15px;
        line-height: 1.75;
    }

    .store-link img {
        width: 165px;
    }

    .section {
        padding: 36px 16px;
    }

    .cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card {
        padding: 22px 20px;
    }

    .card h3 {
        font-size: 20px;
    }

    .card p {
        font-size: 15px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 15px;
    }

    .fish-table td img {
        width: 50px;
    }
	.fish-table td {
		color: #f5fcff;
		font-size: 12px;
		line-height: 1.6;
	}

    footer {
        padding: 20px 16px;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .logo a span {
        font-size: 16px;
    }

    .nav {
        gap: 9px;
    }

    .nav a {
        font-size: 12px;
    }

    h1 {
        font-size: 25px;
    }
}

.hero {
    position: relative;
    overflow: hidden;
}

.floating-fish {
    position: absolute;
    right: -5%;        /* È­¸é ¹Ù±ù¿¡¼­ µé¾î¿À´Â ´À³¦ */
    top: 20%;
    width: 320px;     /* ¹°°í±â Å©±âµµ »ìÂ¦ Å°¿ò */
    z-index: 2;
    animation: fishFloat 12s linear infinite;
    pointer-events: none;
}
.floating-fish img {
    width: 60%;
    animation: fishTilt 3s ease-in-out infinite;
}

@keyframes fishTilt {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

/* ÀÌµ¿ ¹üÀ§¸¦ Å©°Ô */
@keyframes fishFloat {
    0% {
        transform: translateX(0) translateY(0) scaleX(1);
    }
    25% {
        transform: translateX(-200px) translateY(-40px) scaleX(1);
    }
    50% {
        transform: translateX(-400px) translateY(30px) scaleX(1);
    }
    75% {
        transform: translateX(-200px) translateY(80px) scaleX(1);
    }
    100% {
        transform: translateX(0) translateY(0) scaleX(1);
    }
}
/* ¸ð¹ÙÀÏ¿¡¼­´Â ¼û±è */
@media (max-width: 768px) {
    .floating-fish {
        display: none;
    }
}