:root {
    --bg-color: #030305;
    --primary-color: #836EF9;
    --primary-hover: #7a6be0;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --border-color: #333;
    --input-bg: rgba(255, 255, 255, 0.05);
    --card-bg: rgba(255, 255, 255, 0.05);
    --grid-color: rgba(255, 255, 255, 0.03);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), /* Dark overlay */ url(../img/hero-bg.png);
    background-repeat: no-repeat;
    background-position-y: top;
    background-position-x: center;
    background-size: 100% 1100px;
}

/* Background Effects */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
}

.glow-effect {
    position: fixed;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(circle, rgba(78, 55, 185, 0.15) 0%, rgba(3, 3, 5, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

/* Typography & Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.btn-primary {
    font-family: Manrope;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 400;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-primary.small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-block {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
}

.highlight {
    color: rgba(186, 156, 255, 1);
    font-weight: 500;
}

.hidden {
    display: none;
}

/* Header */
header {
    padding: 20px 0;
    position: relative;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 30px;
    width: auto;
    margin-top: 6px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-right: 5rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.social-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-right: 5rem;
}

.social-top i {
    font-size: 1.2rem;
    color: var(--text-color);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-top i:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Sidebar Navigation */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1010;
    pointer-events: none;
}

.mobile-sidebar.active {
    pointer-events: all;
}

.mobile-sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-sidebar.active .mobile-sidebar-overlay {
    opacity: 1;
}

.mobile-sidebar-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(131, 110, 249, 0.2);
}

.mobile-sidebar.active .mobile-sidebar-content {
    transform: translateX(0);
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    height: 22px;
    width: auto;
}

.close-sidebar {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.close-sidebar:hover {
    background: rgba(131, 110, 249, 0.2);
    transform: rotate(90deg);
}

.mobile-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: white;
    background: rgba(131, 110, 249, 0.1);
    border-left-color: var(--primary-color);
}

.mobile-sidebar-footer {
    padding: 25px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-sidebar-footer .btn-block {
    margin-bottom: 20px;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.mobile-social i {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.mobile-social a:hover i {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden; /* Hide floating coins if they go out */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.badge {
    font-family: Inter;
    display: inline-flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(229, 156, 255, 0.24) 0.01%, rgba(186, 156, 255, 0.24) 50.01%, rgba(156, 178, 255, 0.24) 100%);
    padding: 5.5px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 300;
    margin-bottom: 20px;
    /* box-shadow: 0px -7px 11px 0px rgba(164, 143, 255, 0.12) inset; */
    backdrop-filter: blur(6px);
    color: rgb(255 255 255 / 80%);
}

.badge-text{
background: 
    linear-gradient(90deg, #E59CFF 0.01%, #BA9CFF 50.01%, #9CB2FF 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* For modern browsers */
}

.badge .sparkle {
    margin-right: 8px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

.features-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.features-list i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Floating Coins */
.floating-coin {
    position: absolute;
    width: 42px;
    height: 42px;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.coin-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.coin-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
}

.coin-3 {
    z-index: 1000;
    top: 6.2%;
    left: calc(50% - 30px); /* Center horizontally (50% - half width) */
    height: 60px;
    animation-delay: 1s;
    opacity: 0.8; 
}

.floating-coin img {
    width: 100%;
    height: auto;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Phones Presentation */
.hero-phones {
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Align bottom */
    gap: 20px;
    margin-top: 40px;
    padding-bottom: 40px;
    position: relative;
}

.phone {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #000;
    border: 4px solid #1a1a1a;
}

.phone img {
    display: block;
    width: 100%;
    height: auto;
}

.phone-center {
    width: 280px;
    z-index: 2;
}

.phone-left, .phone-right {
    width: 240px;
    opacity: 0.9;
    z-index: 1;
}

.slide-nav {
    display: none;
}

/* Waitlist Section */
.waitlist-section {
    padding: 20px 0;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(76, 50, 168, 0.05));
}

.waitlist-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.waitlist-section p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

.counter-container {
    margin: 40px 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    background: rgba(0,0,0,0.3);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.counter-container i{
    background: linear-gradient(0deg, #FFFFFF 0%, #836EF9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.counter-container #counter{
    background: linear-gradient(180deg, #836EF9 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
}

.waitlist-form .input-group input{
    text-align: center;
}

.input-group input, 
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--primary-color); /* Per UI showing thin colored borders */
    border-radius: 8px;
    color: white;
    font-family: inherit;
}

/* The first screenshot shows purple border for form inputs. */
.input-group input {
    border: 1px solid rgba(131, 110, 249, 1);
    background: rgba(0,0,0,0.4);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(22, 22, 28, 0.95);
    border: 1px solid var(--primary-color);
    border-left: 4px solid var(--primary-color);
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    animation: toastSlideIn 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    max-width: 350px;
    line-height: 1.4;
}

.success-message.hidden{
display: none;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.store-link img {
    height: 40px;
    width: auto;
    transition: transform 0.3s;
}

.store-link:hover img {
    transform: scale(1.05);
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: black;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    min-width: 160px;
}

.store-btn i {
    font-size: 1.8rem;
}

.store-btn .text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.store-btn .text span {
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    padding-bottom: 150px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), /* Dark overlay */ url(../img/hero-bg-reversed.png);
    hero-bg-reversed.png: bottom;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Mobile override */
@media (max-width: 768px) {
    .contact-section {
        background-image: 
            linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
            url(../img/hero-bg-reversed.png);
    }
}

.contact-section .container {
    max-width: 600px; /* Narrower for contact form */
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-header h3 {
    font-weight: 400;
    color: var(--text-muted);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    margin-top: 20px;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid #333; /* Darker border for contact form based on image 2 */
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form .btn-block {
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    /* Header Mobile Adjustments */
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .social-top {
        display: none;
    }
    
    header .container {
        gap: 15px;
    }
    
    header .header-right {
        gap: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-top: 15px;
        margin-bottom: 35px;
    }

    .features-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 20px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 20px;
    }

    .features-list li {
        text-align: center;
        font-size: 14px;
    }

    .features-list li:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .hero-phones {
        position: relative;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        zoom: 0.8; /* Simple scaling */
    }
    
    /* Auto Slideshow logic on Mobile */
    .phone {
        display: none; /* Hide all by default */
        width: auto; 
        opacity: 1;
        transition: all 0.5s ease;
    }

    .phone img {
        height: 239px;
        width: auto;
    }

    .phone.active {
        display: block; /* Show active */
        animation: slideUpFade 0.5s ease-out forwards;
    }

    /* Override specific widths from desktop */
    .phone-left, .phone-right, .phone-center {
        width: auto; 
        opacity: 1;
        z-index: 5;
    }

    @keyframes slideUpFade {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .slide-nav {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(83, 62, 133, 0.6);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        font-size: 1.2rem;
        cursor: pointer;
        z-index: 20;
        backdrop-filter: blur(5px);
        justify-content: center;
        align-items: center;
        transition: 0.3s;
    }

    .slide-nav:active {
        background: var(--primary-color);
        transform: translateY(-50%) scale(0.95);
    }

    .slide-nav.prev {
        left: 20px;
    }

    .slide-nav.next {
        right: 20px;
    }
    
    .social-links {
        justify-content: center;
    }

    .success-message {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

/* App Links Section */
.app-links-section {
    padding: 60px 0;
    text-align: center;
    position: relative;
    /* Removed large bottom margin if any */
}

.social-links-center {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 70px;
    margin-top: 2rem;
}

.social-links-center a {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.social-links-center a:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.coming-soon-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Small floating coins specific to this section */
.coin-1-small {
    top: 10%;
    left: 15%;
    width: 35px;
    height: 35px;
    animation-delay: 0.5s;
}

.coin-2-small {
    top: 15%;
    right: 15%;
    width: 40px;
    height: 40px;
    animation-delay: 1.5s;
}

@media (max-width: 768px) {
    .coin-1-small {
        left: 10%;
    }
    .coin-2-small {
        right: 10%;
    }
    
    .social-links-center {
        gap: 25px;
    }
}

/* Footer Exact Match */
footer {
    padding: 80px 0 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background-color: transparent;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

/* Brand Column */
.brand-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 30px;
    width: auto;
    margin-bottom: 30px;
    align-self: flex-start;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-bottom: auto; 
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 50%;
}

.footer-social a:hover {
    color: var(--primary-color);
    background: rgba(255,255,255,0.05);
}

.copyright {
    margin-top: 80px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Headings */
.footer-col h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* Links List */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 400;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

/* About Column Text */
.about-col p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 280px;
}

/* Hotline & Contact - Bottom of columns */
.footer-hotline, .footer-contact {
    margin-top: 10px; /* Spacing */
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-hotline span, .footer-contact span {
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.footer-hotline a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--primary-color); /* Matches the purple email in image */
    font-size: 0.95rem;
    text-decoration: none;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 50px;
    }
    
    .copyright {
        margin-top: 30px;
    }
    
    .about-col p {
        max-width: 100%;
    }
}

/* Coming Soon Modal */
#comingSoonModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#comingSoonModal.show {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.95) 0%, rgba(30, 30, 40, 0.95) 100%);
    border: 1px solid rgba(131, 110, 249, 0.3);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

#comingSoonModal.show .modal-content {
    transform: scale(1);
}

/* Glow effect behind modal */
.modal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(131, 110, 249, 0.1) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: rgba(131, 110, 249, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(131, 110, 249, 0.2);
}

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.modal-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 30px;
}

.modal-close-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(131, 110, 249, 0.3);
}

.modal-close-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(131, 110, 249, 0.4);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.8rem; /* Increased size for X */
    line-height: 1;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: white;
}