/* Complete new design CSS - Part 1 of 2 */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,600,700,800,900&display=swap');

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #1A0B2E;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.7;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.08;
    animation: morph 40s ease-in-out infinite;
}

.shape-1 {
    width: 800px;
    height: 800px;
    background: #4B0082;
    top: -300px;
    left: -300px;
}

.shape-2 {
    width: 700px;
    height: 700px;
    background: #8A2BE2;
    top: 20%;
    right: -250px;
    animation-delay: 10s;
}

.shape-3 {
    width: 900px;
    height: 900px;
    background: #9F4FFF;
    bottom: -350px;
    left: 20%;
    animation-delay: 20s;
}

.shape-4 {
    width: 600px;
    height: 600px;
    background: #00FF94;
    bottom: 10%;
    right: 10%;
    animation-delay: 25s;
}

@keyframes morph {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(30px, 50px) scale(1.05); }
}

/* Top Notification Bar */
:root {
    --notification-bar-height: 48px;
    --notification-bar-height-mobile: 36px;
    --nav-height-mobile: 70px; /* 20px top padding + ~30px content + 20px bottom padding */
}

.top-notification-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.95) 0%, rgba(159, 79, 255, 0.95) 100%);
    backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    height: var(--notification-bar-height);
    box-sizing: border-box;
}

.top-notification-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.notification-content {
    max-width: 1400px;
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.notification-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.notification-icon {
    font-size: 18px;
    animation: pulse-wolf 2s ease-in-out infinite;
}

@keyframes pulse-wolf {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.notification-text strong {
    color: #fff;
    font-weight: 800;
}

.notification-link {
    color: #00FF94;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.notification-link:hover {
    color: #00E085;
    transform: translateX(3px);
}

.notification-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.notification-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.notification-close svg {
    width: 18px;
    height: 18px;
}

/* Responsive Notification Bar */
@media (max-width: 768px) {
    .top-notification-bar {
        padding: 10px 0;
        height: var(--notification-bar-height-mobile);
    }
    
    .notification-content {
        padding: 0 50px 0 20px;
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .notification-text {
        font-size: 11px;
        flex: 1;
        min-width: 0;
        line-height: 1.4;
    }
    
    .notification-icon {
        font-size: 14px;
        flex-shrink: 0;
    }
    
    .notification-link {
        font-size: 11px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .notification-close {
        right: 10px;
        padding: 4px;
        top: 50%;
    }
    
    .notification-close svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .top-notification-bar {
        padding: 8px 0;
        height: var(--notification-bar-height-mobile);
    }
    
    .notification-content {
        padding: 0 40px 0 15px;
        gap: 8px;
    }
    
    .notification-text {
        font-size: 10px;
        line-height: 1.3;
    }
    
    .notification-icon {
        font-size: 12px;
    }
    
    .notification-link {
        font-size: 10px;
    }
    
    .notification-close {
        right: 8px;
        padding: 3px;
    }
    
    .notification-close svg {
        width: 12px;
        height: 12px;
    }
}

/* Navigation */
.nav {
    position: fixed;
    top: var(--notification-bar-height);
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(26, 10, 46, 0.95);
    backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: top 0.3s ease;
}

.nav.no-notification {
    top: 0;
}

@media (max-width: 768px) {
    .nav {
        top: var(--notification-bar-height-mobile);
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.brand-icon {
    font-size: 32px;
    filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.6));
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    color: #fff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-item {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00FF94;
    transition: width 0.3s;
}

.nav-item:hover {
    color: #fff;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 12px 28px;
    background: #00FF94;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 255, 148, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    background: #00E085;
    box-shadow: 0 8px 30px rgba(0, 255, 148, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 150px 0 80px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 70vh;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(138, 43, 226, 0.3);
    border: 1px solid rgba(159, 79, 255, 0.4);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #00FF94;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-heading {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Satoshi', sans-serif;
    letter-spacing: -2px;
}

.text-gradient {
    background: linear-gradient(135deg, #9F4FFF 0%, #00FF94 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 540px;
}

@media (max-width: 1200px) {
    .hero-text {
        max-width: 480px;
        font-size: 17px;
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #00FF94;
    color: #000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.4s;
    box-shadow: 0 8px 30px rgba(0, 255, 148, 0.4);
}

.btn-main:hover {
    transform: translateY(-3px);
    background: #00E085;
    box-shadow: 0 12px 40px rgba(0, 255, 148, 0.6);
}

.btn-main svg {
    transition: transform 0.3s;
}

.btn-main:hover svg {
    transform: translateX(5px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-metrics {
    display: flex;
    gap: 50px;
}

.metric {
    text-align: center;
}

.metric-num {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #9F4FFF 0%, #00FF94 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* See new-style-2.css for remaining styles */
