:root {
    --bg-neo-dark: #070709;
    --bg-glass-overlay: rgba(10, 10, 13, 0.85);
    --teal-primary: #00ffcc;
    --violet-accent: #7b2ff7;
    --text-silver: #a0a0b0;
    --border-glass: rgba(255, 255, 255, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-neo-dark);
    color: var(--text-silver);
    overflow-x: hidden;
}

.fw-extrabold { font-weight: 800; }
.text-teal { color: var(--teal-primary); }
.bg-teal { background-color: var(--teal-primary); }

/* Main Background Gradient (Subtle) */
.neo-bg {
    background-image: radial-gradient(circle at -20% -20%, rgba(123, 47, 247, 0.2), transparent),
                      radial-gradient(circle at 120% 120%, rgba(0, 255, 204, 0.1), transparent);
}

/* 1. Global Buttons */
.btn-teal {
    background-color: var(--teal-primary);
    color: #000;
    font-weight: 600;
    border: none;
    transition: 0.3s ease;
}

.btn-teal:hover {
    background-color: #00ccaa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.4);
}

.shadow-teal {
    box-shadow: 0 4px 10px rgba(0, 255, 204, 0.2);
}

/* 2. Hero: Neo-Card Parallax Animation */
.card-parallax-wrap {
    perspective: 1000px;
    display: inline-block;
    padding: 20px;
}

.neo-card-frame {
    width: 380px;
    height: 240px;
    position: relative;
    transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
    cursor: grab;
}

.neo-card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: linear-gradient(135deg, #161618, #000);
    border: 1px solid var(--border-glass);
    backface-visibility: hidden;
    padding: 25px;
    text-align: left;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.card-logo { font-size: 1.5rem; font-weight: 800; position: absolute; top: 25px; left: 25px; color: var(--teal-primary); }
.card-chip { width: 45px; height: 35px; background: #e0ac10; border-radius: 5px; position: absolute; top: 70px; left: 25px; }
.card-number { font-size: 1.2rem; font-family: 'Courier New', monospace; position: absolute; bottom: 65px; left: 25px; letter-spacing: 2px; }
.card-holder { font-size: 0.8rem; text-transform: uppercase; position: absolute; bottom: 25px; left: 25px; }
.card-expiry { font-size: 0.8rem; position: absolute; bottom: 25px; right: 25px; }

@keyframes cardFloat {
    0%, 100% { transform: rotateY(0deg) rotateX(10deg); }
    50% { transform: rotateY(15deg) rotateX(-5deg); }
}

/* 3. Global Glassmorphism Panels */
.bg-glassmorphic {
    background: var(--bg-glass-overlay);
    backdrop-filter: blur(10px);
}

.feature-panel {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    transition: 0.3s ease;
}

.feature-panel:hover {
    transform: translateY(-5px);
    border-color: var(--teal-primary);
    background: rgba(0, 255, 204, 0.02);
}

.icon-blob {
    width: 60px;
    height: 60px;
    background: rgba(0, 255, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
}

/* 4. Glass Feed Panel (Attraction Feature) */
.glass-feed-panel {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    height: 300px;
    display: flex;
    flex-direction: column;
}

.activity-feed {
    overflow-y: hidden;
    flex-grow: 1;
}

.feed-item {
    background: rgba(0,0,0,0.3);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.5s ease-out;
}

.feed-item.active {
    opacity: 1;
    border-left: 2px solid var(--teal-primary);
}

/* New Item Entry Animation */
.feed-item-new {
    animation: feedItemFadeIn 0.5s ease-out;
}

@keyframes feedItemFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Footer Section */
.bg-glass-dark {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}
/* Video Modal Special Effects */
#demoVideoModal .modal-backdrop.show {
    backdrop-filter: blur(15px);
    background-color: rgba(0, 0, 0, 0.9);
}

.video-container-glow {
    position: relative;
    box-shadow: 0 0 50px rgba(0, 255, 204, 0.3);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 204, 0.2);
}

.video-container-glow video {
    display: block;
    outline: none;
}

/* Customizing the Play Button Icon in Hero */
.fa-play-circle {
    filter: drop-shadow(0 0 5px var(--teal-primary));
}
/* Mobile Mockup Styles */
.mobile-mockup-wrap {
    position: relative;
    display: inline-block;
    padding: 20px;
}

.phone-frame {
    width: 300px;
    border: 12px solid #1a1a1c;
    border-radius: 45px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
    transform: rotate(-5deg); /* Slight tilt for style */
    transition: transform 0.5s ease;
}

.phone-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* Ensure video fits perfectly */
.phone-frame video {
    display: block;
    object-fit: cover;
}