@font-face {
    font-family: 'JHA Times Now';
    src: url('./jha-times-now.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('./NeueMontreal-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Neue Montreal', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.8;
    letter-spacing: 0.01em;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

/* Premium Typography Enhancement */
.index-header {
    background: transparent;
    padding: 120px 0;
    margin-bottom: 120px;
    position: relative;
}

.index-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    opacity: 0.3;
}

.index-title-section {
    margin-bottom: 80px;
    position: relative;
}

.index-title {
    font-family: 'JHA Times Now', serif;
    font-size: 6.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 40px;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 0.85;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
    animation: titleGlow 4s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1)); }
    100% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2)); }
}

.index-description {
    font-size: 1.5rem;
    color: #b8b8b8;
    line-height: 1.9;
    max-width: 950px;
    margin: 0 0 40px;
    font-weight: 300;
    letter-spacing: 0.02em;
    position: relative;
}

.index-description::first-letter {
    font-size: 2.2rem;
    font-family: 'JHA Times Now', serif;
    color: #ffffff;
    float: left;
    line-height: 1;
    margin-top: 4px;
}

.index-description + p {
    font-size: 1.2rem;
    color: #999999;
    line-height: 1.8;
    max-width: 900px;
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.015em;
    opacity: 0.9;
}

/* Premium Metrics Cards */
.index-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 120px;
}

.metric-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.metric-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.metric-card:hover::before {
    transform: translateX(100%);
}

.metric-label {
    font-size: 1rem;
    color: #888888;
    margin-bottom: 25px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
}

.metric-label::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.metric-value {
    font-family: 'JHA Times Now', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.02em;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-value.positive {
    background: linear-gradient(135deg, #ffffff 0%, #e8ffe8 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.metric-value.negative {
    background: linear-gradient(135deg, #cccccc 0%, #ffe8e8 50%, #cccccc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Enhanced Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 50px;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.section-header h2 {
    font-family: 'JHA Times Now', serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Button Styling */
.refresh-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 18px 36px;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: 'Neue Montreal', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.refresh-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.refresh-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.refresh-btn:hover::before {
    left: 100%;
}

/* Enhanced Token Items */
.tokens-list-header {
    display: grid;
    grid-template-columns: 80px 1fr 140px 140px 120px 140px;
    gap: 30px;
    padding: 30px 0;
    margin-bottom: 40px;
    font-weight: 400;
    color: #888888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.tokens-list-header > div:first-child {
    text-align: center;
}

.tokens-list-header > div:nth-child(2) {
    text-align: left;
}

.tokens-list-header > div:nth-child(n+3) {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.tokens-list-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.tokens-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.token-item {
    display: grid;
    grid-template-columns: 80px 1fr 140px 140px 120px 140px;
    gap: 30px;
    padding: 35px 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    backdrop-filter: blur(10px);
    align-items: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.token-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transition: left 0.6s ease;
}

.token-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    transform: translateY(-3px) scale(1.005);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

.token-item:hover::before {
    left: 100%;
}

.token-rank {
    font-weight: 400;
    color: #888888;
    text-align: center;
    font-family: 'JHA Times Now', serif;
    font-size: 1.2rem;
    position: relative;
}

.token-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.token-logo {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'JHA Times Now', serif;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.token-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 30px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.token-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    background: rgba(255, 255, 255, 0.05);
    filter: grayscale(100%);
}

.token-logo-img:hover {
    transform: scale(1.05);
    filter: grayscale(0%) brightness(1.1) saturate(1.1);
}

.token-logo-text {
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'JHA Times Now', serif;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.token-details h3 {
    font-family: 'JHA Times Now', serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.token-symbol {
    font-size: 0.9rem;
    color: #888888;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.token-price,
.token-change,
.token-market-cap,
.token-volume,
.token-weight,
.token-fund-allocation {
    font-family: 'JHA Times Now', serif;
    font-weight: 300;
    text-align: right;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.token-price {
    color: #ffffff;
}

.token-change {
    color: #ffffff;
    font-weight: 400;
}

.token-change.positive {
    color: #90EE90;
    text-shadow: 0 0 10px rgba(144, 238, 144, 0.3);
}

.token-change.negative {
    color: #FFB6C1;
    text-shadow: 0 0 10px rgba(255, 182, 193, 0.3);
}

.token-market-cap,
.token-volume,
.token-weight,
.token-fund-allocation {
    color: #cccccc;
}

/* Enhanced Progress Section */
.transfusions-section {
    background: transparent;
    padding: 80px 0;
    margin-bottom: 120px;
    position: relative;
}

.progress-container {
    margin: 60px 0;
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 50%, #ffffff 100%);
    width: 75%;
    transition: width 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 40px;
    border-radius: 15px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.progress-overflow {
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    width: 25%;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 15px 15px 0;
}

.progress-marker {
    position: absolute;
    top: -5px;
    left: 75%;
    height: calc(100% + 10px);
    width: 3px;
    background: linear-gradient(180deg, #ffffff 0%, #cccccc 100%);
    border-radius: 2px;
    z-index: 3;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.progress-marker::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -10px;
    width: 23px;
    height: 23px;
    background: radial-gradient(circle, #ffffff 0%, #e8e8e8 100%);
    border-radius: 50%;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.progress-current, 
.progress-overflow-label {
    font-size: 1.3rem;
    color: #000000;
    font-weight: 400;
    z-index: 2;
    font-family: 'JHA Times Now', serif;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.transfusions-description p {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    font-weight: 300;
    text-align: center;
    opacity: 0.9;
}

/* Content Section Enhancements */
.main-content-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.content-section {
    background: transparent;
    margin-bottom: 150px;
    padding: 60px 0;
    position: relative;
    border-radius: 24px;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    z-index: -1;
    backdrop-filter: blur(20px);
}

.content-section .section-header {
    text-align: center;
    margin-bottom: 100px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section .section-header h2 {
    font-family: 'JHA Times Now', serif;
    font-size: 3.8rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-section .section-subtitle {
    font-size: 1.3rem;
    color: #888888;
    margin: 0;
    font-style: italic;
    text-align: center;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
}

/* Content Row Layout */
.content-row {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
}

.content-block {
    background: transparent;
    padding: 0;
    margin: 0;
    width: 50%;
    max-width: 50%;
}

/* Enhanced Cards */
.fund-info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 40px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.fund-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.fund-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.fund-info-card:hover::before {
    transform: translateX(100%);
}

.fund-info-card h3 {
    font-family: 'JHA Times Now', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 35px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    position: relative;
}

.fund-info-card h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, transparent);
    border-radius: 1px;
}

.fund-info-card p {
    font-size: 1.15rem;
    color: #cccccc;
    line-height: 1.9;
    margin: 0;
    font-weight: 300;
    text-align: justify;
}

/* Theory Blocks Enhancement */
.theory-block {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 45px;
    margin-bottom: 50px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.theory-block::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.1));
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.theory-block:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.theory-block:hover::before {
    opacity: 1;
}

.theory-header h3 {
    font-family: 'JHA Times Now', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
}

.theory-header h3 i {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: all 0.6s ease;
}

.theory-block:hover .theory-header h3 i {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    transform: scale(1.05);
}

.theory-content p {
    font-size: 1.15rem;
    color: #cccccc;
    margin-bottom: 35px;
    text-align: justify;
    font-weight: 300;
    line-height: 1.9;
}

/* Enhanced Formula Styling */
.formula-line {
    font-family: 'JHA Times Now', serif;
    font-size: 1.6rem;
    color: #ffffff;
    font-weight: 300;
    text-align: center;
    margin-bottom: 35px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mathematical-insight {
    margin: 40px 0;
    padding: 20px;
    background: #404040;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.insight-formula-container {
    background: #4d4d4d;
    border-radius: 16px;
    padding: 30px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.insight-formula {
    font-family: 'JHA Times Now', serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 400;
    text-align: center;
    letter-spacing: 0.02em;
}

.formula-note {
    font-size: 1.1rem;
    color: #cccccc;
    margin-top: 15px;
    text-align: center;
    font-style: italic;
    opacity: 0.9;
}

/* Charts Enhancement */
.modern-chart-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px 40px;
    margin-bottom: 50px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.modern-chart-card .chart-container {
    height: 400px;
    margin: 20px 0;
}

.modern-chart-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.chart-title {
    font-family: 'JHA Times Now', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.chart-description {
    font-size: 1rem;
    color: #888888;
    margin: 0 0 35px 0;
    font-weight: 300;
    opacity: 0.9;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 400px; /* Add fixed height */
    margin: 20px 0;
}

.chart-tooltip {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 8px;
    pointer-events: none;
    font-size: 0.9rem;
    font-weight: 300;
    z-index: 10;
    opacity: 0.9;
}

/* Jokes Section Enhancement */
.jokes-section {
    background: transparent;
    padding: 80px 0;
    margin-top: 120px;
    position: relative;
}

.jokes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.joke-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px 35px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.joke-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.joke-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(0%);
    transition: all 0.6s ease;
    opacity: 0.9;
    transform: scale(1);
}

.joke-icon i {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
    transition: all 0.6s ease;
}

.joke-card:hover .joke-icon {
    transform: scale(1.1) rotate(-10deg);
    opacity: 1;
}

.joke-card:hover .joke-icon i {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
    transform: scale(1.05);
}

.joke-card h4 {
    font-family: 'JHA Times Now', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.joke-card p {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.7;
    margin: 0;
    font-style: normal;
    font-weight: 300;
}

/* Loading and Error States */
.loading {
    text-align: center;
    padding: 150px 20px;
    color: #888888;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: elegantSpin 1.2s linear infinite;
    margin: 0 auto 40px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

@keyframes elegantSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Show More Button Enhancement */
.show-more-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px 50px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: 'Neue Montreal', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.show-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.show-more-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.show-more-btn:hover::before {
    left: 100%;
}

/* Enhanced Details and Statistics */
.token-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.detail-item:hover {
    padding-left: 10px;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

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

.detail-label {
    font-size: 1rem;
    color: #888888;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    font-family: 'JHA Times Now', serif;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 300;
}

/* Sentiment Indicators Enhancement */
.sentiment-indicators {
    display: flex;
    gap: 30px;
    width: 100%;
    margin-top: 40px;
    justify-content: center;
}

.sentiment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 0 1 auto;
    padding: 25px 35px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.005) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.sentiment-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.sentiment-icon {
    font-size: 2.2rem;
    filter: grayscale(0%);
    animation: none;
    opacity: 0.9;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sentiment-icon i {
    color: #ffffff !important;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
    transition: all 0.4s ease;
}

.sentiment-item:hover .sentiment-icon {
    transform: scale(1.1);
    opacity: 1;
}

.sentiment-item:hover .sentiment-icon i {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    transform: scale(1.05);
}

.sentiment-title {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 8px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    white-space: nowrap;
}

.sentiment-value {
    font-size: 1.1rem;
    font-weight: 400;
    color: #ffffff;
    font-family: 'JHA Times Now', serif;
    text-align: center;
}

.sentiment-value.positive {
    color: #90EE90;
    text-shadow: 0 0 10px rgba(144, 238, 144, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sentiment-indicators {
        flex-direction: column;
        gap: 20px;
    }
    
    .sentiment-item {
        width: 100%;
        padding: 20px;
    }
}

/* Responsive Design Enhancements */
@media (max-width: 1400px) {
    .content-row {
        gap: 60px;
        margin-bottom: 80px;
    }
    
    .content-block {
        width: 50%;
        max-width: 50%;
    }
    
    .container {
        max-width: 1200px;
        padding: 40px 30px;
    }
    
    .index-title {
        font-size: 5.5rem;
    }

    .jokes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 1200px) {
    .token-item,
    .tokens-list-header {
        grid-template-columns: 60px 1fr 120px 120px 100px 120px;
    }
    
    .jokes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .index-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 30px 20px;
    }
    
    .index-title {
        font-size: 4rem;
    }
    
    .index-description {
        font-size: 1.2rem;
    }
    
    .index-metrics {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .metric-card {
        padding: 40px 25px;
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
    
    .section-header {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    .token-item,
    .tokens-list-header {
        grid-template-columns: 50px 1fr 100px 100px;
        gap: 20px;
        padding: 25px 20px;
    }
    
    .token-market-cap,
    .token-weight,
    .token-volume,
    .token-fund-allocation {
        display: none;
    }
    
    .token-logo {
        width: 45px;
        height: 45px;
        font-size: 0.8rem;
    }
    
    .jokes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 60px;
    }
    
    .joke-card {
        padding: 40px 30px;
    }
    
    .fund-info-card,
    .theory-block {
        padding: 40px 30px;
        margin-bottom: 30px;
    }
    
    .fund-info-card h3,
    .theory-header h3 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .content-section {
        margin-bottom: 100px;
        padding: 40px 0;
    }
    
    .content-section .section-header h2 {
        font-size: 3rem;
    }
    
    .content-block {
        width: 90%;
        max-width: 90%;
    }
    
    .sentiment-indicators {
        gap: 20px;
        margin-top: 30px;
    }
    
    .sentiment-item {
        padding: 20px 12px;
    }
    
    .sentiment-icon {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .jokes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .joke-card {
        padding: 30px 20px;
    }
}

/* Buy Section - Full Height */
.buy-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #0f0f0f 25%, #1a1a1a 50%, #0f0f0f 75%, #000000 100%);
    background-attachment: fixed;
    margin: 0 -40px -60px -40px;
    padding: 0 40px;
    overflow: hidden;
}

.buy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.buy-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    z-index: 1;
}

.buy-content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 2;
    animation: buyContentFloat 3s ease-in-out infinite alternate;
}

@keyframes buyContentFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

.buy-logo {
    font-family: 'JHA Times Now', serif;
    font-size: 8rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 0.85;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 25%, #ffffff 50%, #f0f0f0 75%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
    animation: buyLogoGlow 4s ease-in-out infinite alternate;
    position: relative;
}

@keyframes buyLogoGlow {
    0% { 
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.2));
        transform: scale(1.02);
    }
}

.buy-subtitle {
    font-size: 1.8rem;
    color: #b8b8b8;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.9;
}

.buy-description {
    font-size: 1.4rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 60px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.buy-cta {
    margin-bottom: 80px;
}

.buy-button {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    color: #000000;
    border: none;
    border-radius: 20px;
    padding: 25px 60px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: 'Neue Montreal', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    animation: buyButtonPulse 3s ease-in-out infinite;
}

@keyframes buyButtonPulse {
    0%, 100% { 
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.3),
            0 0 0 1px rgba(255, 255, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.5),
            0 0 0 0 rgba(255, 255, 255, 0);
    }
    50% { 
        box-shadow: 
            0 25px 80px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(255, 255, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.7),
            0 0 0 20px rgba(255, 255, 255, 0.1);
    }
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.buy-button:hover {
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 50%, #ffffff 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.8),
        0 0 50px rgba(255, 255, 255, 0.3);
}

.buy-button:hover::before {
    left: 100%;
}

.buy-button:active {
    transform: translateY(-3px) scale(1.02);
}

.buy-button-text {
    position: relative;
    z-index: 2;
    font-size: 1.4rem;
    font-weight: 700;
}

.buy-features {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.buy-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cccccc;
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.buy-feature:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateY(-2px);
}

.buy-feature i {
    color: #ffffff;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
}

.buy-feature:hover i {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.4));
    transform: scale(1.1);
}

/* Responsive Design for Buy Section */
@media (max-width: 1200px) {
    .buy-section {
        margin: 0 -30px -40px -30px;
        padding: 0 30px;
    }
    
    .buy-logo {
        font-size: 6rem;
    }
    
    .buy-button {
        padding: 22px 50px;
        font-size: 1.2rem;
    }
    
    .buy-button-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .buy-section {
        margin: 0 -20px -30px -20px;
        padding: 40px 20px;
        min-height: 90vh;
    }
    
    .buy-logo {
        font-size: 4.5rem;
        margin-bottom: 15px;
    }
    
    .buy-subtitle {
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    
    .buy-description {
        font-size: 1.2rem;
        margin-bottom: 50px;
    }
    
    .buy-cta {
        margin-bottom: 60px;
    }
    
    .buy-button {
        padding: 20px 40px;
        font-size: 1.1rem;
        border-radius: 16px;
    }
    
    .buy-button-text {
        font-size: 1.1rem;
    }
    
    .buy-features {
        gap: 40px;
        flex-direction: column;
        align-items: center;
    }
    
    .buy-feature {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .buy-logo {
        font-size: 3.5rem;
    }
    
    .buy-subtitle {
        font-size: 1.2rem;
    }
    
    .buy-description {
        font-size: 1.1rem;
    }
    
    .buy-button {
        padding: 18px 35px;
        font-size: 1rem;
    }
    
    .buy-button-text {
        font-size: 1rem;
    }
    
    .buy-features {
        gap: 30px;
    }
} 

/* Add styles for meme slideshow images */
.meme-slideshow img {
    filter: grayscale(100%);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.meme-slideshow img:hover {
    filter: grayscale(0%);
} 