/* Base Styles */
:root {
    --primary-color: #00ffff;
    --primary-dark: #00cccc;
    --primary-light: #33ffff;
    --secondary-color: #ffffff;
    --secondary-dark: #eeeeee;
    --text-color: #000000;
    --text-light: #ffffff;
    --background-color: #ffffff;
    --background-alt: #f5f5f5;
    --border-color: #00ffff;
    --success-color: #00ff00;
    --warning-color: #ffff00;
    --danger-color: #ff0000;
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto Mono', 'Courier New', monospace;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Button Styles - Enhanced for touch */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

@media (max-width: 768px) {
    .btn {
        padding: 0.85rem 1.75rem; /* Larger touch target */
        min-height: 44px; /* Apple's recommended minimum touch target size */
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0.5rem 0;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    color: black;
    font-weight: bold;
    border: 2px solid var(--primary-dark);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    color: black;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #000000;
    border: 2px solid #000000;
}

.btn-secondary:hover {
    background-color: #000000;
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

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

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

.logo a {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

#logo-img {
    height: 40px;
    width: auto;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.nav-links ul {
    display: flex;
}

.nav-links ul li {
    margin: 0 1rem;
}

.nav-links ul li a {
    color: var(--text-light);
    font-weight: 500;
}

.nav-links ul li a:hover {
    color: var(--primary-color);
}

#menuOpen, #menuClose {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background: #000000;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

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

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: #000000;
    color: white;
    position: relative;
    overflow: hidden;
}

.features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.features .container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.8);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background-color: #0a0a0a;
    color: white;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    z-index: 1;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    border-left: 2px solid var(--primary-color);
    padding-left: 2rem;
    position: relative;
}

.step-number {
    background-color: #000000;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 2px solid var(--primary-color);
    position: absolute;
    left: -22px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-content {
    flex: 1;
}

.step-image {
    flex: 1;
    text-align: center;
}

.step-image img {
    max-width: 80%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: #050505;
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.02) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.testimonial {
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    color: white;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
    border-color: var(--primary-light);
}

.testimonial::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 20px;
    font-size: 120px;
    opacity: 0.05;
    font-family: Georgia, serif;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Download Section */
.download {
    padding: 5rem 0;
    background: #000000;
    color: white;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.download::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.download .container {
    position: relative;
    z-index: 2;
}

.download .section-header h2,
.download .section-header p {
    color: white;
}

.download .section-header h2::after {
    background-color: white;
}

.download-cta-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.download-image {
    flex: 1;
}

.download-image img {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.download-cta {
    flex: 1;
    text-align: center;
}

.download-cta .btn {
    margin-bottom: 1rem;
    background-color: white;
    color: var(--primary-color);
}

.download-cta .btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.download-note {
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: var(--background-alt);
}

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

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: white;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: #000000;
}

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

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

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: var(--background-color);
}

.contact-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 0;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
}

.email-black {
    color: #000000;
    font-weight: 500;
}

.social-links-centered {
    display: flex;
    gap: 2rem;
    font-size: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.contact-container {
    display: flex;
    gap: 3rem;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000000;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.contact-form {
    flex: 2;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    padding: 5rem 0 2rem;
    background-color: #000000;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 0.5rem;
}

.footer-brand h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.2rem;
}

.footer-column ul {
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
    list-style: none;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
        margin-bottom: 2rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .step, .step:nth-child(even) {
        flex-direction: column;
    }
    
    .download-content {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Hide header on mobile */
    header {
        display: none;
    }
    
    /* General mobile optimizations */
    .container {
        padding: 0 1.5rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: all 0.5s ease;
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links ul li {
        margin: 1.5rem 0;
    }
    
    #menuOpen, #menuClose {
        display: block;
        cursor: pointer;
    }
    
    #menuClose {
        position: absolute;
        top: 2rem;
        right: 2rem;
        font-size: 1.5rem;
        color: white;
    }
    
    /* Hero section */
    .hero-content, .hero-image {
        width: 100%;
        text-align: center;
    }
    
    .hero {
        flex-direction: column;
        padding: 2rem 0 3rem; /* Reduced top padding since header is hidden */
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* Video container - Enhanced for mobile */
    .video-container {
        width: 100%;
        height: 0;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2);
        margin: 0 auto;
        max-width: 100%;
        background-color: rgba(0, 0, 0, 0.2);
    }
    
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }
    
    @media (max-width: 480px) {
        .video-container {
            margin: 0 -10px;
            width: calc(100% + 20px);
            border-radius: 0;
        }
    }
    
    /* Features section */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* How it works section */
    .steps {
        gap: 2rem;
    }
    
    .step {
        padding-left: 1.5rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        left: -17px;
    }
    
    /* Testimonials section - Enhanced for mobile */
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
        margin-bottom: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 255, 255, 0.15);
        transition: transform 0.3s ease;
    }
    
    .testimonial:hover {
        transform: translateY(-5px);
    }
    
    .testimonial-content {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .testimonial-author {
        font-weight: bold;
        font-size: 1rem;
        margin-top: 0.5rem;
    }
    
    @media (max-width: 480px) {
        .testimonial {
            padding: 1.25rem;
        }
        
        .testimonial-content {
            font-size: 0.9rem;
        }
    }
    
    /* Download section */
    .download-cta-centered {
        padding: 1rem 0;
    }
    
    /* FAQ section - Enhanced for touch */
    .faq-item {
        margin-bottom: 1.25rem;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 255, 255, 0.1);
        overflow: hidden;
    }
    
    .faq-question {
        padding: 1.25rem;
        cursor: pointer;
        position: relative;
        -webkit-tap-highlight-color: transparent;
        min-height: 44px; /* Apple's recommended minimum touch target size */
    }
    
    .faq-question h3 {
        margin: 0;
        padding-right: 30px; /* Space for the toggle icon */
    }
    
    .faq-toggle {
        position: absolute;
        right: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem;
        max-height: 500px;
    }
    
    @media (max-width: 480px) {
        .faq-question {
            padding: 1.5rem 1rem;
        }
        
        .faq-toggle {
            right: 1rem;
        }
    }
    
    /* Contact section */
    .contact-centered {
        gap: 1.5rem;
    }
    
    .social-links-centered {
        gap: 2.5rem; /* Increased spacing for touch targets */
    }
    
    .social-links-centered a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px; /* Larger touch target */
        height: 60px;
        border-radius: 50%;
        background-color: rgba(0, 255, 255, 0.1);
        -webkit-tap-highlight-color: transparent;
    }
    
    .social-links-centered a:hover,
    .social-links-centered a:active {
        background-color: rgba(0, 255, 255, 0.2);
        transform: scale(1.1);
    }
}
