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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #0f0f0f;
    color: #ffffff;
    overflow-x: hidden;
    font-weight: 600;
}

/* Layout Container */
.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 240px;
    background: #1a1a1a;
    border-right: 1px solid #2a2a2a;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
}

.sidebar-header {
    padding: 20px 16px;
    border-bottom: 1px solid #2a2a2a;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 18px;
    color: #53fc18;
}

.logo-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.logo-text {
    height: 24px;
    flex-shrink: 0;
}

.logo-badge {
    background: #53fc18;
    color: #000000;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Navigation Menu */
.nav-menu {
    padding: 16px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #a0a0a0;
    position: relative;
}

.nav-item:hover {
    background: #252525;
    color: #ffffff;
}

.nav-item.active {
    background: #2a2a2a;
    color: #53fc18;
    border-right: 3px solid #53fc18;
}

.nav-item i {
    width: 20px;
    text-align: center;
}

.external-link .external-icon {
    margin-left: auto;
    opacity: 0.6;
    font-size: 12px;
}

.nav-divider {
    height: 1px;
    background: #2a2a2a;
    margin: 16px 0;
}

/* Popular Streams Section */
.popular-streams {
    margin-top: 24px;
    padding: 0 16px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.view-all {
    color: #53fc18;
    text-decoration: none;
    font-size: 12px;
    transition: opacity 0.2s ease;
}

.view-all:hover {
    opacity: 0.8;
}

.stream-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stream-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.stream-item:hover {
    opacity: 0.8;
}

.stream-avatar {
    position: relative;
    width: 32px;
    height: 32px;
}

.stream-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.live-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #53fc18;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
}

.stream-info {
    flex: 1;
    min-width: 0;
}

.stream-name {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stream-category {
    font-size: 11px;
    font-weight: 400;
    color: #a0a0a0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 240px;
    background: #0f0f0f;
}

/* Page System */
.page {
    display: none;
    min-height: 100vh;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.page.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

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

/* Kick Profile Style */
.kick-profile {
    margin-bottom: 24px;
}

.kick-profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.kick-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.kick-info {
    flex: 1;
}

.kick-name-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kick-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.kick-live-indicator {
    width: 8px;
    height: 8px;
    background: #53fc18;
    border-radius: 50%;
}

.kick-live-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #53fc18;
}

.kick-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.kick-badge {
    background: #2a2a2a;
    color: #a0a0a0;
    padding: 4px 12px;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: lowercase;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(83, 252, 24, 0.1), rgba(83, 252, 24, 0.05));
    border: 1px solid rgba(83, 252, 24, 0.3);
    color: #53fc18;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.text-gradient {
    background: linear-gradient(135deg, #53fc18, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #a0a0a0;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #53fc18;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: #45d915;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(83, 252, 24, 0.4);
}

.btn-secondary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #3a3a3a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: #4a4a4a;
    transform: translateY(-1px);
}

.hero-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #53fc18;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #a0a0a0;
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stream-gif {
    width: 420px;
    height: 320px;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 10px;
    border: 3px solid #2a2a2a;
    box-shadow: 
        0 0 0 2px #53fc18,
        0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.stream-gif::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #53fc18;
    z-index: 2;
}

.stream-gif::after {
    content: "LIVE";
    position: absolute;
    top: 15px;
    right: 15px;
    background: #53fc18;
    color: #000000;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    z-index: 3;
}

.gif-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #404040;
}

/* Page Content Styles */
.page-content {
    padding: 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Stream Layout - About Page */
.stream-layout {
    display: flex;
    height: 100vh;
    background: #0f0f0f;
    gap: 24px;
    padding: 24px;
    align-items: center;
    justify-content: center;
}

/* Stream Profile Section */
.stream-profile-section {
    flex: 1;
    max-width: none;
}

.stream-profile-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.stream-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.stream-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #53fc18;
}

.stream-title-area {
    flex: 1;
}

.stream-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.live-indicator-large {
    width: 12px;
    height: 12px;
    background: #53fc18;
    border-radius: 50%;
    flex-shrink: 0;
}

.live-text {
    font-size: 16px;
    font-weight: 600;
    color: #53fc18;
}

.stream-category {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.category-tag {
    background: #53fc18;
    color: #000000;
    padding: 4px 12px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.stream-viewers {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #a0a0a0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.stream-viewers i {
    color: #53fc18;
}

/* Feature Badges */
.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 20px;
    padding: 8px 16px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.feature-badge:hover {
    border-color: #53fc18;
    background: rgba(83, 252, 24, 0.1);
}

.feature-badge i {
    color: #53fc18;
    font-size: 14px;
}

/* About Text */
.about-text {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 24px;
    margin-top: 24px;
}

.about-text h2 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.about-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-action {
    margin-top: 24px;
    text-align: left;
}

.about-action .btn-primary {
    display: inline-flex;
    width: auto;
}

/* Chat Section */
.chat-section {
    width: 350px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    height: fit-content;
    min-height: 600px;
    align-self: center;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid #2a2a2a;
    background: #222222;
    border-radius: 12px 12px 0 0;
}

.chat-header i {
    color: #53fc18;
    font-size: 16px;
}

.chat-header span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    flex: 1;
}

.chat-viewers {
    background: #53fc18;
    color: #000000;
    padding: 4px 8px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    max-height: 500px;
}

.chat-message {
    margin-bottom: 12px;
    line-height: 1.4;
}

.chat-username {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    margin-right: 8px;
}

.chat-username.mod {
    color: #53fc18;
}

.chat-username.mod::after {
    content: "🛡";
    margin-left: 4px;
}

.chat-username.vip {
    color: #ff6b6b;
}

.chat-username.vip::after {
    content: "💎";
    margin-left: 4px;
}

.chat-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #e0e0e0;
    word-wrap: break-word;
}

.chat-input {
    display: flex;
    padding: 16px;
    border-top: 1px solid #2a2a2a;
    gap: 8px;
}

.chat-input input {
    flex: 1;
    background: #2a2a2a;
    border: 1px solid #404040;
    border-radius: 8px;
    padding: 8px 12px;
    color: #a0a0a0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
}

.chat-input input:focus {
    outline: none;
    border-color: #53fc18;
}

.chat-input button {
    background: #53fc18;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    color: #000000;
    cursor: not-allowed;
    opacity: 0.5;
}

.chat-input button i {
    font-size: 14px;
}

.page-header {
    text-align: center;
    margin-bottom: 64px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.page-header p {
    font-size: 18px;
    color: #a0a0a0;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.feature-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(83, 252, 24, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #53fc18, #2dd4bf);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon i {
    font-size: 24px;
    color: #000000;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.feature-card p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 48px;
    border: 1px solid #2a2a2a;
}

.mission-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    text-align: center;
}

.mission-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #a0a0a0;
    margin-bottom: 20px;
}

/* Tokenomics Styles */
.tokenomics-overview {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 64px;
    border: 1px solid #2a2a2a;
    text-align: center;
}

.token-info {
    margin-bottom: 32px;
}

.token-symbol {
    font-size: 36px;
    font-weight: 700;
    color: #53fc18;
    margin-bottom: 8px;
}

.token-name {
    font-size: 18px;
    color: #a0a0a0;
}

.token-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.token-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-label {
    font-size: 14px;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

/* Tax Breakdown */
.tax-breakdown {
    margin-bottom: 64px;
}

.tax-breakdown h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #ffffff;
    text-align: center;
}

.tax-chart {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #2a2a2a;
}

.tax-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.tax-item:last-child {
    margin-bottom: 0;
}

.tax-bar {
    flex: 1;
    height: 40px;
    background: linear-gradient(90deg, #53fc18, #2dd4bf);
    border-radius: 8px;
    position: relative;
    width: var(--percentage);
    display: flex;
    align-items: center;
    padding-left: 16px;
}

.tax-percentage {
    font-weight: 700;
    color: #000000;
}

.tax-label {
    min-width: 200px;
    color: #ffffff;
    font-weight: 500;
}

/* Distribution Schedule */
.distribution-schedule {
    margin-bottom: 64px;
}

.distribution-schedule h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #ffffff;
    text-align: center;
}

.distribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.distribution-item {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.2s ease;
}

.distribution-item:hover {
    transform: translateY(-2px);
}

.distribution-percentage {
    font-size: 36px;
    font-weight: 700;
    color: #53fc18;
    margin-bottom: 8px;
}

.distribution-label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.distribution-amount {
    font-size: 14px;
    color: #a0a0a0;
}

/* Mechanism Explanation */
.mechanism-explanation h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #ffffff;
    text-align: center;
}

.mechanism-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 32px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #53fc18, #2dd4bf);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.step-content p {
    color: #a0a0a0;
    line-height: 1.6;
}

/* Mobile Navbar */
.mobile-navbar {
    background: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
    display: none;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    padding: 0 20px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
}

.mobile-menu-toggle {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 8px;
    margin: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    border-radius: 4px;
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: rgba(83, 252, 24, 0.1) !important;
}

.mobile-menu-toggle:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    background: rgba(83, 252, 24, 0.1) !important;
}

.mobile-menu-toggle:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}


.hamburger-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 18px;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: #a0a0a0;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #53fc18;
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #53fc18;
}

/* Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Enhanced Responsive Design */

/* Large Desktop */
@media (min-width: 1440px) {
    .hero-section {
        padding: 100px 80px;
        gap: 100px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .stream-gif {
        width: 500px;
        height: 380px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .hero-section {
        padding: 80px 50px;
        gap: 60px;
    }
    
    .stream-gif {
        width: 380px;
        height: 290px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .sidebar {
        width: 200px;
    }
    
    .main-content {
        margin-left: 200px;
    }
    
    .hero-section {
        padding: 60px 40px;
        gap: 50px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .page-content {
        padding: 60px 40px;
    }
    
    .stream-gif {
        width: 320px;
        height: 240px;
    }
    
    /* Tokenomics adjustments */
    .dashboard-grid {
        gap: 20px;
    }
    
    .token-info-content {
        gap: 24px;
    }
}

/* Small Tablet */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        padding: 50px 30px;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .stream-gif {
        width: 300px;
        height: 225px;
    }
    
    .stream-layout {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        height: auto;
    }
    
    .chat-section {
        width: 100%;
        min-height: 500px;
        order: 2;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-navbar {
        display: flex;
    }
    
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1001;
        top: 0;
        height: 100vh;
    }
    
    .sidebar.mobile-open {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
        width: 100%;
        padding-top: 60px;
    }
    
    .hero-section {
        flex-direction: column;
        padding: 20px;
        gap: 30px;
        text-align: center;
        min-height: auto;
    }
    
    .hero-visual {
        order: 2; /* Gif en bas */
        align-self: center;
    }
    
    .hero-content {
        order: 1; /* Contenu en haut */
        text-align: center;
    }
    
    /* Afficher le profil kick sur mobile */
    .kick-profile {
        display: block;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 15px;
        text-align: center;
    }
    
    .hero-actions {
        flex-direction: row; /* Boutons côte à côte */
        gap: 12px;
        margin-bottom: 32px;
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        flex: 1; /* Égale largeur */
        justify-content: center;
        padding: 14px 16px;
        font-size: 14px;
        max-width: 150px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 70px;
        text-align: center;
    }
    
    .stream-gif {
        width: 280px;
        height: 210px;
    }
    
    .page-content {
        padding: 40px 20px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .token-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .distribution-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .tax-item {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .tax-label {
        min-width: auto;
        text-align: center;
    }
    
    /* Stream Layout Mobile */
    .stream-layout {
        flex-direction: column;
        padding: 16px;
        gap: 16px;
        height: auto;
        align-items: stretch;
        justify-content: flex-start;
    }
    
    .stream-profile-section {
        max-width: 100%;
    }
    
    .chat-section {
        width: 100%;
        min-height: 400px;
        max-height: 500px;
    }
    
    .stream-title {
        font-size: 20px;
        flex-wrap: wrap;
    }
    
    .stream-avatar-large {
        width: 60px;
        height: 60px;
    }
    
    .feature-badges {
        justify-content: center;
        gap: 8px;
    }
    
    .feature-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .chat-messages {
        max-height: 250px;
    }
    
    /* About page specific */
    .about-text {
        padding: 20px;
    }
    
    .about-text h2 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .about-text p {
        font-size: 13px;
        margin-bottom: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .mobile-navbar {
        padding: 0 15px;
        height: 50px;
    }
    
    .main-content {
        padding-top: 50px;
    }
    
    .mobile-menu-toggle {
        padding: 6px;
    }
    
    .hamburger-container {
        width: 20px;
        height: 16px;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
    }
    
    .mobile-logo {
        width: 20px;
        height: 20px;
    }
    
    .mobile-logotext {
        height: 16px;
    }
    
    .sidebar {
        width: 280px;
        top: 0;
        height: 100vh;
    }
    
    .main-content {
        padding-top: 50px;
    }
    
    .hero-section {
        padding: 30px 15px;
        gap: 25px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-value {
        font-size: 20px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .stream-gif {
        width: 260px;
        height: 195px;
    }
    
    .kick-profile-header {
        flex-direction: row;
        text-align: center;
        gap: 12px;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .kick-info {
        text-align: center;
        flex: none;
    }
    
    .kick-name-line {
        justify-content: center;
    }
    
    .kick-avatar {
        width: 32px;
        height: 32px;
    }
    
    .kick-name {
        font-size: 16px;
    }
    
    .kick-badges {
        justify-content: center;
    }
    
    .page-content {
        padding: 30px 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .stream-layout {
        padding: 12px;
    }
    
    .stream-profile-card, .about-text {
        padding: 16px;
    }
    
    .chat-section {
        min-height: 350px;
    }
    
    .chat-header {
        padding: 12px;
    }
    
    .chat-messages {
        padding: 12px;
        max-height: 200px;
    }
    
    .chat-message {
        margin-bottom: 8px;
    }
    
    .chat-username {
        font-size: 12px;
    }
    
    .chat-text {
        font-size: 12px;
    }
}

/* Tokenomics Dashboard - Stream Style */
.tokenomics-dashboard {
    padding: 40px;
    background: #0f0f0f;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

/* Stream Title Section */
.stream-title-section {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.stream-title-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #53fc18, #2dd4bf);
}

.token-avatar {
    position: relative;
}

.token-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #53fc18;
}

.live-pulse {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #53fc18;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.token-title-info {
    flex: 1;
}

.token-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.live-indicator-token {
    width: 16px;
    height: 16px;
    background: #53fc18;
    border-radius: 50%;
    flex-shrink: 0;
}

.live-status {
    font-size: 18px;
    font-weight: 600;
    color: #53fc18;
}

.token-ticker {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #53fc18;
    background: rgba(83, 252, 24, 0.1);
    padding: 8px 16px;
    border-radius: 12px;
    display: inline-block;
}

/* Token Information Panel */
.token-info-panel {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 24px;
}

.token-info-content {
    padding: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 32px;
}

.token-info-item {
    text-align: center;
    flex: 1;
}

.token-info-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #a0a0a0;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.token-info-value {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}


/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
    width: 100%;
    max-width: 1000px;
}

/* Hype Badges Grid */
.hype-badges-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Stats Panel */
.stats-panel, .alerts-panel {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
}

.panel-header {
    background: #222222;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #2a2a2a;
}

.panel-header i {
    color: #53fc18;
    font-size: 16px;
}

.panel-header span {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.stats-list {
    padding: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #2a2a2a;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item.highlight {
    background: rgba(83, 252, 24, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin: 8px 0;
    border: 1px solid rgba(83, 252, 24, 0.3);
}

.stat-icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #a0a0a0;
    margin-bottom: 4px;
}

.stat-value {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

/* Alerts Panel */
.alerts-list {
    padding: 20px;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    animation: slideIn 0.5s ease;
}

.alert-item:last-child {
    margin-bottom: 0;
}

.alert-item.reward {
    background: rgba(83, 252, 24, 0.1);
    border: 1px solid rgba(83, 252, 24, 0.3);
}

.alert-item.marketing {
    background: rgba(45, 212, 191, 0.1);
    border: 1px solid rgba(45, 212, 191, 0.3);
}

.alert-item.liquidity {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.alert-item.fire {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

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

.alert-icon {
    font-size: 18px;
}

.alert-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

/* Magic Works Panel */
.magic-works-panel {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
}

.magic-works-list {
    padding: 20px;
}

.magic-work-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #2a2a2a;
}

.magic-work-item:last-child {
    border-bottom: none;
}

.magic-work-item.highlight {
    background: rgba(83, 252, 24, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin: 8px 0;
    border: 1px solid rgba(83, 252, 24, 0.3);
}

.magic-icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.magic-content {
    flex: 1;
}

.magic-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #a0a0a0;
    margin-bottom: 4px;
}

.magic-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

/* Mechanism Stream */
.mechanism-stream {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 32px;
}

.stream-overlay-header {
    text-align: center;
    margin-bottom: 32px;
}

.stream-overlay-header h2 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #53fc18, #2dd4bf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mechanism-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.mechanism-card {
    background: #222222;
    border: 1px solid #404040;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.mechanism-card:hover {
    border-color: #53fc18;
    background: rgba(83, 252, 24, 0.05);
    transform: translateY(-2px);
}

.card-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #53fc18, #2dd4bf);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #a0a0a0;
    line-height: 1.5;
}

/* Tokenomics Responsive */
@media (max-width: 1024px) {
    .tokenomics-dashboard {
        padding: 30px;
        gap: 24px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .token-info-content {
        gap: 20px;
    }
    
    .mechanism-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .tokenomics-dashboard {
        padding: 20px;
        gap: 20px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .token-info-content {
        flex-direction: column;
        gap: 20px;
        padding: 16px;
    }
    
    .token-info-value {
        font-size: 18px;
    }
    
    .token-title {
        font-size: 24px;
    }
    
    .token-ticker {
        font-size: 18px;
        padding: 6px 12px;
    }
    
    .mechanism-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .mechanism-card {
        padding: 20px;
    }
    
    .stream-title-section {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .stats-list, .magic-works-list {
        padding: 16px;
    }
    
    .stat-item, .magic-work-item {
        padding: 12px 0;
    }
    
    .stat-value, .magic-desc {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .tokenomics-dashboard {
        padding: 15px;
        gap: 16px;
    }
    
    .token-info-content {
        padding: 12px;
        gap: 16px;
    }
    
    .token-info-value {
        font-size: 16px;
    }
    
    .token-title {
        font-size: 20px;
    }
    
    .token-ticker {
        font-size: 16px;
    }
    
    .mechanism-card {
        padding: 16px;
        gap: 12px;
    }
    
    .card-title {
        font-size: 14px;
    }
    
    .card-desc {
        font-size: 13px;
    }
    
    .stat-value, .magic-desc {
        font-size: 14px;
    }
    
    .stat-label, .magic-label {
        font-size: 12px;
    }
}

/* Touch and Mobile Optimizations */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy.loaded {
    opacity: 1;
}

/* Better touch targets */
@media (max-width: 768px) {
    .nav-item, .stream-item, .btn-primary, .btn-secondary {
        min-height: 44px; /* Apple's recommended minimum touch target */
        display: flex;
        align-items: center;
    }
    
    .nav-item {
        padding: 16px;
    }
    
    .stream-item {
        padding: 12px 0;
    }
}

/* Dark mode optimizations */
.dark-optimized {
    color-scheme: dark;
}

.dark-optimized img {
    filter: brightness(0.9);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .stream-gif::after, .live-indicator, .kick-live-indicator {
        animation: none !important;
    }
}

/* High contrast support */
@media (prefers-contrast: high) {
    .sidebar {
        border-right-color: #ffffff;
    }
    
    .nav-item.active {
        border-right-color: #ffffff;
        background: #ffffff;
        color: #000000;
    }
    
    .btn-primary {
        border: 2px solid #ffffff;
    }
    
    .live-indicator, .kick-live-indicator {
        border: 2px solid #ffffff;
    }
}

/* Focus management for accessibility */
.nav-item:focus,
.stream-item:focus,
.btn-primary:focus,
.btn-secondary:focus {
    outline: 2px solid #53fc18;
    outline-offset: 2px;
}


/* Safe area for notched devices */
@supports (padding: max(0px)) {
    .mobile-navbar {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    @media (max-width: 768px) {        
        .main-content {
            padding-bottom: max(0px, env(safe-area-inset-bottom));
        }
    }
}

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #53fc18;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2dd4bf;
}

/* Mobile scrollbar (thinner) */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 4px;
    }
}
