:root {
    --primary-color: #6304cf;
    --primary-hover: #7a0eff;
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(99, 4, 207, 0.2);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
    scroll-padding-top: 120px;
}

body {
    font-family: 'Inter', -apple-system-font, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

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

.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(99, 4, 207, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(99, 4, 207, 0.1) 0%, transparent 50%);
    animation: gradient-shift 15s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), rgba(99, 4, 207, 0.3));
    opacity: 0.1;
    filter: blur(60px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 10%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 15%;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    left: 50%;
    animation: float 30s ease-in-out infinite;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 30%;
    animation: float 22s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Activity Ticker */
.activity-ticker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(99, 4, 207, 0.25);
    border-bottom: 2px solid rgba(99, 4, 207, 0.4);
    padding: 0.75rem 0;
    overflow: hidden;
    z-index: 1001;
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ticker-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    white-space: nowrap;
}

.ticker-icon {
    font-size: 1.2rem;
    margin-left: 2rem;
    flex-shrink: 0;
    animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.ticker-messages {
    display: flex;
    gap: 3rem;
    animation: scroll-ticker 30s linear infinite;
    will-change: transform;
}

@keyframes scroll-ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-message {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

.ticker-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.ticker-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 50px;
    width: 100%;
    max-width: 100vw;
    padding: 1.5rem 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    overflow-x: hidden;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.user-earned {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 500;
    position: relative;
}

.earned-amount {
    color: #6304cf !important;
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    min-width: 90px;
    display: inline-block;
    text-align: left;
    font-variant-numeric: tabular-nums;
}

.earned-amount span {
    color: #6304cf !important;
    font-weight: 700 !important;
    display: inline-block;
    min-width: 40px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.btn-earn-sol {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--text-primary);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-left: -10px;
    flex-shrink: 0;
    position: relative;
}

.btn-earn-sol:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 4, 207, 0.4);
}

.earned-label {
    color: var(--text-secondary) !important;
    font-size: 1.3rem !important;
    font-weight: 500 !important;
}

.earned-amount {
    color: #6304cf !important;
    font-weight: 700 !important;
    font-size: 1.3rem !important;
}

.earned-amount span {
    color: #6304cf !important;
    font-weight: 700 !important;
}

.logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: rotate(360deg) scale(1.1);
}

.logo-text {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-primary);
    text-transform: lowercase;
    letter-spacing: -0.02em;
}

.logo-suffix {
    color: rgba(99, 4, 207, 0.4);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    pointer-events: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-primary);
}

.btn-outlined {
    background: transparent !important;
    border: 2px solid var(--primary-color);
    color: transparent;
    -webkit-text-stroke: 1.5px var(--primary-color);
}

.btn-outlined:hover {
    background: var(--primary-color) !important;
    color: var(--text-primary) !important;
    -webkit-text-stroke: none;
    border-color: var(--primary-color);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 4, 207, 0.4);
}

.btn-primary:active {
    transform: translateY(0) scale(1);
    box-shadow: 0 5px 15px rgba(99, 4, 207, 0.3);
}

.btn-primary:active::before {
    width: 0;
    height: 0;
}

.btn-primary:focus {
    outline: none;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.nav-cta {
    margin-left: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10rem 2rem 4rem;
    position: relative;
    overflow-x: hidden;
    scroll-margin-top: 160px;
    margin-top: 0;
}

/* New Hero Design */
.hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float-orb 20s ease-in-out infinite;
}

.hero-gradient-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 4, 207, 0.6), transparent);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 4, 207, 0.4), transparent);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.hero-gradient-orb.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 4, 207, 0.3), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content-new {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 4, 207, 0.1);
    border: 1px solid rgba(99, 4, 207, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-text .hero-badge {
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title-new {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.hero-title-new .gradient-text {
    background: linear-gradient(135deg, #6304cf 0%, #9333ea 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-new {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 3rem;
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-buttons-new {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6304cf 0%, #9333ea 100%);
    color: var(--text-primary);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(99, 4, 207, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 4, 207, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(99, 4, 207, 0.1);
    border: 1px solid rgba(99, 4, 207, 0.3);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(99, 4, 207, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-platforms {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.platform-badge:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.platform-badge svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.platform-badge:hover svg {
    transform: scale(1.2) rotate(5deg);
}

.platform-badge:first-child svg {
    color: #229ED9;
}

.platform-badge:first-child:hover {
    background: rgba(34, 158, 217, 0.2);
    border-color: rgba(34, 158, 217, 0.4);
    box-shadow: 0 8px 20px rgba(34, 158, 217, 0.3);
}

.platform-badge:nth-child(2) svg {
    color: #5865F2;
}

.platform-badge:nth-child(2):hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.4);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.3);
}

.platform-badge:last-child svg {
    color: #ffffff;
}

.platform-badge:last-child:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

/* Bot Demo Section */
.bot-demo-section {
    padding: 6rem 2rem;
    background: var(--bg-darker);
    position: relative;
}

.demo-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.demo-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.demo-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.demo-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.bot-demo-container-new {
    position: relative;
    width: 100%;
    perspective: 1000px;
}

.bot-demo-glow-new {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 4, 207, 0.3), transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: pulse-glow 4s ease-in-out infinite;
}

.bot-demo-glow-secondary-new {
    position: absolute;
    top: -30%;
    right: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, rgba(99, 4, 207, 0.2), transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: pulse-glow 6s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.bot-demo-new {
    position: relative;
    z-index: 1;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(99, 4, 207, 0.2);
    transition: all 0.3s ease;
}

.bot-demo-new:hover {
    border-color: rgba(99, 4, 207, 0.4);
    box-shadow: 0 25px 70px rgba(99, 4, 207, 0.3), 0 0 0 1px rgba(99, 4, 207, 0.3);
}

.demo-header-new {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-controls-new {
    display: flex;
    gap: 0.5rem;
}

.demo-control-new {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.demo-control-red {
    background: #ff5f56;
}

.demo-control-yellow {
    background: #ffbd2e;
}

.demo-control-green {
    background: #27c93f;
}

.demo-title-new {
    flex: 1;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.demo-messages-new {
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.demo-messages-new::-webkit-scrollbar {
    width: 6px;
}

.demo-messages-new::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.demo-messages-new::-webkit-scrollbar-thumb {
    background: rgba(99, 4, 207, 0.5);
    border-radius: 3px;
}

.demo-messages-new::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 4, 207, 0.7);
}

.demo-welcome-new {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-secondary);
}

.welcome-text-new {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.welcome-subtext-new {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.demo-buttons-new {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.demo-button-new {
    flex: 1;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 4, 207, 0.2), rgba(99, 4, 207, 0.1));
    border: 1px solid rgba(99, 4, 207, 0.4);
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.demo-button-new:hover {
    background: linear-gradient(135deg, rgba(99, 4, 207, 0.3), rgba(99, 4, 207, 0.2));
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 4, 207, 0.3);
}

.demo-button-new:active {
    transform: translateY(0);
}

/* Message styles for demo */
.demo-message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    animation: slideInMessage 0.3s ease-out;
}

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

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-bubble {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    line-height: 1.5;
}

.user-bubble {
    background: rgba(99, 4, 207, 0.2);
    border: 1px solid rgba(99, 4, 207, 0.3);
    color: var(--text-primary);
}

.bot-bubble {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.bot-bubble .bot-text {
    white-space: pre-line;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
}

.chart-bubble {
    padding: 0;
    background: transparent;
    border: none;
}

.chart-image {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 0;
}

.hero-text {
    z-index: 1;
    position: relative;
    width: 100%;
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
    margin-top: 0;
    padding-top: 0;
}

.hero-title-outlined {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-color);
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: inline-block;
    text-shadow: none;
}


.gradient-text {
    background: linear-gradient(135deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discord-text {
    color: #5865F2;
}

.telegram-text {
    color: #229ED9;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 600px;
    padding: 0;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    will-change: opacity, transform;
}

/* Bot Demo Container */
.bot-demo-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    perspective: 1000px;
    animation: float-card 6s ease-in-out infinite;
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    will-change: opacity, transform;
}

.bot-demo-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 4, 207, 0.3), rgba(99, 4, 207, 0.1));
    border-radius: 24px;
    filter: blur(60px);
    animation: pulse-slow 3s ease-in-out infinite;
    z-index: 0;
}

.bot-demo-glow-secondary {
    position: absolute;
    inset: -16px;
    background: linear-gradient(135deg, rgba(99, 4, 207, 0.1), rgba(99, 4, 207, 0.05));
    border-radius: 24px;
    filter: blur(40px);
    z-index: 0;
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.bot-demo {
    position: relative;
    z-index: 10;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(99, 4, 207, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    overflow: visible;
    max-height: none;
    display: flex;
    flex-direction: column;
}

.bot-demo:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 4, 207, 0.5);
}

.bot-demo-accent {
    position: absolute;
    right: -24px;
    bottom: -24px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    z-index: 1;
    animation: rotate-accent 10s linear infinite;
}

@keyframes rotate-accent {
    0% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1.2) rotate(360deg);
    }
}

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

/* Demo Header */
.demo-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.75rem;
}

.demo-controls {
    display: flex;
    gap: 0.5rem;
}

.demo-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.demo-control-red {
    background: #ef4444;
}

.demo-control-yellow {
    background: #f59e0b;
}

.demo-control-green {
    background: #10b981;
}

.demo-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Demo Messages */
.demo-messages {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
    overflow: visible;
    max-height: none;
    min-height: 200px;
    justify-content: center;
    overflow-y: visible;
    -webkit-overflow-scrolling: auto;
}

.demo-welcome {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--text-secondary);
}

.welcome-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.welcome-subtext {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.demo-message {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    animation: fadeInMessage 0.5s ease-out;
    animation-fill-mode: both;
}

.demo-message:nth-child(1) { animation-delay: 0.2s; }
.demo-message:nth-child(2) { animation-delay: 0.4s; }
.demo-message:nth-child(3) { animation-delay: 0.6s; }
.demo-message:nth-child(4) { animation-delay: 0.8s; }

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

.bot-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.user-avatar {
    background: rgba(255, 255, 255, 0.1);
}

.bot-avatar {
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-bubble {
    padding: 0.6rem;
    border-radius: 8px;
    max-width: 70%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.user-bubble {
    background: rgba(255, 255, 255, 0.05);
    max-width: 70%;
}

.bot-bubble {
    background: rgba(99, 4, 207, 0.2);
    border: 1px solid rgba(99, 4, 207, 0.3);
}

.chart-bubble {
    padding: 0.5rem;
    overflow: hidden;
}

.message-text {
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    word-break: break-all;
    overflow-wrap: break-word;
}

.bot-text {
    font-size: 0.7rem;
    font-family: 'Courier New', monospace;
    font-weight: 400;
    line-height: 1.5;
    white-space: pre-line;
}

.chart-placeholder {
    width: 100%;
    height: 120px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    padding: 0.5rem;
}

.chart-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    animation: fadeInImage 0.5s ease-out;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    gap: 4px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), rgba(99, 4, 207, 0.5));
    border-radius: 2px 2px 0 0;
    min-height: 8px;
    animation: growBar 1s ease-out;
}

@keyframes growBar {
    from {
        height: 0;
    }
}

/* Demo Input */
.demo-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-button {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(99, 4, 207, 0.2);
    border: 1px solid rgba(99, 4, 207, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Courier New', monospace;
}

.demo-button:hover {
    background: rgba(99, 4, 207, 0.3);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 4, 207, 0.3);
}

.demo-button:active {
    transform: translateY(0);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-in {
    animation: slideInRight 1s ease-out;
    transition: opacity 1.5s ease-out, transform 1.5s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sections */
section {
    padding: 8rem 2rem;
    position: relative;
    max-width: 100%;
    overflow-x: hidden;
}

/* Mobile Bot Demo Section - Hidden on Desktop */
.demo-mobile-section {
    display: none;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

/* Features Section */
.features {
    background: var(--bg-darker);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(99, 4, 207, 0.2);
    background: rgba(99, 4, 207, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(99, 4, 207, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 8rem 2rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.about-title-accent {
    color: var(--primary-color);
    position: relative;
}

.about-title-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    opacity: 0.3;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.about-features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.about-feature-item .feature-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.about-feature-content {
    flex: 1;
}

.about-feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.about-feature-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Comparison Table */
.comparison-table-container {
    margin: 3rem 0;
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table thead {
    background: rgba(0, 0, 0, 0.3);
}

.comparison-table th {
    padding: 1.25rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th:first-child {
    text-align: left;
    padding-left: 1.5rem;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-secondary);
    vertical-align: middle;
}

.comparison-table td.feature-name {
    text-align: left;
    padding-left: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.comparison-table .qutex-cell {
    color: #10b981;
}

.comparison-table .qutex-cell .qutex-value {
    color: #10b981;
    font-weight: 600;
}

.comparison-table .other-cell {
    color: var(--text-secondary);
}

.comparison-table .checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.table-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.table-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Mobile responsiveness for comparison table */
@media (max-width: 768px) {
    .comparison-table-container {
        display: none !important;
    }
}

.about-cta {
    margin-top: 3rem;
}

.btn-docs {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-docs svg {
    width: 20px;
    height: 20px;
}

/* Supported Chains Section */
.supported-chains {
    padding: 6rem 2rem;
    background: var(--bg-darker);
    text-align: center;
}

.chains-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.chains-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.chain-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
    min-width: 150px;
    transition: all 0.3s ease;
}

.chain-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 4, 207, 0.2);
}

.chain-logo-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    padding: 0.75rem;
}

.chain-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chain-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.more-chains-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 2rem;
}

/* Powerful Features Section */
.powerful-features {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.features-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.feature-card-new {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.feature-card-new:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 4, 207, 0.2);
}

.feature-icon-new {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

.feature-icon-new svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.feature-card-new h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card-new p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.learn-more-link {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    margin-top: auto;
}

.learn-more-link:hover {
    color: var(--primary-color);
}

.learn-more-link svg {
    width: 16px;
    height: 16px;
}

.features-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-channel {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-channel svg {
    width: 20px;
    height: 20px;
}

/* Servers Showcase Section */
.servers-showcase {
    padding: 5rem 2rem;
    background: var(--bg-darker);
}

.servers-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.servers-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.server-card {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 400px;
    margin: 0 auto;
}

.server-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 4, 207, 0.3);
    border-color: rgba(99, 4, 207, 0.4);
}

.server-banner {
    position: relative;
    height: 50%;
    overflow: hidden;
}

.server-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.server-pfp {
    position: absolute;
    bottom: -35px;
    left: 1.5rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(20, 50, 30, 0.95);
    border: 4px solid rgba(30, 30, 30, 0.9);
    padding: 16px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    overflow: visible;
}

.server-pfp-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-width: 100%;
    max-height: 100%;
}

.server-details {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    background: rgba(30, 30, 30, 0.8);
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.server-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

.server-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    flex: 1;
}

.server-stats {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.server-stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.stat-indicator.stat-online {
    background: #10b981;
}

.stat-indicator.stat-members {
    background: var(--text-secondary);
}

.stat-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Commands Section */
.commands {
    background: var(--bg-darker);
}

/* Commands Carousel */
.commands-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-top: 3rem;
    padding: 1rem 0;
}

.commands-carousel-wrapper::before,
.commands-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.commands-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-darker), transparent);
}

.commands-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-darker), transparent);
}

.commands-carousel {
    display: flex;
    gap: 1.5rem;
    animation: scroll-commands 40s linear infinite;
    will-change: transform;
    width: fit-content;
}

.commands-carousel:hover {
    animation-play-state: paused;
}

@keyframes scroll-commands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.command-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 280px;
    max-width: 320px;
}

.command-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 4, 207, 0.2);
}

.command-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.command-name {
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
}

.command-category {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
    background: rgba(99, 4, 207, 0.2);
    border-radius: 6px;
    color: var(--primary-color);
}

.command-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.faq-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item-open {
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    user-select: none;
}

.faq-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-item-open .faq-icon-wrapper {
    background: rgba(99, 4, 207, 0.2);
    color: var(--primary-color);
}

.faq-icon-wrapper svg {
    width: 20px;
    height: 20px;
}

.faq-question-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-item-open .faq-question-text {
    color: var(--primary-color);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item-open .faq-chevron {
    color: var(--primary-color);
    transform: rotate(180deg);
}

.faq-answer {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-answer-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(99, 4, 207, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.faq-answer-icon svg {
    width: 20px;
    height: 20px;
}

.faq-answer p {
    flex: 1;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
}

.btn-faq {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-faq svg:first-child {
    width: 20px;
    height: 20px;
}

.btn-faq svg:last-child {
    width: 16px;
    height: 16px;
}

/* Final CTA Section */
.final-cta {
    padding: 8rem 2rem;
    background: var(--bg-dark);
    text-align: center;
}

.cta-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.cta-logo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-align: center;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.btn-telegram {
    background: #229ED9;
}

.btn-telegram:hover {
    background: #1a7da8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 158, 217, 0.4);
}

.btn-discord {
    background: #5865F2;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
}

.btn-x {
    background: #000000;
}

.btn-x:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-cta svg:first-child {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-cta svg:last-child {
    width: 20px;
    height: 20px;
}

.btn-cta:active {
    transform: translateY(0) scale(1);
}

.btn-cta:focus {
    outline: none;
}

.cta-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.cta-stat-item {
    text-align: center;
}

.cta-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cta-stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
}

.cta-stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(99, 4, 207, 0.1);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .nav-links {
        display: none !important;
    }

    @keyframes slideInFromRight {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(0);
        }
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .mobile-logo-small {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-logo-text {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-primary);
    }

    .mobile-menu-close {
        background: transparent;
        border: none;
        color: var(--text-primary);
        cursor: pointer;
        padding: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-close:hover {
        opacity: 0.7;
    }

    .mobile-menu-close svg {
        width: 24px;
        height: 24px;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        text-align: left;
        color: var(--text-primary);
        text-decoration: none;
        position: relative;
        display: flex;
        align-items: center;
        transition: background-color 0.2s ease, color 0.2s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--primary-color);
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .nav-link.active::before {
        opacity: 1;
    }

    .nav-link.active {
        background-color: rgba(99, 4, 207, 0.1);
        color: var(--text-primary);
    }

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.05);
        color: var(--text-primary);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link-cta {
        margin-top: 1rem;
        background: var(--primary-color);
        border-radius: 8px;
        text-align: center;
        justify-content: center;
        font-weight: 600;
    }

    .nav-link-cta::before {
        display: none;
    }

    .nav-link-cta:hover {
        background: var(--primary-hover);
    }

    .mobile-menu-toggle {
        display: none !important;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .user-earned {
        font-size: 1rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .btn-earn-sol {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-left: 0;
    }
    
    .earned-label {
        font-size: 1rem;
    }

    .earned-amount {
        font-size: 1rem !important;
        color: #6304cf !important;
        font-weight: 700 !important;
    }
    
    .earned-amount span {
        color: #6304cf !important;
        font-weight: 700 !important;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }

    .logo-container {
        gap: 0.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        margin-top: 2rem;
        padding-top: 1rem;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
        line-height: 1.7;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero-text {
        padding: 0 0.5rem;
        margin-top: 1rem;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .animate-fade-in,
    .animate-slide-in {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    section {
        padding-top: 6rem;
    }

    .navbar {
        padding: 1rem 0;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding-top: 8rem !important;
        padding-bottom: 4rem;
        min-height: auto;
        overflow-x: hidden;
        margin-top: 0;
        position: relative;
        align-items: flex-start;
    }

    .hero-content {
        margin-top: 1rem;
    }

    .hero-text {
        margin-top: 2rem;
        padding: 0 1rem;
        width: 100%;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10;
    }

    .hero-title {
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero-subtitle {
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        display: none;
    }

    /* Mobile Bot Demo Section */
    .demo-mobile-section {
        display: block;
        padding: 3rem 1rem;
        background: var(--bg-darker);
    }

    .bot-demo-container-mobile {
        position: relative;
        width: 100%;
        max-width: 100%;
        perspective: 1000px;
        animation: none;
    }

    .bot-demo-container {
        display: none;
    }

    .bot-demo {
        padding: 1.25rem;
        max-height: none;
        display: flex;
        flex-direction: column;
        overflow: visible;
    }

    .demo-button {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(99, 4, 207, 0.3);
    }

    .demo-buttons {
        gap: 1rem;
        padding-top: 1.25rem;
    }

    .welcome-text {
        font-size: 1.2rem;
    }

    .welcome-subtext {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .demo-messages {
        min-height: 180px;
        padding: 1rem 0;
        overflow-y: visible;
        overflow-x: hidden;
        flex: 1;
        justify-content: flex-start;
        max-height: none;
    }

    .message-text {
        font-size: 0.85rem;
    }

    .bot-text {
        font-size: 0.75rem;
    }

    section {
        padding: 4rem 1rem;
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
        padding: 0 1rem;
        overflow-x: hidden;
    }


    .message-bubble {
        max-width: 85%;
    }

    .bot-text {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .commands-carousel-wrapper {
        margin-top: 2rem;
    }
    
    .command-card {
        min-width: 260px;
        max-width: 280px;
    }
    
    .commands-grid {
        grid-template-columns: 1fr;
    }

    .features-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
    }

    .cta-stats {
        gap: 2rem;
    }

    .cta-stat-number {
        font-size: 2rem;
    }

    .cta-stat-divider {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-container {
        padding: 0 0.75rem;
    }

    .hero {
        padding-top: 7rem !important;
        padding-bottom: 3rem;
        min-height: auto;
        position: relative;
        align-items: flex-start;
    }

    .hero-content {
        margin-top: 0.5rem;
    }

    .hero-title {
        font-size: 2.2rem !important;
        margin-bottom: 1.5rem;
        line-height: 1.3;
        padding-top: 1rem;
        margin-top: 1rem;
        visibility: visible !important;
        opacity: 1 !important;
        color: var(--text-primary) !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 2.5rem;
        padding: 0 0.75rem;
        line-height: 1.7;
        visibility: visible !important;
        opacity: 1 !important;
        color: var(--text-secondary) !important;
    }

    .hero-text {
        padding: 0 0.5rem;
        margin-top: 2rem;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 10;
        position: relative;
    }

    .animate-fade-in,
    .animate-slide-in {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-height: 48px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(99, 4, 207, 0.3);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }

    .features-grid-new {
        grid-template-columns: 1fr;
    }

    .bot-demo-container {
        max-width: 100%;
        margin: 2rem auto 0;
    }

    .bot-demo {
        padding: 1rem;
        max-height: 65vh;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .demo-button {
        padding: 1.1rem 1rem;
        font-size: 1rem;
        min-height: 50px;
    }

    .demo-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .welcome-text {
        font-size: 1.1rem;
    }

    .welcome-subtext {
        font-size: 0.95rem;
    }

    .demo-messages {
        min-height: 150px;
        overflow-y: visible;
        overflow-x: hidden;
        flex: 1;
        justify-content: flex-start;
        max-height: none;
    }

    .bot-demo {
        max-height: none;
        overflow: visible;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .about-title {
        font-size: 1.75rem;
    }

    .user-earned {
        font-size: 0.9rem;
        gap: 0.4rem;
    }

    .earned-label {
        font-size: 0.9rem;
    }

    .earned-amount {
        font-size: 0.9rem !important;
    }

    .btn-earn-sol {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

    .hero {
        padding-top: 9rem;
        padding-bottom: 3rem;
    }

    .hero-title-new {
        font-size: 2.5rem;
    }

    .hero-subtitle-new {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .hero-stat-divider {
        width: 100%;
        height: 1px;
    }

    .hero-buttons-new {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-gradient-orb.orb-1,
    .hero-gradient-orb.orb-2,
    .hero-gradient-orb.orb-3 {
        width: 300px;
        height: 300px;
    }

    .activity-ticker {
        top: 0;
        padding: 0.5rem 0;
        background: rgba(99, 4, 207, 0.3);
        border-bottom: 2px solid rgba(99, 4, 207, 0.5);
    }

    .navbar {
        top: 45px;
    }

    .hero {
        padding-top: 11rem;
        margin-top: 0;
    }

    .ticker-icon {
        margin-left: 1rem;
        font-size: 1rem;
    }

    .ticker-message {
        font-size: 0.75rem;
    }

    .ticker-messages {
        gap: 2rem;
    }

    .servers-showcase {
        padding: 3rem 1rem;
    }

    .servers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .server-card {
        max-width: 100%;
    }

    .server-banner {
        height: 100px;
    }

    .server-pfp {
        width: 70px;
        height: 70px;
        bottom: -30px;
        left: 1rem;
        border-radius: 50%;
    }

    .server-details {
        padding: 2.5rem 1rem 1rem 1rem;
    }

    .server-name {
        font-size: 1.25rem;
    }

    .server-description {
        font-size: 0.875rem;
    }

    .server-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .bot-demo-section {
        padding: 4rem 1rem;
    }

    .demo-section-title {
        font-size: 2rem;
    }

    .demo-section-subtitle {
        font-size: 1rem;
    }

    .bot-demo-new {
        padding: 1rem;
    }

    .demo-messages-new {
        min-height: 150px;
        max-height: 300px;
    }

    section {
        padding-top: 5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .nav-links {
        top: 70px;
        padding: 1.5rem;
    }

    .nav-link {
        font-size: 1rem;
        padding: 1rem 0;
    }
}

/* Earn SOL Page Styles */
.earn-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    text-align: center;
}

.earn-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.earn-hero .hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--bg-darker);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 4, 207, 0.2);
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* Earn Benefits Section */
.earn-benefits {
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.benefit-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 4, 207, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 4, 207, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Activity Info Section */
/* Partnership Form Section */
.partnership-form-section {
    padding: 5rem 0;
    background: var(--bg-darker);
}

.partnership-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem 2.5rem;
}

.partnership-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.partnership-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label {
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #6304cf;
    box-shadow: 0 0 0 3px rgba(99, 4, 207, 0.1);
    background: rgba(20, 20, 20, 0.9);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-partnership {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6304cf 0%, #7c3aed 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 4, 207, 0.3);
}

.btn-partnership:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 4, 207, 0.4);
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 100%);
}

.btn-partnership:active:not(:disabled) {
    transform: translateY(0);
}

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

.btn-partnership svg {
    width: 20px;
    height: 20px;
}

.form-message {
    display: none;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    margin-top: 0.5rem;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #10b981;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.activity-info {
    padding: 5rem 0;
    background: var(--bg-darker);
}

.activity-content {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .partnership-form-section {
        padding: 3rem 0;
    }

    .partnership-form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .partnership-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .form-input {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .btn-partnership {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

.activity-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.activity-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.activity-list li:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.activity-list li svg {
    flex-shrink: 0;
}

.activity-list li span {
    color: var(--text-primary);
    font-size: 1rem;
}

/* Mobile Responsiveness for Earn Page */
@media (max-width: 768px) {
    .earn-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .earn-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-text h2 {
        font-size: 2rem;
    }
    
    .activity-description {
        font-size: 1rem;
    }
}
