﻿body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    margin: 0;
    padding: 0;
    text-align: center;
    line-height: 1.6;
}

/* Top Header */
.top-header {
    background: #1e293b;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 1rem;
    font-weight: bold;
}

    .top-header a {
        color: #60a5fa;
        text-decoration: none;
    }

.new-year-banner {
    color: #e2e8f0;
    font-size: 1.1rem;
    text-align: center;
    flex: 1;
    min-width: 280px;
    white-space: pre-wrap;
}

.phone-contact {
    color: #e2e8f0;
    white-space: nowrap;
}

/* Logo & Titles */
.logo-container {
    margin: 50px 0 30px;
}

.logo {
    height: 140px;
    display: block;
    margin: 0 auto 16px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}

h1 {
    font-size: 3.2rem;
    color: #60a5fa;
    margin: 8px 0 12px;
}

.tagline {
    font-size: 1.6rem;
    margin: 8px 0 4px;
    color: #94a3b8;
}

.one-stop-blurb {
    font-size: 1.4rem;
    margin: 0 0 20px;
    color: #e2e8f0;
    font-weight: bold;
}

/* Pricing */
.price {
    background: #1e293b;
    margin: 30px auto;
    padding: 24px 28px;
    border-radius: 16px;
    max-width: 560px;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.price-item {
    margin-bottom: 18px;
}

.price strong {
    color: #60a5fa;
}

.price .range {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-left: 10px;
}

.popular-badge {
    background: #fbbf24;
    color: #1e293b;
    font-size: 1.1rem;
    padding: 4px 12px;
    border-radius: 999px;
    display: inline-block;
    margin-top: 8px;
}

/* Buttons */
.btn {
    background: #60a5fa;
    color: #0f172a;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.8rem;
    display: inline-block;
    margin: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease;
}

    .btn:hover {
        background: #3b82f6;
        transform: scale(1.03);
    }

    .btn.venmo {
        background: #008CFF;
    }

        .btn.venmo:hover {
            background: #0070c9;
        }

    .btn.business,
    .btn.special {
        background: #10b981;
        padding: 14px 30px;
        font-size: 1.4rem;
        box-shadow: 0 0 10px #10b98180;
    }

        .btn.business:hover,
        .btn.special:hover {
            background: #059669;
            transform: scale(1.03);
            box-shadow: 0 0 18px #10b981;
        }

/* Urgency & Badges */
.urgency {
    font-size: 1.45rem;
    color: #f87171;
    font-weight: bold;
    margin: 25px 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.ai-badge,
.gaming-badge {
    position: fixed;
    top: 110px;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: all 0.2s ease;
}

.ai-badge {
    right: 20px;
    background: #10b981;
    color: #0f172a;
}

    .ai-badge:hover {
        background: #059669;
        transform: scale(1.04);
        box-shadow: 0 0 14px #059669;
    }

.gaming-badge {
    left: 20px;
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    color: #fff;
    box-shadow: 0 0 10px #A855F760;
}

    .gaming-badge:hover {
        transform: scale(1.04);
        box-shadow: 0 0 14px #A855F7;
    }

/* Gallery */
.gallery {
    margin: 40px auto;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

    .gallery img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.4);
        transition: all 0.3s ease;
    }

        .gallery img:hover {
            transform: scale(1.04);
            box-shadow: 0 8px 20px rgba(96,165,250,0.3);
        }

/* Floating Quote Button */
.floating-quote-btn {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: #f87171;
    color: white;
    padding: 16px 32px;
    border-radius: 999px;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(248,113,113,0.5);
    text-decoration: none;
    z-index: 10001;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .floating-quote-btn:hover {
        background: #ef4444;
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 10px 30px rgba(248,113,113,0.6);
    }

/* Robot Trigger */
.robot-trigger {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 90px;
    height: 90px;
    background: #064e3b;
    border-radius: 50%;
    border: 5px solid #10b981;
    box-shadow: 0 10px 35px rgba(16,185,129,0.4), 0 0 20px rgba(236,72,153,0.3);
    cursor: pointer;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    transition: all 0.3s ease;
}

    .robot-trigger:hover {
        transform: scale(1.08) rotate(3deg);
        box-shadow: 0 14px 50px rgba(16,185,129,0.55), 0 0 30px rgba(236,72,153,0.45);
    }

    .robot-trigger svg {
        width: 78%;
        height: 78%;
        animation: float-rest 50s ease-in-out infinite;
    }

@keyframes float-rest {
    0%, 35%, 65%, 100% {
        transform: translateY(0) scale(1);
    }

    45% {
        transform: translateY(-8px) scale(1.012);
    }

    55% {
        transform: translateY(-2px) scale(1.004);
    }
}

/* Robot Animations */
.eye {
    transition: r 0.18s ease;
}

    .eye.closed {
        r: 4 !important;
        fill: #1e40af; /* dark blue for closed look */
    }

.wave-arm {
    transform-origin: 50% 20%; /* pivot near shoulder */
    animation: none;
}

@keyframes wave {
    0%, 100% {
        transform: rotate(30deg);
    }

    20% {
        transform: rotate(45deg);
    }

    40% {
        transform: rotate(15deg);
    }

    60% {
        transform: rotate(50deg);
    }

    80% {
        transform: rotate(25deg);
    }
}

/* Chat Window */
#chat-window {
    position: fixed;
    bottom: 170px;
    right: 45px;
    width: 380px;
    height: 540px;
    background: #0f172a;
    border: 2px solid #334155;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    overflow: hidden;
    z-index: 9999;
    display: none;
    flex-direction: column;
}

#chat-header {
    background: #1e293b;
    color: #60a5fa;
    padding: 14px 18px;
    font-weight: bold;
    font-size: 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #334155;
}

#chat-close {
    cursor: pointer;
    font-size: 1.6rem;
    color: #94a3b8;
    padding: 0 8px;
}

    #chat-close:hover {
        color: #f87171;
    }

#chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(to bottom, #0f172a, #111827);
}

.message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 18px;
    line-height: 1.4;
}

.user-msg {
    align-self: flex-end;
    background: #60a5fa;
    color: #0f172a;
}

.ai-msg {
    align-self: flex-start;
    background: #334155;
    color: #e2e8f0;
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    max-width: 80%;
    align-self: flex-start;
    background: #334155;
    border-radius: 18px;
}

    .typing-indicator .dot {
        width: 8px;
        height: 8px;
        background: #94a3b8;
        border-radius: 50%;
        animation: bounce 1.2s infinite ease-in-out;
    }

        .typing-indicator .dot:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-indicator .dot:nth-child(3) {
            animation-delay: 0.4s;
        }

@keyframes bounce {
    0%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }
}

#chat-input-area {
    padding: 12px 16px;
    border-top: 1px solid #334155;
    background: #1e293b;
    display: flex;
    gap: 10px;
}

#chat-input {
    flex: 1;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid #60a5fa40;
    background: #0f172a;
    color: #e2e8f0;
    font-size: 1rem;
}

    #chat-input:focus {
        border-color: #60a5fa;
        outline: none;
        box-shadow: 0 0 0 3px rgba(96,165,250,0.2);
    }

#chat-send {
    padding: 0 24px;
    background: #10b981;
    color: #0f172a;
    border: none;
    border-radius: 999px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

    #chat-send:hover {
        background: #059669;
    }

/* Media Queries */
@media (max-width: 768px) {
    .top-header {
        flex-direction: column;
    }

    .logo {
        height: 110px;
    }

    h1 {
        font-size: 2.6rem;
    }

    .ai-badge, .gaming-badge {
        top: 130px;
        font-size: 0.95rem;
        padding: 8px 14px;
    }

    .floating-quote-btn {
        bottom: 110px;
        right: 16px;
        padding: 14px 24px;
        font-size: 1.15rem;
    }

    .robot-trigger {
        bottom: 20px;
        right: 16px;
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .robot-trigger {
        bottom: 35px;
        right: 35px;
        width: 96px;
        height: 96px;
    }

    #chat-window {
        width: 92%;
        right: 4%;
        bottom: 140px;
        height: 65vh;
    }
}
