:root {
    --primary-blue: #003EFF;
    --primary-dark: #0035DD;
    --light-blue: #6B9FFF;
    --accent-blue: #4A7FFF;
    --success: #4CAF50;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #E9ECEF;
    --text-dark: #1A1A1A;
    --text-gray: #6C757D;
    --glass-white: rgba(255, 255, 255, 0.7);
    --glass-light: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.6);
    --shadow-sm: 0 2px 8px rgba(0, 62, 255, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 62, 255, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 62, 255, 0.12);
    --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.15);
}

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

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #E8F0FF 0%, #F0F6FF 25%, #F8FBFF 50%, #E6F0FF 75%, #F0F6FF 100%);
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
    min-height: 100vh;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 62, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(107, 159, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 90%, rgba(74, 127, 255, 0.04) 0%, transparent 70%);
    animation: floatBackground 30s ease-in-out infinite;
    z-index: -2;
}

@keyframes floatBackground {
    0%, 100% { transform: rotate(0deg) scale(1); }
    33% { transform: rotate(120deg) scale(1.1); }
    66% { transform: rotate(240deg) scale(0.95); }
}

/* Floating orbs */
body::after {
    content: '';
    position: fixed;
    top: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 62, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: floatOrb 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.2); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

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

/* Header with Glass Effect */
header {
    background: var(--glass-light);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 62, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

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

.logo-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
    position: relative;
    z-index: 1;
}

.logo-container h1 {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.header-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.badge {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.contract-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 62, 255, 0.3);
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

.contract-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 62, 255, 0.3);
    border-color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 60px 20px 40px 20px;
    position: relative;
}

.hero-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.1;
    filter: drop-shadow(0 2px 4px rgba(0, 62, 255, 0.1));
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Chart Section with Glass */
.chart-section {
    margin: 40px 0 60px 0;
}

.chart-container {
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-glass);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.chart-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--light-blue), var(--accent-blue));
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

@keyframes gradientSlide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.chart-container h2 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.chart-caption {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

#dailyChart {
    height: 350px !important;
    position: relative;
    z-index: 1;
}

/* Chart Links Section */
.chart-links-container {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 62, 255, 0.1);
}

.chart-links-container h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.chart-tx-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 62, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-dark);
}

.chart-tx-link:hover {
    background: linear-gradient(135deg, rgba(0, 62, 255, 0.1), rgba(107, 159, 255, 0.05));
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 62, 255, 0.15);
}

.chart-tx-link .tx-date {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-blue);
    min-width: 80px;
}

.chart-tx-link .tx-hash {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-size: 13px;
    color: var(--text-gray);
    flex: 1;
}

.chart-tx-link .tx-amount {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 4px 8px;
    background: rgba(0, 62, 255, 0.05);
    border-radius: 20px;
}

.chart-tx-link svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary-blue);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.chart-tx-link:hover svg {
    transform: translate(2px, -2px);
}

.no-transactions {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    padding: 20px;
    background: rgba(0, 62, 255, 0.03);
    border-radius: 12px;
}

/* Stats Grid with Glass Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.stat-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-glass);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-blue), var(--light-blue), var(--primary-blue));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 0.3;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 62, 255, 0.15);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: inline-block;
    animation: float 4s ease-in-out infinite;
}

.stat-card:nth-child(2) .stat-icon {
    animation-delay: 1s;
}

.stat-card:nth-child(3) .stat-icon {
    animation-delay: 2s;
}

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

.stat-content h3 {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.stat-description {
    font-size: 13px;
    color: var(--text-gray);
}

.loading-skeleton {
    display: inline-block;
    background: linear-gradient(90deg, rgba(0, 62, 255, 0.1) 25%, rgba(0, 62, 255, 0.05) 50%, rgba(0, 62, 255, 0.1) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
    width: 150px;
    height: 36px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Odds Section with Glass */
.odds-section {
    margin: 60px 0;
}

.odds-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-glass);
    border: 1px solid var(--glass-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.odds-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 62, 255, 0.05) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
    z-index: 0;
}

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

.odds-card h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.odds-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 32px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.odds-from, .odds-to {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background: var(--glass-light);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.odds-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.odds-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.odds-value.highlight {
    font-size: 32px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.05); filter: brightness(1.2); }
}

.odds-arrow {
    animation: slideArrow 2s infinite ease-in-out;
    filter: drop-shadow(0 2px 4px rgba(0, 62, 255, 0.2));
}

.odds-arrow svg {
    stroke: var(--primary-blue);
}

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

/* Activity Section with Glass */
.activity-section {
    margin: 60px 0;
}

.activity-section h2 {
    font-size: 28px;
    margin-bottom: 24px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.activity-feed {
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 24px;
    max-height: 500px;
    overflow-y: auto;
    box-shadow: var(--shadow-glass);
    border: 1px solid var(--glass-border);
}

.activity-feed::-webkit-scrollbar {
    width: 8px;
}

.activity-feed::-webkit-scrollbar-track {
    background: rgba(0, 62, 255, 0.05);
    border-radius: 10px;
}

.activity-feed::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-blue), var(--light-blue));
    border-radius: 10px;
}

.activity-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideIn 0.5s ease-out;
}

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

.activity-item:hover {
    background: rgba(0, 62, 255, 0.05);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 62, 255, 0.1);
}

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

.activity-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 62, 255, 0.2);
}

.activity-content {
    flex: 1;
}

.activity-content p {
    margin-bottom: 6px;
    color: var(--text-dark);
    font-size: 15px;
}

.activity-time {
    font-size: 12px;
    color: var(--text-gray);
    display: inline-block;
}

.transaction-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.tx-link {
    font-size: 12px;
    color: var(--primary-blue);
    text-decoration: none;
    padding: 6px 14px;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 62, 255, 0.2);
    border-radius: 100px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.tx-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    transition: transform 0.3s ease;
}

.tx-link:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 62, 255, 0.3);
}

.tx-link:hover svg {
    transform: translate(2px, -2px);
}

/* Info Section with Glass */
.info-section {
    margin: 60px 0;
}

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

.info-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-glass);
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 62, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 62, 255, 0.15);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.info-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 16px;
}

.contract-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    text-decoration: none;
    margin-top: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 8px 24px rgba(0, 62, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.contract-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.5s ease;
}

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

.contract-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 62, 255, 0.35);
}

/* Footer with Glass */
footer {
    background: var(--glass-light);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid var(--glass-border);
    color: var(--text-gray);
    padding: 32px 0;
    text-align: center;
    margin-top: 80px;
}

/* Hero Chart Section - Combined Layout */
.hero-chart-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0 60px;
    min-height: 400px;
}

.hero-content {
    padding-right: 20px;
}

.hero-content .hero-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

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

.hero-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.hero-stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Glass Effect Chart Container */
.chart-container.glass-effect {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 
        0 8px 32px rgba(31, 38, 135, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    height: 400px;
}

.chart-container.glass-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: 24px;
    pointer-events: none;
}

.chart-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(26, 26, 26, 0.8);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chart-container.glass-effect canvas {
    position: relative;
    z-index: 1;
    max-height: 300px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-chart-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .chart-container.glass-effect {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .odds-display {
        flex-direction: column;
    }
    
    .header-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: var(--glass-light);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    color: var(--primary-blue);
    padding: 14px 24px;
    border-radius: 100px;
    box-shadow: var(--shadow-glass);
    z-index: 1000;
    animation: slideInRight 0.5s ease-out;
    font-weight: 600;
    font-size: 14px;
}

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

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* FAQ Section */
.faq-section {
    margin: 60px 0;
    padding: 40px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-container {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-white);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: var(--shadow-glass);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 62, 255, 0.12);
    border-color: rgba(0, 62, 255, 0.2);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.faq-question::before {
    content: "Q";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    margin-right: 12px;
    flex-shrink: 0;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
    padding-left: 40px;
}