* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #6366f1;
    --secondary: #8b5cf6;
    --accent: #a78bfa;
    --dark: #000000;
    --darker: #000000;
    --light: #ffffff;
    --gray: #9ca3af;
    --gray-dark: #4b5563;
    --gray-darker: #1f2937;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    background-attachment: fixed;
    color: var(--light);
    overflow-x: hidden;
    overflow-y: scroll;
    cursor: crosshair;
}
* {
    cursor: crosshair;
}
a, button, .btn-primary, .btn-secondary, .price-card, .stat-card, .video-link, .nav-links a {
    cursor: pointer;
}
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(100, 100, 100, 0.2);
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #ffffff, #a0a0a0, #ffffff, #a0a0a0);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoShimmer 3s linear infinite;
}
@keyframes logoShimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}
.logo span {
    background: linear-gradient(90deg, #909090, #606060, #909090, #606060);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: logoShimmer 3s linear infinite;
}
.logo-hero {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff, #a0a0a0, #ffffff, #a0a0a0);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    margin-bottom: 1rem;
}
.logo-hero span {
    background: linear-gradient(90deg, #909090, #606060, #909090, #606060);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}
.nav-links a:hover {
    color: #ffffff;
}
.btn-primary, .btn-secondary {
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    position: relative;
}
.btn-primary {
    background: linear-gradient(135deg, #505050, #808080, #505050);
    background-size: 200% auto;
    color: white;
    animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
    filter: brightness(1.2);
}
.btn-secondary {
    background: transparent;
    border: 2px solid #808080;
    color: #c0c0c0;
}
.btn-secondary:hover {
    background: linear-gradient(135deg, #505050, #707070);
    color: white;
    transform: translateY(-3px);
    border-color: #a0a0a0;
}
.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 5%;
    position: relative;
}
.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #ffffff 0%, #a0a0a0 25%, #ffffff 50%, #a0a0a0 75%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    font-weight: 900;
    text-transform: uppercase;
    animation: shimmer 3s linear infinite;
}
@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}
.subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    font-weight: 400;
}
.glitch {
    position: relative;
}
@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
}
.subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    font-weight: 400;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}
.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.stat-card {
    padding: 2rem;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(20, 20, 20, 0.9));
    border: 1px solid rgba(100, 100, 100, 0.3);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    min-width: 200px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #909090;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}
.stat-card:hover::before {
    left: 100%;
}
.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(150, 150, 150, 0.5);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}
.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, #808080, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: shimmer 3s linear infinite;
}
.stat-label {
    color: #a0a0a0;
    font-size: 0.95rem;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff, #909090);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}
.features {
    padding: 5rem 5%;
}
.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}
.video-link {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(100, 100, 100, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}
.video-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(255, 255, 255, 0.15);
    border-color: rgba(150, 150, 150, 0.5);
}
.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}
.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.3s ease;
    font-size: 5rem;
    color: rgba(150, 150, 150, 0.9);
}

.play-button svg circle {
    fill: rgba(100, 100, 100, 0.9);
}

.video-link:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    color: rgba(200, 200, 200, 0.9);
}

.video-link:hover .play-button svg circle {
    fill: rgba(150, 150, 150, 0.9);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 2rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-link:hover .video-overlay {
    opacity: 1;
}

.pricing {
    padding: 5rem 5%;
    background: rgba(0, 0, 0, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(35, 35, 35, 0.95), rgba(15, 15, 15, 0.95));
    border: 1.5px solid rgba(100, 100, 100, 0.3);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.price-icon {
    font-size: 3rem;
    color: #909090;
    margin-bottom: 1rem;
}

.price-card:hover {
    transform: translateY(-12px);
    border-color: rgba(150, 150, 150, 0.6);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.15);
}

.price-card:hover .price-icon {
    color: #c0c0c0;
}

.price-card.featured {
    border-color: #909090;
    border-width: 2px;
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(255, 255, 255, 0.2);
}

.price-card.featured:hover {
    transform: translateY(-12px) scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #606060, #909090, #606060);
    background-size: 200% auto;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    animation: gradientShift 3s ease infinite;
}

.price-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff, #909090, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    animation: shimmer 3s linear infinite;
}

.hwid-addon {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 0.25rem;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(110deg, rgba(32, 32, 32, 0.96), rgba(15, 15, 15, 0.96));
    border: 1px solid rgba(130, 130, 130, 0.32);
    border-radius: 18px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hwid-addon:hover {
    transform: translateY(-3px);
    border-color: rgba(175, 175, 175, 0.55);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.hwid-addon-info,
.hwid-addon-action {
    display: flex;
    align-items: center;
}

.hwid-addon-info {
    gap: 1.1rem;
    text-align: left;
}

.hwid-addon-icon {
    display: grid;
    place-items: center;
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(145, 145, 145, 0.35);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.045);
    color: #bdbdbd;
    font-size: 1.45rem;
}

.hwid-addon-label {
    display: block;
    margin-bottom: 0.25rem;
    color: #858585;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hwid-addon h3 {
    margin: 0 0 0.2rem;
    color: #f1f1f1;
    font-size: 1.35rem;
}

.hwid-addon p {
    margin: 0;
    color: #999;
    font-size: 0.9rem;
}

.hwid-addon-action {
    flex: 0 0 auto;
    gap: 1.25rem;
}

.hwid-addon-price {
    color: #f2f2f2;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.developers {
    margin: 1.5rem 0;
}

.developers p {
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.dev-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.dev-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.dev-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
}

.footer {
    padding: 2.25rem 5%;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.99), rgba(7, 7, 7, 0.99));
    border-top: 1px solid rgba(120, 120, 120, 0.18);
    color: #9a9a9a;
    font-family: inherit;
}

.contact-section {
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(30, 30, 30, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(100, 100, 100, 0.2);
}

.contact-section h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #909090);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(145deg, rgba(40, 40, 40, 0.8), rgba(20, 20, 20, 0.9));
    border: 1px solid rgba(100, 100, 100, 0.3);
    border-radius: 12px;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-item i {
    font-size: 1.5rem;
    color: #909090;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(150, 150, 150, 0.6);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.contact-item:hover i {
    color: #c0c0c0;
}

.disclaimer {
    margin: 0;
    font-size: 0.86rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .nav-links {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .section-title {
        font-size: 2rem;
    }
}


.footer-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 3rem;
    max-width: 1120px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem 1.4rem;
    text-align: left;
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-left > p:first-child {
    flex-basis: 100%;
    color: #d0d0d0;
    font-size: 0.96rem;
    font-weight: 600;
}

.footer-left .developers,
.footer-left .developers p,
.footer-left .terms-link {
    margin: 0;
}

.footer-right {
    min-width: 150px;
    padding: 0.9rem 1.1rem 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(130, 130, 130, 0.2);
    border-radius: 14px;
}

.contact-title {
    margin: 0 0 0.7rem;
    color: #c8c8c8;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.contact-links-small {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-links-small a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(100, 100, 100, 0.3);
    border-radius: 8px;
    color: #909090;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.contact-links-small a:hover {
    transform: translateY(-3px);
    border-color: rgba(150, 150, 150, 0.6);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.contact-links-small img {
    display: block;
    transition: transform 0.25s ease;
}

.contact-links-small a:hover img {
    transform: scale(1.08);
}


.terms-section {
    min-height: 100vh;
    padding: 5rem 5%;
}

.terms-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.9), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(100, 100, 100, 0.3);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.terms-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #909090);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.terms-date {
    text-align: center;
    color: #909090;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.terms-content {
    color: #b0b0b0;
    line-height: 1.8;
}

.terms-content h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.terms-content p {
    margin-bottom: 1rem;
}

.terms-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.terms-content li {
    margin-bottom: 0.5rem;
}

.terms-content a {
    color: #909090;
    text-decoration: underline;
}

.terms-content a:hover {
    color: #ffffff;
}

.terms-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.terms-warning i {
    color: #ef4444;
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.terms-warning p {
    color: #ffffff;
    margin: 0;
}

.terms-container .btn-large {
    display: inline-block;
    margin-top: 2rem;
}


.terms-link {
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.terms-link a {
    color: #909090;
    text-decoration: none;
    transition: color 0.3s;
}

.terms-link a:hover {
    color: #ffffff;
}


/* Кастомный скроллбар */
::-webkit-scrollbar {
    width: 17px;
    background: #2d2d2d;
}

::-webkit-scrollbar-track {
    background: #2d2d2d;
}

::-webkit-scrollbar-thumb {
    background: #5d5d5d;
    border: 4px solid #2d2d2d;
    min-height: 40px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6d6d6d;
}

::-webkit-scrollbar-thumb:active {
    background: #e74c3c;
}

::-webkit-scrollbar-button:single-button {
    display: block;
    height: 0;
    width: 0;
}

::-webkit-scrollbar-button:single-button:vertical:decrement,
::-webkit-scrollbar-button:single-button:vertical:increment {
    height: 0;
    width: 0;
    background: transparent;
}

/* Для Firefox */
html {
    scrollbar-width: auto;
    scrollbar-color: #5d5d5d #2d2d2d;
}

body {
    scrollbar-width: auto;
    scrollbar-color: #5d5d5d #2d2d2d;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 3%;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content h1, .logo-hero {
        font-size: 2.5rem !important;
        letter-spacing: -1px;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .stat-card {
        min-width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hwid-addon {
        flex-direction: column;
        align-items: stretch;
        gap: 1.2rem;
        padding: 1.25rem;
    }

    .hwid-addon-action {
        justify-content: space-between;
        padding-top: 1rem;
        border-top: 1px solid rgba(130, 130, 130, 0.2);
    }

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

    .footer-left {
        justify-content: center;
        text-align: center;
    }

    .footer-left > p:first-child {
        flex-basis: 100%;
    }

    .footer-right {
        width: min(100%, 220px);
        margin: 0 auto;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .price-card:hover {
        transform: translateY(-8px);
    }
    
    .video-wrapper {
        padding: 0 1rem;
    }
    
    .terms-container {
        padding: 2rem 1.5rem;
    }
    
    .terms-container h1 {
        font-size: 1.8rem;
    }
    
    .terms-content h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1, .logo-hero {
        font-size: 2rem !important;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .price-icon {
        font-size: 2.5rem;
    }
    
    .price {
        font-size: 2.5rem;
    }

    .hwid-addon-info {
        align-items: flex-start;
    }

    .hwid-addon-action {
        flex-wrap: wrap;
    }

    .hwid-addon-action .btn-secondary {
        flex: 1;
        min-width: 130px;
    }
    
    .contact-links-small {
        gap: 0.5rem;
    }
    
    .contact-links-small a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
