* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000;
    color: #e7e9ea;
    line-height: 1.4;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #2f3336;
    z-index: 1000;
    height: 60px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    color: #1d9bf0;
    font-size: 20px;
    font-weight: 700;
}

.logo svg {
    height: 40px;
    width: auto;
    max-width: 160px;
}

.search-box input {
    background: #202327;
    border: 1px solid #2f3336;
    border-radius: 20px;
    padding: 8px 16px;
    color: #e7e9ea;
    font-size: 15px;
    width: 300px;
}

.search-box input:focus {
    outline: none;
    border-color: #1d9bf0;
    background: #000;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 85vw;
    max-width: 350px;
    height: 100vh;
    background: #000;
    border-left: 1px solid #2f3336;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #2f3336;
    position: sticky;
    top: 0;
    background: #000;
    z-index: 10;
}

.mobile-menu-header h3 {
    color: #e7e9ea;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.close-menu {
    background: none;
    border: none;
    color: #71767b;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #e7e9ea;
}

.mobile-token-list {
    padding: 0;
}

.mobile-token-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #e7e9ea;
    text-decoration: none;
    border-bottom: 1px solid #2f3336;
    transition: background-color 0.2s;
    min-height: 60px;
}

.mobile-token-item:hover {
    background: #1e2328;
}

.mobile-token-item.active {
    background: rgba(29, 155, 240, 0.1);
    color: #1d9bf0;
    border-left: 4px solid #1d9bf0;
}

.mobile-token-item:last-child {
    border-bottom: none;
}

.mobile-token-item .token-info {
    flex: 1;
    min-width: 0;
}

.mobile-token-item .token-symbol {
    font-weight: 600;
    font-size: 15px;
    display: block;
}

.mobile-token-item .token-name {
    font-size: 13px;
    color: #71767b;
    display: block;
    margin-top: 2px;
}

.mobile-token-item .cast-count {
    font-size: 12px;
    color: #00ba7c;
    font-weight: 600;
    background: rgba(0, 186, 124, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

#tokenMenuBtn {
    background: none;
    border: none;
    color: #e7e9ea;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#tokenMenuBtn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Main Layout */
.main-content {
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    gap: 20px;
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
}

.token-selector h3 {
    color: #e7e9ea;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    padding: 0 12px;
}

.token-list {
    background: #16181c;
    border-radius: 16px;
    overflow: hidden;
}

.token-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #e7e9ea;
    text-decoration: none;
    border-bottom: 1px solid #2f3336;
    transition: background-color 0.2s;
}

.token-item:hover {
    background: #1e2328;
}

.token-item:last-child {
    border-bottom: none;
}

.token-item.active {
    background: rgba(29, 155, 240, 0.1);
    color: #1d9bf0;
}

.token-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.token-symbol {
    font-weight: 600;
    font-size: 14px;
}

.token-name {
    font-size: 12px;
    color: #71767b;
}

.cast-count {
    font-size: 12px;
    color: #00ba7c;
    font-weight: 500;
    margin-left: auto;
}

.token-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    margin-left: auto;
}

.cast-label {
    font-size: 10px;
    color: #71767b;
    text-transform: uppercase;
}

/* Feed */
.feed {
    min-height: 100vh;
    max-width: 600px;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid #2f3336;
}

.tab {
    color: #71767b;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
    font-weight: 500;
    transition: all 0.2s;
}

.tab:hover {
    color: #e7e9ea;
}

.tab.active {
    color: #e7e9ea;
    border-bottom-color: #1d9bf0;
}

/* Token Header */
.token-header {
    background: #16181c;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #2f3336;
}

.token-main-info {
    margin-bottom: 20px;
}

.token-details {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.token-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #2f3336;
    object-fit: cover;
}

.token-meta h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1d9bf0;
    margin: 0;
}

.token-description {
    color: #e7e9ea;
    font-size: 14px;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid #1d9bf0;
}

.token-market-stats {
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid #2f3336;
}

.market-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 12px;
}

.market-row:last-child {
    margin-bottom: 0;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat .label {
    font-size: 12px;
    color: #71767b;
    font-weight: 500;
}

.stat .value {
    font-size: 14px;
    font-weight: 600;
    color: #e7e9ea;
}

.stat .value.positive {
    color: #00ba7c;
}

.stat .value.negative {
    color: #f4212e;
}

.token-links {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #2f3336;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 8px 12px;
    background: rgba(29, 155, 240, 0.1);
    color: #1d9bf0;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.social-link:hover {
    background: rgba(29, 155, 240, 0.2);
}

.creators-info {
    margin-top: 16px;
}

.creators-info h4 {
    color: #e7e9ea;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.creators-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.creator-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e7e9ea;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.creator-profile:hover {
    background: rgba(255, 255, 255, 0.05);
}

.creator-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2f3336;
    flex-shrink: 0;
}

.creator-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.creator-username {
    font-weight: 600;
    font-size: 14px;
    color: #1d9bf0;
}

.creator-stats {
    color: #71767b;
    font-size: 12px;
}

.creator-badge {
    background: #1d9bf0;
    color: #000;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    margin-left: auto;
}

.more-creators {
    color: #71767b;
    font-size: 12px;
    padding: 8px 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

/* Cast Feed */
.cast-feed {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.cast {
    background: #16181c;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #2f3336;
    transition: background-color 0.2s;
}

.cast:hover {
    background: #1a1d23;
}

.cast.official {
    border-left: 4px solid #1d9bf0;
    background: rgba(29, 155, 240, 0.05);
}

.cast-header {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cast-meta {
    flex: 1;
    min-width: 0;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.author-name {
    font-weight: 600;
    color: #e7e9ea;
}

.username {
    color: #71767b;
    font-size: 14px;
}

.official-badge {
    background: #1d9bf0;
    color: #000;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
}

.cast-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timestamp {
    color: #71767b;
    font-size: 14px;
}

.token-tag {
    background: rgba(29, 155, 240, 0.1);
    color: #1d9bf0;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
}

.token-tag:hover {
    background: rgba(29, 155, 240, 0.2);
}

.cast-content {
    margin-bottom: 12px;
    line-height: 1.5;
    word-wrap: break-word;
}

/* Media */
.cast-media {
    margin: 12px 0;
    border-radius: 12px;
    overflow: hidden;
}

.media-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.media-video {
    width: 100%;
    max-height: 400px;
    border-radius: 12px;
}

/* Cast Actions */
.cast-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #2f3336;
}

.action-group {
    display: flex;
    gap: 20px;
}

.action {
    color: #71767b;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.view-link {
    color: #1d9bf0;
    text-decoration: none;
    font-size: 13px;
}

.view-link:hover {
    text-decoration: underline;
}

/* Trending Sidebar */
.trending-sidebar {
    position: sticky;
    top: 80px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trending-section,
.stats-section {
    background: #16181c;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #2f3336;
}

.trending-section h3,
.stats-section h3 {
    color: #e7e9ea;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.trending-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    color: #e7e9ea;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.trending-item:hover {
    background: #1e2328;
}

.trending-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trending-symbol {
    font-weight: 600;
    color: #1d9bf0;
    font-size: 14px;
}

.trending-name {
    font-size: 12px;
    color: #71767b;
}

.trending-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.price,
.volume {
    font-size: 12px;
    color: #e7e9ea;
    font-weight: 500;
}

.change {
    font-size: 12px;
    font-weight: 600;
}

.change.positive {
    color: #00ba7c;
}

.change.negative {
    color: #f4212e;
}

/* Stats Grid */
.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    color: #71767b;
    font-size: 14px;
}

.stat-value {
    color: #e7e9ea;
    font-weight: 600;
    font-size: 14px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px;
    color: #71767b;
}

/* Token Avatar */
.token-avatar {
    position: relative;
    flex-shrink: 0;
}

.token-image {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: cover;
    background: #2f3336;
}

.token-image.all-tokens {
    background: linear-gradient(135deg, #1d9bf0, #0066cc);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 10px;
}

.token-fallback {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: #2f3336;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #71767b;
    font-weight: 600;
    font-size: 10px;
    position: absolute;
    top: 0;
    left: 0;
}

.stat-today {
    color: #00ba7c;
    font-size: 12px;
    font-weight: 400;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid #2f3336;
}

#loadMoreBtn {
    background: linear-gradient(135deg, #1d9bf0, #1a8cd8);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 155, 240, 0.3);
}

#loadMoreBtn:hover {
    background: linear-gradient(135deg, #1a8cd8, #1976d2);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 155, 240, 0.4);
}

#loadMoreBtn:disabled {
    background: #2f3336;
    color: #71767b;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#loadMoreBtn:disabled:hover {
    background: #2f3336;
    transform: none;
}

/* Loading animation */
#loadMoreBtn:disabled::after {
    content: "...";
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: "."; }
    40% { content: ".."; }
    60%, 100% { content: "..."; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .sidebar,
    .trending-sidebar {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        gap: 0;
    }
    
    .logo {
        order: 1;
        flex-shrink: 0;
    }
    
    .search-box {
        order: 2;
        flex: 1;
        margin: 0 12px;
    }
    
    .search-box input {
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-menu-toggle {
        order: 3;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    body {
        padding-top: 80px;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .main-content {
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .feed {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .cast, 
    .token-header {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
    
    .container {
        padding: 0 12px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 80px;
    }
    
    .container {
        padding: 0 8px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Button */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Header Layout - Keep horizontal */
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 60px;
        gap: 0;
    }
    
    .logo {
        order: 1;
        flex-shrink: 0;
    }
    
    .logo svg {
        height: 32px;
        max-width: 120px;
    }
    
    .search-box {
        order: 2;
        flex: 1;
        margin: 0 12px;
    }
    
    .search-box input {
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-menu-toggle {
        order: 3;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    /* Body and content */
    body {
        padding-top: 60px;
    }
    
    .container {
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .main-content {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .sidebar,
    .trending-sidebar {
        display: none;
    }
    
    .feed {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .cast, 
    .token-header {
        width: 100%;
        max-width: 100%;
        margin: 0 0 16px 0;
        overflow-x: hidden;
    }
    
    .cast-content,
    .token-description {
        word-break: break-word;
        overflow-wrap: break-word;
    }
    
    .cast-actions {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .market-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .token-links {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: flex-start;
    }
    
    /* Fix media */
    img, video {
        max-width: 100% !important;
        height: auto;
    }
    
    .media-image,
    .media-video {
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    .container {
        padding: 0 8px;
    }
    
    .header .container {
        flex-wrap: nowrap;
        height: 60px;
        padding: 0;
    }
    
    .search-box {
        order: 2;
        margin: 0 8px;
    }
    
    .mobile-menu-toggle {
        order: 3;
    }
    
    .mobile-menu {
        width: 90vw;
    }
    
    .logo svg {
        height: 28px;
        max-width: 100px;
    }
    
    .cast {
        padding: 12px;
    }
    
    .filter-tabs {
        gap: 16px;
        margin-bottom: 16px;
    }
}

/* Token Market Stats Responsive */
@media (max-width: 1024px) {
    .market-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .stat {
        text-align: center;
    }
    
    .stat .label {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .stat .value {
        font-size: 13px;
        font-weight: 700;
    }
}

@media (max-width: 768px) {
    .token-market-stats {
        padding: 12px;
        margin-bottom: 16px;
    }
    
    .market-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .stat {
        text-align: center;
        padding: 8px 4px;
    }
    
    .stat .label {
        font-size: 10px;
        color: #71767b;
        font-weight: 500;
        margin-bottom: 4px;
        display: block;
    }
    
    .stat .value {
        font-size: 12px;
        font-weight: 600;
        color: #e7e9ea;
        display: block;
        word-break: break-all;
    }
}

@media (max-width: 480px) {
    .token-market-stats {
        padding: 10px;
    }
    
    .market-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .stat {
        padding: 6px 2px;
    }
    
    .stat .label {
        font-size: 9px;
        margin-bottom: 3px;
    }
    
    .stat .value {
        font-size: 11px;
        line-height: 1.2;
    }
}

/* Last Cast */
.token-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.last-cast {
    font-size: 11px;
    color: #666;
    margin-top: 2px;
}

/* Stats Section Additional Elements */
.website-logo-row {
    text-align: center;
    margin: 20px 0 16px 0;
    padding: 16px 0;
    border-top: 1px solid #2f3336;
}

.social-icons-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 16px 0;
}

.social-icon {
    color: #fff;
    transition: color 0.2s;
    padding: 8px;
    border-radius: 8px;
    background: rgba(29, 155, 240, 0.1);
}

.social-icon:hover {
    color: #fff;
    background: #1d9be2;
}

.button-links-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 16px 0;
}

.text-button {
    color: #1d9bf0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.text-button:hover {
    background: rgba(29, 155, 240, 0.1);
}

.footer-links-row {
    text-align: center;
    margin: 16px 0 0 0;
    padding: 16px 0 0 0;
    border-top: 1px solid #2f3336;
}

.footer-text {
    font-size: 12px;
    color: #71767b;
    line-height: 1.4;
}

.footer-link {
    color: #1d9bf0;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .button-links-row {
        flex-direction: column;
        gap: 4px;
    }
    
    .text-button {
        text-align: center;
    }
    
    .footer-text {
        font-size: 11px;
    }
}

/* Mobile Farcaster Button */
.mobile-farcaster-button {
    padding: 16px 20px;
    border-bottom: 1px solid #2f3336;
}

.farcaster-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: rgba(29, 155, 240, 0.1);
    color: #1d9bf0;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(29, 155, 240, 0.2);
    transition: all 0.2s ease;
}

.farcaster-btn:hover {
    background: rgba(29, 155, 240, 0.2);
    border-color: rgba(29, 155, 240, 0.4);
}

@media (min-width: 1025px) {
    .mobile-farcaster-button {
        display: none;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.visit-counter {
    font-size: 12px;
    color: #1d9bf0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

@media (max-width: 768px) {
    .logo {
        flex-direction: column;
        gap: 2px;
    }
}

@media (min-width: 769px) {
    .logo {
        flex-direction: row;
    }
}

.feed-banners-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 0 0 10px 0;
}

.feed-banner-item {
    background: #16181c;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #2f3336;
}

.feed-banner-item .ad-banner {
    display: block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.feed-banner-item .ad-banner:hover {
    opacity: 0.9;
}

.feed-banner-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Responsive - Mobile stack vertically */
@media (max-width: 768px) {
    .feed-banners-row {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 8px 0 8px 0;
    }
}