/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 25%, #2a2f3e 50%, #1e2332 75%, #0f1419 100%);
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

:root {
    --primary-blue: #3b82f6;
    --secondary-blue: #1e40af;  
    --accent-blue: #60a5fa;
    --dark-blue: #1e3a8a;
    --light-blue: #93c5fd;
    --purple: #8b5cf6;
    --green: #10b981;
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

.tagline {
    font-size: 0.75rem;
    color: var(--light-blue);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: -5px;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
    to { text-shadow: 0 0 30px rgba(59, 130, 246, 0.8), 0 0 40px rgba(139, 92, 246, 0.3); }
}

.login-btn {
    padding: 12px 24px;
    border: 1px solid var(--primary-blue);
    background: var(--glass-bg);
    color: white;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.login-btn:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Animated Background */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    filter: blur(60px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 60%;
    animation-delay: 4s;
    background: linear-gradient(135deg, #8b5cf6 0%, #10b981 100%);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--primary-blue);
    animation: pulse 2s ease-in-out infinite;
}

.node-1 { top: 30%; left: 20%; animation-delay: 0s; }
.node-2 { top: 50%; right: 30%; animation-delay: 0.5s; }
.node-3 { bottom: 40%; left: 40%; animation-delay: 1s; }
.node-4 { top: 70%; right: 20%; animation-delay: 1.5s; }

.connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    opacity: 0.6;
    animation: flow 3s ease-in-out infinite;
}

.conn-1 {
    top: 30%;
    left: 20%;
    width: 300px;
    transform: rotate(25deg);
}

.conn-2 {
    top: 50%;
    left: 30%;
    width: 250px;
    transform: rotate(-30deg);
    animation-delay: 1s;
}

.conn-3 {
    bottom: 40%;
    left: 40%;
    width: 200px;
    transform: rotate(45deg);
    animation-delay: 2s;
}

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

@keyframes flow {
    0% { opacity: 0; }
    50% { opacity: 0.8; }
    100% { opacity: 0; }
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--light-blue);
    border-radius: 50%;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; animation-delay: 6s; }
.particle:nth-child(5) { left: 90%; animation-delay: 8s; }

@keyframes particleFloat {
    0% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% { 
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% { 
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
    100% { 
        transform: translateY(0) scale(0);
        opacity: 0;
    }
}

/* Search Container */
.search-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    max-width: 800px;
    width: 100%;
}

.hero-text {
    text-align: center;
    margin-bottom: 20px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    line-height: 1.2;
    animation: slideUp 1s ease-out;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--light-blue);
    opacity: 0.9;
    font-weight: 400;
    animation: slideUp 1s ease-out 0.2s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 16px 60px 16px 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 600px;
    transition: all 0.3s ease;
    animation: slideUp 1s ease-out 0.4s both;
}

.search-box:hover {
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.search-box:focus-within {
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.3);
    border-color: var(--primary-blue);
}

.main-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1.1rem;
    color: white;
    font-weight: 400;
}

.main-input::placeholder {
    color: var(--light-blue);
    opacity: 0.7;
}

.send-btn {
    position: absolute;
    right: 8px;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.6);
}

.send-btn:active {
    transform: scale(0.95);
}

/* Feature Pills */
.feature-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideUp 1s ease-out 0.6s both;
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pill:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.pill.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-blue);
}

.more-pill {
    background: rgba(139, 92, 246, 0.2);
    border-color: var(--purple);
}

/* Sections */
.about-section,
.utility-section,
.features-section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--light-blue);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.divider {
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto 30px;
    border-radius: 2px;
}

/* AI Features Grid */
.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.ai-feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ai-feature-card:hover::before {
    transform: scaleX(1);
}

.ai-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
}

.ai-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.ai-feature-card p {
    color: var(--light-blue);
    line-height: 1.6;
    opacity: 0.9;
}

/* Utility Grid */
.utility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.utility-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.utility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.utility-card:hover::before {
    transform: scaleX(1);
}

.utility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.25);
    border-color: var(--primary-blue);
}

.utility-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
}

.utility-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.utility-card p {
    color: var(--light-blue);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.utility-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-tag {
    font-size: 0.85rem;
    color: var(--accent-blue);
    font-weight: 500;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    position: relative;
    height: 350px;
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(59, 130, 246, 0.3);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.private-ai .card-background {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
}

.uncensored-ai .card-background {
    background: linear-gradient(135deg, var(--purple) 0%, var(--dark-blue) 100%);
}

.card-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
}

.card-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Tokenomics Section */
.tokenomics-section {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.tokenomics-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Contract Address */
.contract-address {
    margin-bottom: 60px;
}

.contract-address h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.ca-display {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    background: var(--glass-bg);
    border: 1px solid var(--primary-blue);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    backdrop-filter: blur(20px);
}

.ca-display:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.ca-label {
    font-weight: 700;
    color: var(--accent-blue);
}

.ca-address {
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: white;
}

.token-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.token-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 50px 40px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.token-card:hover::before {
    transform: scaleX(1);
}

.token-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.25);
    border-color: var(--primary-blue);
}

.token-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.token-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.token-desc {
    font-size: 1rem;
    color: var(--light-blue);
    font-weight: 500;
    opacity: 0.9;
}

.launchpad-info {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 60px 50px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.launchpad-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.2);
    border-color: var(--primary-blue);
}

.launchpad-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
}

.launchpad-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.launchpad-logo img {
    width: 60px;
    height: 60px;
    border-radius: 15px;
}

.launchpad-logo span {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.launchpad-info p {
    color: var(--light-blue);
    margin-bottom: 40px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.launch-btn {
    padding: 18px 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.launch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(59, 130, 246, 0.5);
}

/* Modal Styles */
.chat-modal, .login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.chat-container, .login-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    width: 90%;
    max-width: 550px;
    max-height: 80vh;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    position: relative;
}

.chat-header, .login-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.chat-header h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
}

.status-indicator {
    color: var(--green);
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--light-blue);
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    color: white;
}

.chat-messages {
    height: 350px;
    overflow-y: auto;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.welcome-message p {
    background: var(--gradient-primary);
    padding: 15px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    color: white;
    font-weight: 500;
}

.chat-input-container {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.chat-input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    outline: none;
    background: var(--glass-bg);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.chat-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.chat-input::placeholder {
    color: var(--light-blue);
    opacity: 0.7;
}

.chat-send-btn {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.chat-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.5);
}

.chat-send-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ai-status {
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
}

.status-text {
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 15px;
    color: var(--green);
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-text.thinking {
    background: rgba(139, 92, 246, 0.2);
    color: var(--purple);
    border-color: rgba(139, 92, 246, 0.3);
}

.status-text.error {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.login-form input {
    padding: 18px 25px;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    outline: none;
    font-size: 1rem;
    background: var(--glass-bg);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.login-form input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.login-form input::placeholder {
    color: var(--light-blue);
    opacity: 0.7;
}

.login-submit-btn {
    padding: 18px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.signup-link {
    margin-top: 25px;
    text-align: center;
}

.signup-link a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.signup-link a:hover {
    text-decoration: underline;
}

.signup-link p {
    color: var(--light-blue);
}

/* Message Styles */
.message {
    margin: 15px 0;
    max-width: 80%;
    word-wrap: break-word;
}

.user-message {
    background: var(--gradient-primary);
    color: white;
    padding: 15px 20px;
    border-radius: 20px 20px 8px 20px;
    margin-left: auto;
    font-weight: 500;
}

.ai-message {
    background: rgba(59, 130, 246, 0.2);
    color: white;
    padding: 15px 20px;
    border-radius: 20px 20px 20px 8px;
    margin-right: auto;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.typing-indicator {
    background: rgba(139, 92, 246, 0.2);
    color: var(--purple);
    padding: 15px 20px;
    border-radius: 20px;
    margin: 15px auto 15px 0;
    max-width: 80%;
    font-style: italic;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Animations */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.copy-success {
    animation: copyFeedback 0.6s ease-out;
}

@keyframes copyFeedback {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); background: var(--green); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .logo h1 {
        font-size: 2.2rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .search-box {
        width: 95%;
        padding: 14px 50px 14px 20px;
    }
    
    .feature-pills {
        gap: 8px;
    }
    
    .pill {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .ai-features-grid,
    .utility-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        height: 300px;
    }
    
    .token-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ca-display {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .search-box {
        padding: 12px 45px 12px 16px;
    }
    
    .send-btn {
        width: 40px;
        height: 40px;
        right: 6px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .token-number {
        font-size: 2.8rem;
    }
    
    .ca-address {
        font-size: 0.8rem;
    }
    
    .ai-feature-card,
    .utility-card,
    .token-card {
        padding: 30px 20px;
    }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}
