* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f23;
    color: #fff;
    min-height: 100vh;
}

::-webkit-scrollbar {
    width: 0.5rem;
}

::-webkit-scrollbar-track {
    background: #0f0f23;
}

::-webkit-scrollbar-thumb {
    background: #5865F2;
    border-radius: 0.25rem;
}

::-webkit-scrollbar-thumb:hover {
    background: #7289da;
}

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

header {
    text-align: center;
    padding: 3.75rem 1.25rem;
    position: relative;
    z-index: 1;
}

[class~="logo"] {
    width: 7.5rem;
    height: 7.5rem;
    object-fit: contain;
    filter: drop-shadow(0 0 1.25rem rgba(88, 101, 242, 0.5));
}

header h1 {
    font-size: 3rem;
    margin-bottom: 0.625rem;
    background: linear-gradient(90deg, #5865F2, #7289da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

header p {
    font-size: 1.2rem;
    color: #aaa;
}

main {
    max-width: 75rem;
    margin: 0 auto;
    padding: 2.5rem 1.25rem;
    position: relative;
    z-index: 1;
}

[class~="search-container"] {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

[class~="search-input"] {
    width: 100%;
    max-width: 25rem;
    padding: 0.75rem 1.25rem;
    border-radius: 1.5625rem;
    border: 0.0625rem solid rgba(88, 101, 242, 0.4);
    background: rgba(26, 26, 46, 0.6);
    color: #fff;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(0.625rem);
}

[class~="search-input"]:focus {
    border-color: #5865F2;
    box-shadow: 0 0 0.9375rem rgba(88, 101, 242, 0.4);
}

[class~="category-filters"] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9375rem;
    margin-bottom: 1.875rem;
}

[class~="category-btn"] {
    background: rgba(26, 26, 46, 0.6);
    border: 0.0625rem solid rgba(88, 101, 242, 0.3);
    color: #fff;
    padding: 0.625rem 1.25rem;
    border-radius: 1.25rem;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(0.5rem);
    font-family: 'Poppins', sans-serif;
}

[class~="category-btn"]:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: #5865F2;
}

[class~="category-"]btn[class~="active"] {
    background: #5865F2;
    border-color: #5865F2;
    box-shadow: 0 0 0.9375rem rgba(88, 101, 242, 0.4);
}

[class~="products-grid"] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
    gap: 1.875rem;
}

[class~="product-card"] {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.8) 0%, rgba(15, 15, 35, 0.8) 100%);
    border-radius: 1.25rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 0.0625rem solid rgba(88, 101, 242, 0.2);
    padding: 1.875rem 1.25rem;
    text-align: center;
    position: relative;
    backdrop-filter: blur(0.3125rem);
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

[class~="product-card"]:hover {
    transform: translateY(-0.625rem);
    box-shadow: 0 0.9375rem 2.1875rem rgba(88, 101, 242, 0.5);
    border-color: #5865F2;
}

[class~="product-card"]:hover [class~="product-image"] {
    transform: scale(1.1);
}

[class~="product-image"] {
    width: 6.25rem;
    height: 6.25rem;
    object-fit: contain;
    margin: 0 auto 1.25rem;
    display: block;
    transition: transform 0.3s ease;
}

[class~="product-info"] {
    padding: 0;
}

[class~="product-name"] {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    color: #fff;
    font-weight: 600;
}

[class~="product-footer"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

[class~="product-price"] {
    font-size: 1.2rem;
    color: #5865F2;
    font-weight: bold;
}

[class~="product-stock"] {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: normal;
}

[class~="product-"]stock[class~="low"] {
    color: #ff6b6b;
}

[class~="product-"]stock[class~="medium"] {
    color: #feca57;
}

[class~="product-"]stock[class~="high"] {
    color: #48dbfb;
}

[class~="product-badge"] {
    position: absolute;
    top: 0.9375rem;
    right: 0.9375rem;
    padding: 0.3125rem 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.0.3125rem;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.3);
}

[class~="badge-outofstock"] {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 0.0625rem solid #ff6b6b;
}

[class~="badge-hot"] {
    background: rgba(254, 202, 87, 0.2);
    color: #feca57;
    border: 0.0625rem solid #feca57;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[class~="modal"] {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(0.625rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

[class~="modal-content"] {
    background: rgba(26, 26, 46, 0.95);
    margin: 0.8% auto 1.8%;
    padding: 0;
    border-radius: 1.125rem;
    width: 97%;
    max-width: 56.25rem;
    position: relative;
    border: 0.0625rem solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 1.375rem 3.75rem rgba(0, 0, 0, 0.4), 0 0 1.125rem rgba(88, 101, 242, 0.18);
    max-height: calc(100vh - 2.25rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    backdrop-filter: blur(1.125rem);
}

[class~="modal-content"]:focus {
    outline: none;
}

[class~="modal-grid"] {
    display: grid;
    grid-template-columns: minmax(17.5rem, 1.3fr) minmax(11.875rem, 0.9fr);
    gap: 1.25rem;
    padding: 1.375rem;
    align-items: flex-start;
}

[class~="modal-image-nav"] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(88, 101, 242, 0.3);
    border: none;
    color: #fff;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s ease;
}

[class~="modal-prev"] {
    left: 0.5rem;
}

[class~="modal-next"] {
    right: 0.5rem;
}

[class~="modal-image-nav"]:hover {
    background: rgba(88, 101, 242, 0.6);
}

[class~="modal-visual"] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(180deg, rgba(22, 22, 44, 0.95), rgba(14, 14, 28, 0.95));
    border-radius: 1.125rem;
    overflow: hidden;
    padding: 0.625rem;
}

[class~="modal-badge"] {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 62.4375rem;
    background: rgba(88, 101, 242, 0.15);
    color: #b3c4ff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    backdrop-filter: blur(0.625rem);
}

[class~="modal-image"] {
    width: 100%;
    max-width: 100%;
    max-height: 18.75rem;
    object-fit: contain;
    border-radius: 1.125rem;
    cursor: zoom-in;
    transition: transform 0.2s ease, max-height 0.2s ease;
}

[class~="modal-preview-list"] {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
}

[class~="modal-preview-item"] {
    width: 4.125rem;
    height: 4.125rem;
    border-radius: 0.875rem;
    object-fit: cover;
    border: 0.125rem solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

[class~="modal-preview-item"]:hover {
    transform: scale(1.02);
}

[class~="modal-preview-"]item[class~="active"] {
    border-color: #5865F2;
}

[class~="modal-details"] {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.875rem;
    padding-top: 1.25rem;
}

[class~="modal-info"] h2 {
    font-size: 1.7rem;
    margin-bottom: 0.625rem;
    color: #fff;
    line-height: 1.1;
}

[class~="modal-category"] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-top: 0.625rem;
}

[class~="modal-category"] span {
    background: rgba(88, 101, 242, 0.14);
    color: #b3c4ff;
    padding: 0.4375rem 0.75rem;
    border-radius: 62.4375rem;
    font-size: 0.85rem;
}

[class~="modal-card"] {
    background: rgba(15, 15, 35, 0.92);
    border: 0.0625rem solid rgba(88, 101, 242, 0.18);
    border-radius: 1.125rem;
    padding: 1.125rem;
    display: grid;
    gap: 0.75rem;
}

[class~="modal-row"] {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    color: #a3b0ff;
    font-size: 0.95rem;
}

[class~="modal-row"] strong {
    color: #fff;
    font-size: 1rem;
}

[class~="modal-description"] {
    background: rgba(8, 10, 18, 0.95);
    border: 0.0625rem solid rgba(255, 255, 255, 0.08);
    border-radius: 1.125rem;
    padding: 1.125rem;
    color: #d8dffe;
    line-height: 1.7;
    font-size: 0.92rem;
    min-height: 6.25rem;
    margin-top: 1.125rem;
    width: 100%;
}

[class~="modal-description"] p {
    margin: 0 0 0.85rem;
}

[class~="modal-description"] p:last-child {
    margin-bottom: 0;
}

[class~="modal-description"] ul {
    margin: 0;
    padding-left: 1.1rem;
    list-style: disc;
}

[class~="modal-description"] li {
    margin-bottom: 0.75rem;
}

[class~="modal-description"] li:last-child {
    margin-bottom: 0;
}

[class~="close"] {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: color 0.2s ease;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    outline: none;
    padding: 0;
    line-height: 1;
}

[class~="close"]:hover {
    color: #fff;
}

[class~="discord-button"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background: #5865F2;
    color: #fff;
    padding: 0.875rem 1.25rem;
    text-decoration: none;
    border-radius: 0.875rem;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 1.125rem;
    width: 100%;
    max-width: 100%;
    border: 0.0625rem solid rgba(88, 101, 242, 0.25);
    box-shadow: 0 1rem 1.75rem rgba(88, 101, 242, 0.18);
    transition: all 0.2s ease;
}

[class~="discord-button"]:hover {
    background: #4b5de0;
    transform: translateY(-0.0625rem);
}

[class~="discord-button"] svg {
    width: 1.25rem;
    height: 1.25rem;
}

[class~="lightbox"] {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
}

.lightbox[class~="show"] {
    display: flex;
}

[class~="lightbox-backdrop"] {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

[class~="lightbox-content"] {
    position: relative;
    max-width: 78vw;
    max-height: 78vh;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 1;
}

[class~="lightbox-image"] {
    max-width: 78vw;
    max-height: 78vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 1.5rem;
    box-shadow: 0 1.875rem 5rem rgba(0, 0, 0, 0.7);
}

[class~="lightbox-close"],
[class~="lightbox-nav"] {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    width: 3.375rem;
    height: 3.375rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
}

[class~="lightbox-close"]:hover,
[class~="lightbox-nav"]:hover {
    background: rgba(255, 255, 255, 0.18);
}

[class~="lightbox-close"] {
    top: -2.75rem;
    right: -2.75rem;
}

[class~="lightbox-prev"],
[class~="lightbox-next"] {
    top: 50%;
    transform: translateY(-50%);
}

[class~="lightbox-prev"] {
    left: -4.375rem;
}

[class~="lightbox-next"] {
    right: -4.375rem;
}

@media (max-width: 48rem) {
    [class~="lightbox-content"] {
        max-width: 90vw;
        max-height: 90vh;
        gap: 0.875rem;
    }
    [class~="lightbox-image"] {
        max-width: 90vw;
        max-height: 90vh;
    }
    [class~="lightbox-prev"],
    [class~="lightbox-next"] {
        width: 3rem;
        height: 3rem;
    }
    [class~="lightbox-prev"] {
        left: 0.625rem;
    }
    [class~="lightbox-next"] {
        right: 0.625rem;
    }
}

@media (hover: none),
(pointer: coarse) {
    [class~="product-card"] {
        cursor: default;
    }
    [class~="product-card"]:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(88, 101, 242, 0.2);
    }
    [class~="category-btn"]:hover,
    [class~="discord-button"]:hover,
    [class~="close"]:hover {
        transform: none;
        background: inherit;
    }
}

[class~="sub-modal"] {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1002;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(0.75rem);
    padding: 1.25rem;
}

[class~="sub-modal-content"] {
    background: linear-gradient(145deg, rgba(22, 22, 44, 0.98), rgba(12, 12, 28, 0.98));
    border: 0.0625rem solid rgba(88, 101, 242, 0.25);
    border-radius: 1.5rem;
    padding: 2.25rem 2rem 2rem;
    width: 100%;
    max-width: 57.5rem;
    position: relative;
    box-shadow: 0 1.875rem 5rem rgba(0, 0, 0, 0.5), 0 0 1.875rem rgba(88, 101, 242, 0.15);
    animation: subModalIn 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes subModalIn {
    from {
        opacity: 0;
        transform: scale(0.88) translateY(1.875rem);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

[class~="sub-modal-header"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.75rem;
}

[class~="sub-modal-image"] {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    margin-bottom: 0.875rem;
    filter: drop-shadow(0 0 1rem rgba(88, 101, 242, 0.45));
}

[class~="sub-modal-header"] h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.375rem;
}

[class~="sub-modal-subtitle"] {
    color: rgba(180, 190, 255, 0.7);
    font-size: 0.92rem;
}

[class~="sub-modal-plans"] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

[class~="sub-plan-card"] {
    background: rgba(15, 15, 35, 0.85);
    border: 0.0625rem solid rgba(88, 101, 242, 0.22);
    border-radius: 1.125rem;
    padding: 1.375rem 1.125rem 1.125rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    overflow: hidden;
}

[class~="sub-plan-card"]:hover {
    transform: translateY(-0.3125rem);
    border-color: #5865F2;
    box-shadow: 0 0.75rem 2rem rgba(88, 101, 242, 0.35);
}

[class~="sub-plan-badge"] {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 62.4375rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

[class~="sub-plan-badge--gold"] {
    background: rgba(255, 200, 60, 0.18);
    color: #ffd050;
    border: 0.0625rem solid rgba(255, 200, 60, 0.45);
    box-shadow: 0 0 0.75rem rgba(255, 200, 60, 0.15);
}

[class~="sub-plan-badge--blue"] {
    background: rgba(88, 101, 242, 0.18);
    color: #a3b0ff;
    border: 0.0625rem solid rgba(88, 101, 242, 0.45);
    box-shadow: 0 0 0.75rem rgba(88, 101, 242, 0.15);
}

[class~="sub-plan-header"] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.375rem;
}

[class~="sub-plan-name"] {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

[class~="sub-plan-price"] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #5865F2;
}

[class~="sub-plan-stock"] {
    font-size: 0.85rem;
    font-weight: 500;
}

[class~="sub-plan-btn"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #5865F2;
    color: #fff;
    text-decoration: none;
    padding: 0.625rem 0.875rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.25rem;
    transition: background 0.2s ease, transform 0.2s ease;
    border: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

[class~="sub-plan-btn"]:hover {
    background: #4b5de0;
    transform: translateY(-0.0625rem);
}

@media (max-width: 31.25rem) {
    [class~="sub-modal-plans"] {
        grid-template-columns: 1fr;
    }
    [class~="sub-modal-content"] {
        padding: 1.75rem 1.125rem 1.375rem;
    }
}

@media (max-width: 48rem) {
    header {
        padding: 1.5rem 1rem;
    }
    [class~="logo"] {
        width: 5rem;
        height: 5rem;
    }
    header h1 {
        font-size: 2rem;
    }
    header p {
        font-size: 1rem;
    }
    main {
        padding: 1.25rem 0.75rem;
    }
    [class~="category-filters"] {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }
    [class~="category-btn"] {
        font-size: 0.85rem;
        padding: 0.5rem 0.875rem;
    }
    [class~="products-grid"] {
        grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
        gap: 1rem;
    }
    [class~="product-card"] {
        padding: 1.25rem 0.875rem;
    }
    [class~="product-image"] {
        width: 4.5rem;
        height: 4.5rem;
    }
    [class~="product-name"] {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    [class~="product-price"] {
        font-size: 1rem;
    }
    [class~="product-stock"] {
        font-size: 0.75rem;
    }
    [class~="modal"] {
        align-items: flex-end;
        display: none;
        padding: 0;
    }
    [class~="modal"][style*="block"] {
        display: flex !important;
        flex-direction: column;
        justify-content: flex-end;
    }
    [class~="modal-content"] {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 1.25rem 1.25rem 0 0;
        max-height: 92vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    [class~="modal-grid"] {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 0.875rem;
    }
    [class~="modal-visual"] {
        padding: 0.5rem;
    }
    [class~="modal-image"] {
        max-height: 14rem;
    }
    [class~="modal-details"] {
        padding-top: 0;
    }
    [class~="modal-info"] h2 {
        font-size: 1.3rem;
    }
    [class~="modal-description"] {
        min-height: auto;
        margin-top: 0.75rem;
    }
    [class~="close"] {
        top: 0.875rem;
        right: 0.875rem;
        font-size: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
        background: rgba(26, 26, 46, 0.8);
        border-radius: 50%;
        z-index: 10;
    }
    [class~="sub-modal"] {
        align-items: flex-end;
        padding: 0;
    }
    [class~="sub-modal-content"] {
        width: 100%;
        max-width: 100%;
        border-radius: 1.25rem 1.25rem 0 0;
        max-height: 92vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    [class~="sub-modal-plans"] {
        grid-template-columns: 1fr;
    }
    [class~="sub-modal-header"] h2 {
        font-size: 1.3rem;
    }
    [class~="sub-modal-image"] {
        width: 4rem;
        height: 4rem;
    }
    [class~="lightbox-close"] {
        top: 0.75rem;
        right: 0.75rem;
    }
    [class~="lightbox-prev"] {
        left: 0.5rem;
    }
    [class~="lightbox-next"] {
        right: 0.5rem;
    }
    [class~="lightbox-content"] {
        max-width: 100vw;
        max-height: 100vh;
        gap: 0;
    }
    [class~="lightbox-image"] {
        max-width: 95vw;
        max-height: 80vh;
    }
    [class~="discord-button"] {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    [class~="modal-row"] {
        font-size: 0.875rem;
    }
}

@media (max-width: 48rem) {
    .nav-container {
        gap: 0.5rem;
        padding: 0 0.75rem;
    }
    .nav-btn {
        font-size: 0.95rem;
        padding: 0.4rem 0.6rem;
    }
    .section-header h1 {
        font-size: 1.8rem;
    }
    .proofs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .update-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .update-card {
        padding: 1.5rem;
    }
}

@media (max-width: 26rem) {
    [class~="products-grid"] {
        grid-template-columns: repeat(2, 1fr);
    }
    [class~="search-input"] {
        font-size: 0.9rem;
    }
    .nav-btn {
        font-size: 0.85rem;
    }
}

.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(88, 101, 242, 0.2);
    padding: 1rem 0;
}

.nav-container {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 1.25rem;
}

.nav-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    position: relative;
}

.nav-btn:hover {
    color: #fff;
    background: rgba(88, 101, 242, 0.1);
}

.nav-btn.active {
    color: #5865F2;
    background: rgba(88, 101, 242, 0.15);
}

.nav-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: #5865F2;
    border-radius: 2px;
}

.hidden-section {
    display: none;
}

.active-section {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    text-align: center;
    padding: 4rem 1.25rem 2rem;
}

.section-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(90deg, #5865F2, #7289da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #aaa;
    font-size: 1.1rem;
}

.proofs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1.25rem 4rem;
}

.proof-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 1.25rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-5px);
    border-color: #5865F2;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.2);
}

.proof-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: #0a0a0a;
    cursor: pointer;
}

.proof-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.proof-card:hover .proof-image {
    transform: scale(1.05);
}

.proof-info {
    padding: 1.5rem;
}

.proof-user {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.proof-product {
    color: #5865F2;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.proof-date {
    color: #666;
    font-size: 0.85rem;
}

.updates-list {
    max-width: 50rem;
    margin: 0 auto;
    padding: 0 1.25rem 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.update-card {
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(88, 101, 242, 0.2);
    border-radius: 1.25rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.update-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.update-version {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5865F2;
}

.update-date {
    color: #aaa;
    font-size: 0.9rem;
}

.update-changes {
    list-style: none;
    padding: 0;
}

.update-changes li {
    color: #ddd;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.update-changes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #5865F2;
}