/* Main CSS */
:root {
    --primary-color: #4361ee;
    --primary-dark: #3a0ca3;
    --primary-gradient: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    --secondary-color: #f72585;
    --secondary-light: #fb6f92;
    --secondary-dark: #b5179e;
    --text-color: #2b2d42;
    --text-light: #6c757d;
    --text-muted: #8d99ae;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-light-2: #edf2f7;
    --bg-dark: #1a1a2e;
    --border-color: #e0e0e0;
    --border-radius: 10px;
    --border-radius-sm: 6px;
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    --box-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.06);
    --box-shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --section-spacing: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

ul {
    list-style: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    font-size: 1rem;
    z-index: 1;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-lg);
}

.btn-primary:hover:before {
    width: 100%;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.9rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    transition: var(--transition);
}

.btn-small:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-sm);
    color: white;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.logo-icon {
    border-radius: 20%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    color: var(--text-color);
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1010;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
#hero {
    padding: 100px 0 30px;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
    overflow: hidden;
    position: relative;
}

#hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: -7% !important;
}

.hero-content {
    padding-right: 20px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color);
    background: linear-gradient(to right, var(--text-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h2 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.hero-stats {
    display: flex;
    gap: 20px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

#hero-illustration {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 0;
}

/* Trusted By Section */
#trusted-by {
    padding: 40px 0;
    background-color: white;
}

.trusted-by-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brands-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.brand {
    opacity: 0.6;
    transition: var(--transition);
}

.brand:hover {
    opacity: 1;
}

.brand-logo {
    height: 30px;
    width: auto;
}

/* Features Section */
#features {
    padding: var(--section-spacing) 0 30px;
    background-color: var(--bg-light);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: var(--primary-gradient);
    z-index: -1;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-gradient);
    color: white;
    transform: rotateY(180deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-light);
}

.features-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 0;
}

/* How it Works Section */
#how-it-works {
    padding: var(--section-spacing) 0;
    background-color: white;
}

.steps-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-container:before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    height: calc(100% - 50px);
    width: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.step {
    display: flex;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 30px;
    box-shadow: var(--box-shadow);
    z-index: 2;
}

.step-content {
    background-color: white;
    padding: 25px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    flex-grow: 1;
    transform: translateX(0);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.step:hover .step-content {
    transform: translateX(10px);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
}

.steps-cta {
    text-align: center;
    margin-top: 50px;
}

/* Testimonials Section */
#testimonials {
    padding: var(--section-spacing) 0;
    background-color: var(--bg-light);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto 30px;
    overflow: hidden;
}

.testimonial {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 35px;
    box-shadow: var(--box-shadow);
    margin: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-rating {
    margin-bottom: 15px;
    color: #FFD700;
}

.testimonial-content {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content:before {
    content: "";
    font-family: Georgia, serif;
    font-size: 5rem;
    position: absolute;
    left: -20px;
    top: -40px;
    color: rgba(67, 97, 238, 0.1);
    z-index: 0;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background-color: rgb(232, 232, 232);
    box-shadow: var(--box-shadow-sm);
}

.avatar-placeholder {
    background: var(--primary-gradient);
    border-radius: 50%;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.prev-btn, .next-btn {
    background: white;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--box-shadow-sm);
}

.prev-btn:hover, .next-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.slider-dots {
    display: flex;
    gap: 8px;
    margin: 0 15px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* FAQ Section */
#faq {
    padding: var(--section-spacing) 0;
    background-color: white;
}

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

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--box-shadow-sm);
}

.faq-question {
    padding: 20px 25px;
    background-color: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    color: var(--text-color);
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    color: var(--text-light);
    margin: 0;
    padding-bottom: 20px;
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
}

.faq-item.active .faq-question h3,
.faq-item.active .faq-toggle {
    color: white;
}

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

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

/* Waitlist Section */
#waitlist {
    padding: var(--section-spacing) 0;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
}

#waitlist .section-title {
    color: white;
}

#waitlist .section-title:after {
    background: white;
}

.waitlist-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.waitlist-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow-lg);
}

.waitlist-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    text-align: left;
}

.form-group:nth-child(1),
.form-group:nth-child(2) {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
}

.waitlist-form input,
.waitlist-form select {
    width: 100%;
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    border: 2px solid var(--border-color);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-color);
    background-color: var(--bg-light);
}

.waitlist-form input:focus,
.waitlist-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.form-consent {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
    text-align: left;
}

.form-consent input {
    width: auto;
}

.form-consent label {
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
}

.waitlist-form button {
    grid-column: span 2;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
}

.form-success {
    text-align: center;
    color: var(--text-color);
}

.form-success i {
    font-size: 3.5rem;
    color: #10b981;
    margin-bottom: 20px;
}

.form-success h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: var(--text-color);
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.social-share {
    margin-top: 30px;
}

.social-share p {
    margin-bottom: 15px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.whatsapp {
    background-color: #25d366;
}

.hidden {
    display: none;
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

footer .logo h3 {
    color: white;
}

.footer-logo p {
    color: rgba(255,255,255,0.7);
    margin-top: 20px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-links h4:after,
.footer-social h4:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.app-badges {
    margin-top: 20px;
}

.app-badges p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.badges {
    display: flex;
    gap: 10px;
}

.app-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255,255,255,0.1);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    color: white;
    transition: var(--transition);
}

.app-badge:hover {
    background-color: rgba(255,255,255,0.2);
    color: white;
}

.app-badge i {
    font-size: 1.2rem;
}

.app-badge span {
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.language-selector select {
    background-color: rgba(255,255,255,0.1);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    cursor: pointer;
}

/* Media queries */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-logo {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        padding: 80px 20px 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }

    nav.active {
        right: 0;
    }

    .phone-mockup {
        margin-left: 0px !important;
        margin-top: -15% !important;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    #hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
    }

    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-logo {
        grid-column: 1;
    }

    .section-title {
        font-size: 2rem;
    }

    .waitlist-form {
        display: block;
    }

    .form-group:nth-child(1),
    .form-group:nth-child(2) {
        grid-column: 1;
    }

    .waitlist-form button {
        grid-column: 1;
    }

    .waitlist-card {
        padding: 25px;
    }

    .brands-container {
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .app-badges {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

.phone-mockup {
    position: relative;
    width: 300px !important;
    height: 600px !important;
    margin-top: 20px ;
    margin-left: 40%;
    opacity: 0;
    transform: translateX(20px);
    animation: fadeInRight 1s ease 0.5s forwards;
    transition: transform 0.5s ease;
  }
  
  @keyframes fadeInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .phone-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  

  
  .notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 2;
  }
  
  .screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
  }
  
  .app-content {
    height: 100%;
    position: relative;
  }
  
  .app-header {
    display: none;
  }
  
  .app-body {
    height: 100%;
    width: 100%;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
  }
  
  .phone-video {
    width: 100%;
    max-width: 300px;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 30px;
  }
  
  .button-right, .button-left {
    position: absolute;
    width: 3px;
    height: 50px;
    background: #444;
    border-radius: 2px;
  }
  
  .button-right {
    right: -2px;
    top: 100px;
  }
  
  .button-left {
    left: -2px;
    top: 70px;
  }
