* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #f7f7f7;
    background: radial-gradient(circle at top left, #2a0b3f 0%, #05010c 55%, #04040c 100%);
    min-height: 100vh;
}

header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: rgba(1, 0, 18, 0.8);
    backdrop-filter: blur(12px);
}

#sidebarBtn {
    position: relative;
    z-index: 31;
    background: #ff4da6;
    border: none;
    color: #fff;
    font-size: 24px;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    cursor: pointer;
}

.logo h1 {
    margin: 0;
    font-size: 28px;
    letter-spacing: 1px;
}

.logo p {
    margin: 6px 0 0;
    color: #d6d6ff;
}

#sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 270px;
    padding: 24px;
    background: linear-gradient(180deg, rgba(18, 0, 35, 0.98), rgba(15, 4, 28, 0.98));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.35);
    color: #fff;
    z-index: 20;
}

#sidebar.open {
    transform: translateX(0);
}

.sidebar-header h2 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 22px;
}

#sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#sidebar nav a {
    text-decoration: none;
    color: #dcdcff;
    font-size: 16px;
    padding: 10px 14px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

#sidebar nav a:hover {
    background: rgba(255, 77, 166, 0.18);
}

main {
    padding: 28px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
    margin-top: 40px;
}

.hero-copy span {
    display: inline-block;
    margin-bottom: 18px;
    color: #ff8bdf;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
}

.hero-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.05;
}

.hero-copy p {
    max-width: 520px;
    line-height: 1.8;
    color: #d3d3ff;
}

.btn {
    display: inline-block;
    margin-top: 22px;
    padding: 14px 24px;
    background: #ff4da6;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 18px 30px rgba(255, 77, 166, 0.22);
}

.discord-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #d6d6ff;
}

.hero-image {
    display: grid;
    place-items: center;
}

.promo-card {
    width: 100%;
    min-height: 320px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.11);
    padding: 26px;
    backdrop-filter: blur(10px);
}

.promo-card h3 {
    margin: 0 0 16px;
    font-size: 24px;
}

.section {
    margin-top: 60px;
}

.section h2 {
    margin-bottom: 22px;
    font-size: 32px;
}

.search-bar {
    margin-bottom: 24px;
}

.search-bar input {
    width: 100%;
    max-width: 420px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    outline: none;
}

.search-bar input::placeholder {
    color: #c8c8ff;
}

.products .grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 18px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card.hidden {
    display: none;
}

.buy-action {
    margin-top: 30px;
    text-align: center;
}

.product-image {
    height: 180px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    margin-bottom: 18px;
}

.anime1 { background-image: url('1'); }
.anime2 { background-image: url('2'); }
.anime3 { background-image: url('3'); }
.anime4 { background-image: url('4'); }
.anime5 { background-image: url('5'); }
.anime6 { background-image: url('6'); }
.anime7 { background-image: url('7'); }
.anime8 { background-image: url('8'); }
.anime9 { background-image: radial-gradient(circle at top, #ff6f91 0%, #3d0b2b 100%); }
.anime10 { background-image: radial-gradient(circle at top, #74f2ce 0%, #0f2a35 100%); }

.product-card h3 {
    margin: 0 0 10px;
}

.product-card p {
    margin: 0 0 10px;
    color: #d6d6ff;
    line-height: 1.7;
}

.product-card span {
    color: #ffb5d4;
    font-weight: 600;
}

.no-results {
    color: #d6d6ff;
    padding: 16px 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.about p,
.contact p {
    max-width: 820px;
    color: #d5d5ff;
    line-height: 1.8;
}

footer {
    padding: 22px 24px;
    text-align: center;
    color: #bbb;
    border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 820px) {
    .hero {
        grid-template-columns: 1fr;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }
}
