/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Orange */
    --primary-100: #D17F00;
    --primary-200: #FF9A00;
    --primary-300: #FFAC2E;
    --primary-400: #FFBD58;

    /* Secondary Yellow */
    --secondary-100: #D1A200;
    --secondary-200: #FFC600;
    --secondary-300: #FFD02E;
    --secondary-400: #FFDA58;

    /* Secondary Purple */
    --purple-100: #170B91;
    --purple-200: #1D0EB2;
    --purple-300: #2C1BD0;
    --purple-400: #4A3DD0;
    --purple-500: #675CD4;

    /* Complement Blue */
    --blue-100: #064488;
    --blue-200: #0853A8;
    --blue-300: #0F67C9;
    --blue-400: #3179CA;
    --blue-500: #518CCE;

    /* Grayscale */
    --gray-900: #0f0f0f;
    --gray-800: #1a1a1a;
    --gray-700: #2a2a2a;
    --gray-600: #3a3a3a;
    --gray-500: #5a5a5a;
    --gray-400: #8a8a8a;
    --gray-300: #b0b0b0;
    --gray-200: #d0d0d0;
    --gray-100: #e8e8e8;
    --white: #ffffff;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --plugin-bg-image: url('assets/plugins/code.jpg');
    --features-bg-image: url('assets/plugins/code.jpg');
}

/* ===== BASE STYLES ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--gray-900);
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-200), var(--primary-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    text-align: center;
    color: var(--gray-300);
    margin-bottom: var(--spacing-lg);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-200), var(--primary-100));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 154, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 154, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-200);
    border: 2px solid var(--primary-200);
}

.btn-secondary:hover {
    background: var(--primary-200);
    color: var(--gray-900);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== STORE BADGES ===== */
.store-badge-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.store-badge-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.store-badge-btn img {
    height: 70px;
    width: auto;
    border-radius: var(--radius-sm);
}

.store-badge-btn-large img {
    height: 64px;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Plugins page: smaller store/github badges */
.plugins-page .store-badge-btn img,
.plugins-page .store-badge-btn-large img {
    height: 50px;
}

/* Plugins page: spacing above CTA buttons (replaces inline margin-top) */
.plugins-page .plugins-section .cta-buttons {
    margin-top: 2rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-800);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: var(--spacing-md);
}

.nav a {
    color: var(--gray-200);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-200);
    transition: width var(--transition-normal);
}

.nav a:hover {
    color: var(--primary-200);
}

.nav a:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-800) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 154, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--white), var(--gray-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--gray-300);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-lg);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-200);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform var(--transition-slow);
}

.hero-image:hover {
    transform: scale(1.02);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-900);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: var(--gray-800);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-700);
    transition: all var(--transition-normal);

    padding-top: 9rem;
    background-size: 100% auto;
    background-image:
            linear-gradient(to bottom, rgba(0,0,0,0), var(--gray-800) 12rem),
            var(--features-bg-image);
    background-position: top;
    background-repeat: no-repeat;
}

.feature-card:hover, .plugins-section:hover {
    transform: translateY(-8px);
    border-color: var(--primary-200);
    box-shadow: 0 12px 40px rgba(255, 154, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: none;
}

.feature-card h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.feature-card a {
    color: var(--purple-500);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: var(--spacing-xs) 0;
    color: var(--gray-300);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-200);
    font-weight: bold;
}

/* ===== GALLERY/CAROUSEL ===== */
.gallery {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-800) 100%);
}

.gallery-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.carousel-track {
    display: flex;
    position: relative;
}

.carousel-slide {
    min-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(0);
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.carousel-slide.slide-out-left {
    transform: translateX(-30px);
    opacity: 0;
}

.carousel-slide.slide-out-right {
    transform: translateX(30px);
    opacity: 0;
}

.carousel-slide.slide-in-left {
    transform: translateX(-30px);
}

.carousel-slide.slide-in-right {
    transform: translateX(30px);
}

.carousel-slide img, .carousel-slide video {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.85) 50%, transparent 100%);
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    backdrop-filter: blur(8px);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-bottom-left-radius: var(--radius-xl);
    border-bottom-right-radius: var(--radius-xl);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 154, 0, 0.3);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.carousel-btn::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--primary-200);
    border-right: 2px solid var(--primary-200);
    transition: border-color 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 154, 0, 0.15);
    border-color: var(--primary-200);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(255, 154, 0, 0.3);
}

.carousel-btn:hover::before {
    border-color: var(--primary-300);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: -22px;
}

.carousel-prev::before {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.carousel-next {
    right: -22px;
}

.carousel-next::before {
    transform: rotate(45deg);
    margin-right: 3px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-600);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-dot.active {
    background: var(--primary-200);
    transform: scale(1.3);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-900);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.testimonial-card {
    background: var(--gray-800);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-700);
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-300);
    box-shadow: 0 10px 30px rgba(255, 154, 0, 0.15);
}

.testimonial-rating {
    color: var(--secondary-200);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-200);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    color: var(--primary-200);
    font-weight: 600;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--purple-300), var(--blue-300));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.cta-content p {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    margin-bottom: var(--spacing-lg);
    color: var(--gray-100);
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-800);
}

.faq a {
    color: var(--purple-500);
    text-decoration: underline;
}

.faq ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: var(--spacing-sm);
    margin-left: 3rem;
}

.faq p+ul {
    margin-top: -1rem;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    background: var(--gray-900);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-700);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--primary-200);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md);
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-200);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-200);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    color: var(--gray-300);
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md) var(--spacing-md);
    line-height: 1.7;
}

/* ===== COMMUNITY SECTION ===== */
.community {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-900);
}

.community-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.community-card {
    background: var(--gray-800);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-700);
    text-align: center;
    transition: all var(--transition-normal);
    cursor: pointer;
}

.community-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-200);
    box-shadow: 0 12px 40px rgba(255, 154, 0, 0.2);
}

.community-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.community-logo {
    max-height: 50px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    background: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

.community-logo-playstore {
    background: none;
    padding: 0;
    max-height: none;
    max-width: none;
    height: 50px;
    width: auto;
    border-radius: 0;
}

.community-logo-circle {
    object-fit: cover;
    object-position: center;
    width: 50px;
    height: 50px;
    max-height: none;
    max-width: none;
    padding: 0;
    border-radius: 50%;
}

.community-logo-github {
    background: none;
    padding: 0;
    width: 50px;
    height: 50px;
    max-height: none;
    max-width: none;
    border-radius: 50%;
    filter: invert(1);
}

.community-logo-xda {
    object-fit: contain;
    background: none;
    width: 70px;
    height: 50px;
    max-height: none;
    max-width: none;
    padding: 0;
}

.community-card h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.community-card p {
    color: var(--gray-300);
}

/* ===== PRIVACY POLICY SECTION ===== */
.privacy-policy, .plugins {
    padding: var(--spacing-2xl) 0;
    background: var(--gray-800);
}

.privacy-policy.privacy-page, .plugins.plugins-page {
    padding-top: calc(80px + var(--spacing-2xl));
    min-height: calc(100vh - 200px);
}

.privacy-content, .plugins-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-intro, .plugins-intro {
    color: var(--gray-200);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
}
.plugins-group h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-md);
    color: var(--secondary-200);
}

.plugins-group > p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.privacy-section, .plugins-section {
    margin-bottom: var(--spacing-lg);
    background: var(--gray-900);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-700);
    transition: all var(--transition-normal);
}

.plugins-section {
    padding-left: 10rem;
    background-size: auto 100%;
    background-image:
            linear-gradient(to right, rgba(0,0,0,0.3), var(--gray-900) 14rem),
            var(--plugin-bg-image);
    background-position: left;
    background-repeat: no-repeat;
}


.privacy-section h3, .plugins-section h3 {
    color: var(--primary-200);
    font-size: 1.375rem;
    margin-bottom: var(--spacing-md);
}

.privacy-section h3 em, .plugins-section h3 em {
    background: var(--purple-500);
    color: var(--gray-900);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-left: var(--spacing-sm);
}

.privacy-section p, .plugins-section p {
    color: var(--gray-300);
    line-height: 1.8;
}

.privacy-section .cta-buttons, .plugins-section .cta-buttons {
    justify-content: flex-end;
}


.privacy-intro a, .plugins-intro a {
    color: var(--purple-500);
}

.privacy-section p a, .plugins-section p a {
    color: var(--purple-500);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    border-top: 1px solid var(--gray-800);
    padding: var(--spacing-xl) 0 var(--spacing-md) 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    color: var(--gray-400);
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.footer-column a {
    display: block;
    color: var(--gray-400);
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--primary-200);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--spacing-md);
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-note {
    margin-top: var(--spacing-sm);
    font-size: 0.75rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .nav {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .store-badge-btn,
    .github-badge-btn {
        width: 100%;
        max-width: 280px;
    }

    .features-grid,
    .testimonials-grid,
    .community-links {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: var(--spacing-md);
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        background: rgba(15, 15, 15, 0.75);
    }

    .carousel-btn::before {
        width: 8px;
        height: 8px;
        border-width: 2px;
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }

    .carousel-caption {
        padding: 1rem 1rem 0.75rem 1rem;
        font-size: 0.875rem;
        background: linear-gradient(to top, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.75) 60%, transparent 100%);
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 1rem;
        --spacing-lg: 2rem;
        --spacing-xl: 2.5rem;
        --spacing-2xl: 3rem;
    }

    .hero {
        padding: calc(80px + var(--spacing-md)) 0 var(--spacing-lg) 0;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .carousel-caption {
        padding: 0.75rem 0.875rem 0.5rem 0.875rem;
        font-size: 0.813rem;
        font-weight: 500;
    }
}
