* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
html {
    scroll-behavior: smooth;
}
 
body {
    font-family: "Fredoka", sans-serif;
    background: #113559;
    color: white;
    overflow-x: hidden;
}
 
:root {
    --shop-card-width: 240px;
    --shop-gap: 20px;
    --shop-item-count: 13;
}
 
.navbar {
    width: 100%;
    min-height: 64px;
    background-color: #072743;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
 
.logo {
    display: none;
}
 
.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px;
}
 
.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: 0.3s ease;
}
 
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: white;
    border-radius: 10px;
    transition: width 0.35s ease;
}
 
.nav-links a:hover::after {
    width: 100%;
}
 
.active-nav {
    color: #02d4ff !important;
}

.hero-section {
    width: 100%;
    min-height: calc(100vh - 52px);
    background: linear-gradient(rgba(17, 53, 89, 0.90), rgba(17, 53, 89, 0.93)), url("images/bg-pattern.png");
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 70px;
    position: relative;
}
 
.tag {
    background: rgba(2, 145, 181, 0.5);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}
 
.hero-mascot {
    width: 280px;
    max-width: 100%;
    margin-bottom: 10px;
}
 
.hero-title {
    transform: translateY(-6px);
}
 
.hero-title h1 {
    font-size: clamp(44px, 6vw, 72px);
    line-height: 1.08;
    font-weight: 550;
    letter-spacing: -1px;
}
 
.hero-bottom-title {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    margin-top: -4px;
}
 
.hero-bottom-title img {
    width: clamp(190px, 26vw, 320px);
    max-width: 100%;
    transform: translateY(-2px);
}
 
.hero-section p {
    max-width: 620px;
    font-size: 19px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 18px;
    margin-bottom: 28px;
}
 
.hero-button {
    background: rgba(2, 145, 181, 0.5);
    color: white;
    border: none;
    border-radius: 28px;
    padding: 13px 42px;
    font-family: "Fredoka", sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.16);
    display: inline-block;
    text-decoration: none;
}
 
.hero-button:hover {
    transform: translateY(-3px);
    background: rgba(2, 145, 181, 1);
}

.path-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-bestsellr-section {
    width: 100%;
    min-height: 620px;
    background: #11395e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 90px 8%;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 50% 50px;
    border-bottom-right-radius: 50% 50px;
}
 
.about-text {
    max-width: 560px;
    border-left: 4px solid rgba(2, 145, 181, 0.7);
    padding-left: 28px;
    transform: translateX(-24px);
}
 
.about-text h2 {
    font-size: clamp(34px, 4vw, 54px);
    margin-bottom: 24px;
}
 
.about-text p {
    font-size: 22px;
    line-height: 1.65;
    color: #ffffff;
}
 
.about-bestsellr-section img {
    width: 370px;
    max-width: 100%;
    position: relative;
    z-index: 2;
}
.process-section {
    width: 100%;
    background: linear-gradient(rgba(17, 53, 89, 0.90), rgba(17, 53, 89, 0.93)), url("images/bg-pattern.png");
    text-align: center;
    padding: 105px 8% 125px;
}
 
.process-section h2 {
    font-size: clamp(34px, 4vw, 54px);
    margin-bottom: 58px;
    position: relative;
    display: inline-block;
}
 
.process-section h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 70%;
    height: 4px;
    background: #f0aa25;
    border-radius: 20px;
}
 
.process-cards {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
 
.card {
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    min-height: 360px;
    padding: 38px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.08);
}
 
.card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}
 
.card img {
    width: 78px;
    height: 78px;
    object-fit: contain;
    margin-bottom: 18px;
    transition: 0.3s ease;
}
 
.card:hover img {
    transform: scale(1.12) rotate(3deg);
}
 
.card h3 {
    font-size: 28px;
    line-height: 1.2;
    color: white;
    font-weight: 600;
    text-align: center;
    text-wrap: balance;
}
.requirements-section {
    width: 100%;
    background: #11395e;
    text-align: center;
    padding: 85px 8% 95px;
    border-top-left-radius: 50% 50px;
    border-top-right-radius: 50% 50px;
}
 
.requirements-section h2 {
    text-align: center;
    font-size: clamp(34px, 4vw, 54px);
    margin-bottom: 42px;
    text-decoration: underline;
    text-decoration-color: #f0aa25;
    text-underline-offset: 12px;
}
 
.requirements-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
 
.requirement-card {
    width: 100%;
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 38px 26px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.35s ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), inset 0 1px 1px rgba(255, 255, 255, 0.08);
}
 
.requirement-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}
 
.requirement-card h3 {
    font-size: clamp(24px, 2.5vw, 32px);
    color: #ffffff;
    margin-bottom: 22px;
    font-weight: 600;
}
 
.requirement-list {
    list-style: none;
    padding: 0;
    width: 100%;
}
 
.requirement-list li {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.6;
    color: #d7e6ee;
    margin-bottom: 18px;
    padding-left: 26px;
    position: relative;
}
 
.requirement-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 22px;
}
 
.requirement-list li:last-child {
    margin-bottom: 0;
}

.shop-section {
    width: 100%;
    background: linear-gradient(135deg, #113559 0%, #0d2540 100%);
    padding: 40px 8%;
}
 
.shop-header {
    text-align: center;
    margin-bottom: 18px;
}
 
.shop-section h2 {
    font-size: clamp(34px, 4vw, 54px);
    margin-bottom: 8px;
    color: white;
    font-weight: 700;
    position: relative;
    display: inline-block;
}
 
.shop-section h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: #f0aa25;
    border-radius: 20px;
}
 
.shop-minimal {
    max-width: 700px;
    margin: 14px auto 0;
}
 
.shop-minimal p {
    font-size: clamp(16px, 1.5vw, 19px);
    color: #d7e6ee;
    line-height: 1.8;
    font-weight: 400;
}
 
.highlight-bold {
    color: #02d4ff;
    font-weight: 700;
}
 
.shop-carousel {
    width: 100%;
    overflow: hidden;
    padding: 25px 0 15px 0;
    mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}
 
.shop-items-wrapper {
    display: block;
}
 
.shop-items {
    display: flex;
    gap: var(--shop-gap);
    animation: scrollRight 45s linear infinite;
    width: fit-content;
}
 
.shop-items:hover {
    animation-play-state: paused;
}
 
.shop-card {
    min-width: var(--shop-card-width);
    width: var(--shop-card-width);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1.5px solid rgba(2, 145, 181, 0.3);
    border-radius: 32px;
    padding: 26px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}
 
.shop-card:hover {
    transform: translateY(-16px) scale(1.04);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border-color: rgba(2, 145, 181, 0.4);
}
 
.shop-card-image {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, rgba(2, 145, 181, 0.15), rgba(2, 213, 255, 0.1));
    border-radius: 24px;
    margin-bottom: 12px;
    border: 2px solid rgba(2, 145, 181, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0291b5;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 20px rgba(2, 145, 181, 0.1);
}
 
.shop-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 22px;
}
 
.shop-card:hover .shop-card-image {
    background: linear-gradient(135deg, rgba(2, 145, 181, 0.18), rgba(2, 213, 255, 0.1));
    border-color: rgba(2, 145, 181, 0.5);
    transform: scale(1.05);
}
 
.shop-card h3 {
    font-size: 18px;
    color: white;
    margin-bottom: 4px;
    font-weight: 650;
    letter-spacing: -0.3px;
}
 
.shop-price {
    font-size: 15px;
    color: #02d4ff;
    font-weight: 700;
    margin-top: 2px;
}
 
@keyframes scrollRight {
    0% {
        transform: translateX(calc((var(--shop-card-width) + var(--shop-gap)) * var(--shop-item-count) * -1));
    }
    100% {
        transform: translateX(0);
    }
}

.faq-section {
    width: 100%;
    background: linear-gradient(rgba(17, 53, 89, 0.90), rgba(17, 53, 89, 0.93)), url("images/bg-pattern.png");
    padding: 85px 8% 95px;
}
 
.faq-section h2 {
    text-align: center;
    font-size: clamp(34px, 4vw, 54px);
    margin-bottom: 42px;
    text-decoration: underline;
    text-decoration-color: #f0aa25;
    text-underline-offset: 12px;
}
 
.faq {
    max-width: 950px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 18px auto;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
}
 
.faq:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-2px);
}
 
.faq-question {
    width: 100%;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
 
.faq h3 {
    font-size: clamp(16px, 1.7vw, 22px);
    color: white;
    font-weight: 600;
}
 
.faq-arrow {
    font-size: 26px;
    color: #f0aa25;
    transition: 0.3s ease;
    flex-shrink: 0;
}
 
.faq p {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.5;
    color: #d7e6ee;
    transition: 0.35s ease;
}
 
.faq.active p {
    max-height: 300px;
    padding: 0 26px 22px;
}
 
.faq.active .faq-arrow {
    transform: rotate(180deg);
}
 
footer {
    width: 100%;
    background: #072743;
    padding: 24px 8%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
 
.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}
 
.footer-links {
    margin-bottom: 8px;
    font-size: clamp(15px, 1.3vw, 18px);
}
 
.footer-links a {
    color: #0291b5;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}
 
.footer-links a:hover {
    color: #f0aa25;
}
 
.footer-divider {
    color: #d7e6ee;
    margin: 0 12px;
}
 
footer p {
    color: #d7e6ee;
    font-size: clamp(14px, 1.2vw, 16px);
    margin: 0;
}
 
footer p a {
    color: #0291b5;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}
 
footer p a:hover {
    color: #f0aa25;
}
 
@media (max-width: 950px) {
    .nav-links {
        gap: 28px;
        row-gap: 10px;
    }
 
    .about-bestsellr-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        border-bottom-left-radius: 30% 32px;
        border-bottom-right-radius: 30% 32px;
    }
 
    .about-text {
        transform: none;
    }
 
    .requirements-section {
        border-top-left-radius: 30% 32px;
        border-top-right-radius: 30% 32px;
    }
 
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
    }
 
    .requirements-container {
        grid-template-columns: 1fr;
    }
 
    .shop-carousel {
        padding: 20px 0 12px 0;
    }
 
    :root {
        --shop-card-width: 210px;
    }
 
    .shop-card {
        padding: 22px 12px;
    }
 
    .shop-card-image {
        width: 140px;
        height: 140px;
    }
 
    .shop-card h3 {
        font-size: 16px;
    }
 
    .shop-price {
        font-size: 14px;
    }
}
 
@media (max-width: 600px) {
    .navbar {
        min-height: 50px;
        padding: 10px 12px;
    }
 
    .nav-links {
        gap: 14px;
        row-gap: 8px;
    }
 
    .nav-links a {
        font-size: 12px;
        padding: 6px 2px;
        display: inline-block;
    }
 
    .hero-section {
        min-height: calc(100vh - 50px);
        padding: 50px 18px;
    }
 
    .hero-mascot {
        width: 120px;
    }
 
    .hero-title h1 {
        font-size: 34px;
    }
 
    .hero-bottom-title {
        gap: 8px;
    }
 
    .hero-bottom-title img {
        width: 150px;
    }
 
    .about-bestsellr-section,
    .process-section,
    .faq-section {
        padding-left: 6%;
        padding-right: 6%;
    }
 
    .about-bestsellr-section {
        border-bottom-left-radius: 32px;
        border-bottom-right-radius: 32px;
    }
 
    .about-bestsellr-section img {
        width: 70%;
        max-width: 260px;
    }
 
    .process-cards {
        grid-template-columns: 1fr;
    }
 
    .card {
        min-height: 190px;
    }
 
    .faq:hover {
        transform: none;
    }
 
    .requirements-section {
        padding-left: 6%;
        padding-right: 6%;
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
    }
 
    .requirement-list li {
        padding-left: 20px;
    }
 
    .requirement-card:hover {
        transform: none;
    }
 
    .shop-section {
        padding: 35px 6%;
    }
 
    .shop-carousel {
        padding: 18px 0 10px 0;
    }
 
    :root {
        --shop-card-width: 170px;
    }
 
    .shop-card {
        padding: 18px 10px;
        border-radius: 24px;
    }
 
    .shop-card:hover {
        transform: translateY(-12px) scale(1.03);
    }
 
    .shop-card h3 {
        font-size: 14px;
    }
 
    .shop-price {
        font-size: 12px;
    }
 
    .shop-card-image {
        width: 110px;
        height: 110px;
        border-radius: 18px;
        margin-bottom: 8px;
    }
 
    footer {
        padding: 20px 6%;
    }
 
    .footer-links {
        margin-bottom: 8px;
    }
    .path-buttons {
        flex-direction: column;
        width: 100%;
        gap: 14px;
    }

    .path-buttons .hero-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
 
@media (max-width: 420px) {
    .nav-links {
        gap: 10px;
    }
 
    .nav-links a {
        font-size: 11px;
    }
 
    .hero-mascot {
        width: 90px;
    }
 
    .hero-title h1 {
        font-size: 28px;
    }
 
    .hero-bottom-title img {
        width: 120px;
    }
 
    .hero-section p {
        font-size: 16px;
    }
 
    .hero-button {
        padding: 12px 32px;
        font-size: 16px;
    }
 
    :root {
        --shop-card-width: 150px;
    }
 
    .shop-card-image {
        width: 95px;
        height: 95px;
    }
}
 

a:focus-visible,
button:focus-visible {
    outline: 2px solid #f0aa25;
    outline-offset: 3px;
}
 
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
 
.shop-page-section {
    width: 100%;
    background: #113559;
    padding: 80px 8%;
}
 
.shop-page-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
 
.shop-page-intro h2 {
    font-size: clamp(34px, 4vw, 54px);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}
 
.shop-page-intro h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: #f0aa25;
    border-radius: 20px;
}
 
.shop-page-intro p {
    font-size: clamp(16px, 1.5vw, 19px);
    color: #d7e6ee;
    line-height: 1.8;
    margin-top: 32px;
}
 
.shop-grid-container {
    max-width: 1200px;
    margin: 0 auto;
}
 
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    justify-items: center;
}
 
.shop-grid-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1.5px solid rgba(2, 145, 181, 0.3);
    border-radius: 32px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}
 
.shop-grid-card:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-color: rgba(2, 145, 181, 0.5);
    box-shadow: 0 16px 40px rgba(2, 145, 181, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}
 
.shop-grid-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(2, 145, 181, 0.15), rgba(2, 213, 255, 0.1));
    border-radius: 24px;
    margin-bottom: 24px;
    border: 2px solid rgba(2, 145, 181, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: inset 0 0 20px rgba(2, 145, 181, 0.1);
    overflow: hidden;
}
 
.shop-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.shop-grid-card:hover .shop-grid-image {
    background: linear-gradient(135deg, rgba(2, 145, 181, 0.25), rgba(2, 213, 255, 0.15));
    border-color: rgba(2, 145, 181, 0.6);
    transform: scale(1.08);
}
 
.shop-grid-card h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 8px;
    font-weight: 650;
    letter-spacing: -0.3px;
}
 
.shop-grid-price {
    font-size: 18px;
    color: #02d4ff;
    font-weight: 700;
}
 
@media (max-width: 950px) {
    .shop-page-section {
        padding: 60px 8%;
    }
 
    .shop-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
    }
 
    .shop-grid-card {
        padding: 24px 18px;
    }
 
    .shop-grid-image {
        width: 160px;
        height: 160px;
        margin-bottom: 16px;
    }
 
    .shop-grid-card h3 {
        font-size: 18px;
    }
 
    .shop-grid-price {
        font-size: 16px;
    }
}
 
@media (max-width: 600px) {
    .shop-page-section {
        padding: 60px 6%;
    }
 
    .shop-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
 
    .shop-grid-card {
        padding: 20px 16px;
    }
 
    .shop-grid-image {
        width: 140px;
        height: 140px;
        margin-bottom: 12px;
    }
 
    .shop-grid-card h3 {
        font-size: 16px;
    }
 
    .shop-grid-price {
        font-size: 14px;
    }
}
 

.showcase-page-section {
    width: 100%;
    background: #113559;
    padding: 80px 8%;
}
 
.showcase-page-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
 
.showcase-page-intro h2 {
    font-size: clamp(34px, 4vw, 54px);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}
 
.showcase-page-intro h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: #f0aa25;
    border-radius: 20px;
}
 
.showcase-page-intro p {
    font-size: clamp(16px, 1.5vw, 19px);
    color: #d7e6ee;
    line-height: 1.8;
    margin-top: 32px;
}
 
.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}
 
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}
 
.showcase-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1.5px solid rgba(2, 145, 181, 0.3);
    border-radius: 32px;
    padding: 20px;
    align-items: center;
    transition: background 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}
 
.showcase-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border-color: rgba(2, 145, 181, 0.5);
}
 
.showcase-cover {
    width: 160px;
    height: 240px;
    border-radius: 24px;
    border: 2px solid rgba(2, 145, 181, 0.4);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(2, 145, 181, 0.15), rgba(2, 213, 255, 0.1));
    flex-shrink: 0;
    transition: border-color 0.3s ease;
}
 
.showcase-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
 
.showcase-card:hover .showcase-cover {
    border-color: rgba(2, 145, 181, 0.6);
}
 
.showcase-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
 
.showcase-info h3 {
    font-size: 20px;
    color: white;
    margin: 0;
    font-weight: 650;
    letter-spacing: -0.3px;
}
 
.showcase-info p {
    font-size: 15px;
    color: #d7e6ee;
    margin: 0;
    font-weight: 500;
}
 
.showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #02d4ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: gap 0.3s ease, color 0.3s ease;
    width: fit-content;
}
 
.showcase-link::after {
    content: "→";
}
 
.showcase-link:hover {
    gap: 12px;
    color: #f0aa25;
}
 
.page-showcase {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
 
.page-showcase .showcase-page-section {
    flex: 1;
}
 
.page-showcase footer {
    margin-top: auto;
}
 
@media (max-width: 950px) {
    .showcase-page-section {
        padding: 70px 8%;
    }
 
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
 
    .showcase-card {
        padding: 18px;
        gap: 16px;
        grid-template-columns: 140px 1fr;
    }
 
    .showcase-cover {
        width: 140px;
        height: 210px;
    }
 
    .showcase-info h3 {
        font-size: 18px;
    }
 
    .showcase-info p {
        font-size: 14px;
    }
 
    .showcase-link {
        font-size: 13px;
    }
}
 
@media (max-width: 600px) {
    .showcase-page-section {
        padding: 60px 6%;
    }
 
    .showcase-grid {
        gap: 20px;
    }
 
    .showcase-card {
        padding: 16px;
        gap: 14px;
        grid-template-columns: 120px 1fr;
    }
 
    .showcase-cover {
        width: 120px;
        height: 180px;
    }
 
    .showcase-info h3 {
        font-size: 16px;
    }
 
    .showcase-info p {
        font-size: 13px;
    }
 
    .showcase-link {
        font-size: 12px;
    }
}
 
@media (max-width: 420px) {
    .showcase-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
 
    .showcase-cover {
        width: 100%;
        max-width: 200px;
        height: 260px;
        margin: 0 auto;
    }
 
    .showcase-info {
        align-items: center;
    }
}