:root {
    --bg-dark: #050608;
    --card-bg: rgba(255, 255, 255, 0.03);
    --bull-green: #00ff9d;
    --bear-red: #ff3e3e;
    --gold: #ffcc00;
    --magenta: #ff00ff;
    --cyan: #00ffff;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-bright: rgba(255, 255, 255, 0.15);
    --accent-glow: rgba(0, 255, 157, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Inter', sans-serif;
}

html,
body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

/* Aurora Background Effect */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #0a0b0d 0%, #050608 100%);
}

.aurora-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(var(--bull-green) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -1;
    opacity: 0.1;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 90%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black, transparent 90%);
}

.aurora-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 255, 157, 0.05) 50%,
            transparent 100%);
    background-size: 100% 200%;
    animation: scanline 8s linear infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes scanline {
    0% {
        background-position: 0 -100%;
    }

    100% {
        background-position: 0 100%;
    }
}

@keyframes grid-drift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 50px 50px;
    }
}

.aurora-blob {
    position: absolute;
    width: 60vw;
    height: 60vw;
    filter: blur(80px);
    opacity: 0.15;
    border-radius: 50%;
    z-index: -1;
    animation: aurora-float 20s infinite ease-in-out;
}

.blob-1 {
    background: var(--bull-green);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    background: var(--gold);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
    opacity: 0.1;
}

.blob-3 {
    background: var(--cyan);
    top: 40%;
    right: 15%;
    width: 40vw;
    height: 40vw;
    animation-delay: -10s;
    opacity: 0.08;
}

@keyframes aurora-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(5%, 10%) scale(1.1);
    }

    66% {
        transform: translate(-5%, 5%) scale(0.9);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Glassmorphism Utilities */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    position: relative;
    overflow: hidden;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.glass::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.06),
            transparent 40%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.glass:hover::after {
    opacity: 1;
}

.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border-bright), transparent);
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 160px 0 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
}

.badge {
    padding: 0.5rem 1.2rem;
    background: rgba(255, 204, 0, 0.05);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: neon-pulse 3s infinite ease-in-out;
}

@keyframes neon-pulse {

    0%,
    100% {
        border-color: rgba(255, 204, 0, 0.3);
        box-shadow: 0 0 5px rgba(255, 204, 0, 0.1);
    }

    50% {
        border-color: rgba(255, 204, 0, 0.8);
        box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
    }
}

h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right,
            #fff 20%,
            var(--gold) 40%,
            var(--gold) 60%,
            #fff 80%);
    background-size: 200% auto;
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite, heading-glitch 5s infinite;
}

@keyframes heading-glitch {

    0%,
    90%,
    100% {
        transform: skew(0deg);
    }

    91% {
        transform: skew(0.5deg);
        opacity: 0.8;
    }

    93% {
        transform: skew(-0.5deg);
        opacity: 1;
    }

    95% {
        transform: skew(0.2deg);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    max-width: 750px;
    margin-bottom: 4rem;
    line-height: 1.8;
}

.action-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 6rem;
}

.cta-button,
.secondary-button {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.cta-button {
    background: var(--bull-green);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: rotate(30deg);
    animation: cta-shimmer 3s infinite;
}

@keyframes cta-shimmer {
    0% {
        left: -100%;
    }

    20% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.5);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--glass-border);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Feature Grid */
.features {
    padding: 160px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--bull-green);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

/* Feature Themes */
.feature-whale:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.2);
    animation: ripple-gold 2s infinite ease-in-out;
}

.feature-whale h3 {
    color: var(--gold) !important;
}

.feature-traps:hover {
    border-color: var(--magenta);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.2);
    animation: glitch-magenta 0.3s infinite ease-in-out;
}

.feature-traps h3 {
    color: var(--magenta) !important;
}

.feature-iceberg:hover {
    border-color: var(--cyan);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
    animation: breathe-cyan 3s infinite ease-in-out;
}

.feature-iceberg h3 {
    color: var(--cyan) !important;
}

.feature-delta:hover {
    border-color: var(--bull-green);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
}

.feature-delta h3 {
    color: var(--bull-green) !important;
}

@keyframes ripple-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 204, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 204, 0, 0);
    }
}

@keyframes glitch-magenta {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

@keyframes breathe-cyan {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
    }
}

/* Simplicity Section */
.simplicity {
    padding: 160px 0;
}

.simplicity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.simplicity-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 1.5rem 2rem;
    gap: 1.2rem;
    border-radius: 24px;
    transition: all 0.4s ease;
}

.simplicity-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.brand-icon {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.brand-icon.legacy img {
    filter: grayscale(1) opacity(0.5);
}

.brand-icon .cross,
.brand-icon .check {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.6rem;
    font-weight: 900;
    z-index: 2;
    border: 1px solid var(--bg-dark);
}

.cross {
    background: var(--bear-red);
    color: #fff;
}

.check {
    background: var(--bull-green);
    color: #000;
}

.simplicity-item.highlight {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.1), rgba(0, 255, 157, 0.02));
    border: 1px solid var(--bull-green);
    flex-direction: row;
    text-align: left;
    justify-content: center;
}

.simplicity-item.highlight .brand-icon {
    width: 48px;
    height: 48px;
}

.simplicity-item.highlight p {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bull-green);
    max-width: 600px;
}

/* Payment & Checkout */
.payment-section {
    padding: 160px 0;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--glass-border);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(255, 204, 0, 0.15);
}

.pricing-card.popular {
    border-color: var(--bull-green);
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.05), rgba(0, 255, 157, 0.01));
}

.pricing-card.popular:hover {
    border-color: var(--bull-green);
    box-shadow: 0 20px 40px rgba(0, 255, 157, 0.2);
}

.pricing-card .duration {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.pricing-card.popular .price {
    color: var(--bull-green);
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-card li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-card li::before {
    content: '✓';
    color: var(--bull-green);
    font-weight: 800;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.screenshot-container {
    aspect-ratio: 9/19;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.screenshot-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dynamic Orderflow Visual */
.orderflow-visual {
    width: 800px;
    height: 400px;
    margin: 40px auto 0;
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 40px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: float-visual 6s infinite ease-in-out;
}

@keyframes float-visual {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.bubble-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.market-bubble {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    animation: float-pulse 3s infinite ease-in-out;
}

.market-bubble.bear {
    background: radial-gradient(circle, var(--bear-red) 0%, transparent 80%);
    box-shadow: 0 0 20px var(--bear-red);
}

/* Bubble Sizes */
.market-bubble.sm {
    width: 15px;
    height: 15px;
    opacity: 0.6;
}

.market-bubble.md {
    width: 25px;
    height: 25px;
    opacity: 0.8;
}

.market-bubble.lg {
    width: 45px;
    height: 45px;
    opacity: 1;
}

/* Candlesticks - Mirroring Reference */
.candle {
    position: absolute;
    width: 10px;
    border-radius: 1px;
    transition: all 0.5s ease;
}

.candle.bull {
    background: #00ff9d;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.4);
}

.candle.bear {
    background: #8b5cf6;
    /* Deep Purple as per professional reference screenshots */
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.candle .volume-cluster {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    font-size: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 800;
    pointer-events: none;
}

.candle .cluster-hit {
    width: 80%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
}

.candle.bull .cluster-hit.imbalance {
    background: rgba(0, 255, 157, 0.6);
    box-shadow: 0 0 5px var(--bull-green);
}

.candle.bear .cluster-hit.imbalance {
    background: rgba(255, 0, 255, 0.6);
    box-shadow: 0 0 5px var(--magenta);
}

.data-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
}

@keyframes particle-float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

.candle .wick {
    position: absolute;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-50%);
}

.price-pulse {
    position: absolute;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #00ff9d;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #00ff9d;
    animation: dynamic-pulse 1.5s infinite ease-in-out;
}

@keyframes dynamic-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 1;
        box-shadow: 0 0 15px #00ff9d;
    }
}

@keyframes float-pulse {

    0%,
    100% {
        transform: scale(0.9) translate(0, 0);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.1) translate(2px, -2px);
        opacity: 0.9;
    }
}

footer {
    padding: 80px 0 40px;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 157, 0.02));
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    text-align: left;
}

.footer-brand .brand-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 300px;
    line-height: 1.8;
}

.footer-links h4,
.footer-social h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--bull-green);
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon:hover {
    background: rgba(0, 255, 157, 0.1);
    border-color: var(--bull-green);
    color: var(--bull-green);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 255, 157, 0.2);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Technical/Data Section */
.technical-section {
    padding: 160px 0;
    position: relative;
}

.data-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.data-level-card {
    padding: 3rem 2rem;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.data-level-card:hover {
    border-color: var(--cyan);
    background: rgba(0, 255, 255, 0.03);
}

.data-level-card.high-spec {
    border-color: var(--bull-green);
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.05), transparent);
}

.data-level-card h4 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.data-level-card .spec-list {
    list-style: none;
    padding: 0;
}

.data-level-card .spec-list li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.data-level-card .spec-list span:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

.logic-box {
    margin-top: 6rem;
    text-align: left;
    padding: 4rem;
}

.logic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.logic-item h5 {
    color: var(--bull-green);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logic-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .logic-box {
        padding: 2rem;
    }
}


@media (max-width: 992px) {
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .simplicity-item.highlight {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 60px 0 20px;
        /* Tighten bottom */
    }

    .orderflow-visual {
        width: 100%;
        height: 250px;
        transform: scale(0.9);
    }

    .action-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 40px 0 10px;
        /* Tighten bottom */
    }

    .features {
        padding: 20px 0 40px;
        /* Aggressive top reduction */
    }

    .orderflow-visual {
        height: 180px;
        transform: scale(0.75);
        margin-top: 10px;
    }
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #25d366;
    text-decoration: none;
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(37, 211, 102, 0.1);
}

.whatsapp-widget:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-widget svg {
    filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.5));
}

.whatsapp-badge {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        left: 20px;
        /* Move to left to avoid overlapping contact info */
        right: auto;
        padding: 10px 15px;
    }

    .whatsapp-badge {
        display: block;
        /* Show CHAT label on mobile */
    }
}