/* Year 2025 Page Styles - Apple/Spotify/Strava inspired */

/* Remove layout margins for full-width page */
.year2025-fullwidth {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    margin-top: -1rem; /* Remove mt-3 from layout */
    margin-bottom: -1rem; /* Remove pb-3 from layout */
}

/* Override container padding for year2025 sections */
.year2025-container .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 100%;
}

@media (max-width: 768px) {
    .year2025-container .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.year2025-container {
    min-height: 100vh;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
}

.dark-mode .year2025-container {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
}

/* Hero Section */
.year2025-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 2rem;
}

.year2025-title {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #ff375f 0%, #ff2d55 50%, #ff0037 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out;
}

.year2025-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 300;
    margin-top: 1rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.year2025-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.6;
    animation: fadeInUp 1s ease-out 0.4s both, bounce 2s infinite 1.4s;
}

.year2025-scroll-indicator i {
    font-size: 1.25rem;
}

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

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

/* Sections */
.year2025-section {
    min-height: 100vh;
    padding: 6rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.year2025-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 45, 85, 0.2);
    border-color: rgba(255, 45, 85, 0.3);
}

.stat-value {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff375f 0%, #ff2d55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.stat-date {
    font-size: 0.875rem;
    opacity: 0.5;
}

/* Worlds List */
.worlds-list {
    max-width: 800px;
    margin: 0 auto;
}

.world-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.world-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.world-rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff375f;
    min-width: 3rem;
}

.world-name {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 500;
}

.world-avg {
    font-size: 1rem;
    opacity: 0.7;
}

/* Players Grid */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.players-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ff375f;
}

.players-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.player-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.player-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.player-name {
    font-size: 1.125rem;
    font-weight: 500;
}

.player-value {
    font-size: 1rem;
    color: #ff375f;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    opacity: 0.6;
    margin-bottom: 3rem;
    font-weight: 300;
}

.stat-subtext {
    font-size: 0.875rem;
    opacity: 0.5;
    margin-top: 0.25rem;
}

.stat-value-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ff375f;
}

.highlight-card {
    border-color: rgba(255, 45, 85, 0.4);
    background: rgba(255, 45, 85, 0.05);
}

.highlight-stat {
    margin-top: 3rem;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 45, 85, 0.1);
    border: 2px solid rgba(255, 45, 85, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.highlight-value {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ff375f 0%, #ff2d55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.highlight-label {
    font-size: 1.25rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Worlds enhancements */
.world-bar-container {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 1rem;
}

.world-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff375f 0%, #ff2d55 100%);
    border-radius: 4px;
    transition: width 1s ease-out;
}

.new-worlds-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.subsection-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: #ff375f;
}

.new-worlds-location-group {
    margin-bottom: 2rem;
}

.location-group-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.new-worlds-bubbles {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    position: relative;
    padding: 2rem;
}

.world-bubble {
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.2) 0%, rgba(255, 45, 85, 0.1) 100%);
    border: 2px solid rgba(255, 45, 85, 0.4);
    border-radius: 50px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 45, 85, 0.2);
    animation: bubbleFloat 6s ease-in-out infinite;
    animation-delay: calc(var(--bubble-index, 0) * 0.2s);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.world-bubble:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 45, 85, 0.4);
    z-index: 10;
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(calc(0px + var(--random-y, 0px))) translateX(calc(0px + var(--random-x, 0px)));
    }
    25% {
        transform: translateY(calc(-12px + var(--random-y, 0px))) translateX(calc(8px + var(--random-x, 0px)));
    }
    50% {
        transform: translateY(calc(-6px + var(--random-y, 0px))) translateX(calc(-8px + var(--random-x, 0px)));
    }
    75% {
        transform: translateY(calc(-18px + var(--random-y, 0px))) translateX(calc(5px + var(--random-x, 0px)));
    }
}

.new-worlds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    max-width: 100%;
    margin: 0 auto;
}

.new-world-badge {
    padding: 0.75rem 1rem;
    background: rgba(255, 45, 85, 0.1);
    border: 1px solid rgba(255, 45, 85, 0.3);
    border-radius: 8px;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.new-world-badge:hover {
    background: rgba(255, 45, 85, 0.2);
    transform: translateY(-2px);
}

.new-world-badge.more {
    opacity: 0.6;
    font-style: italic;
}

/* Players enhancements */
.player-rank {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ff375f;
    min-width: 2.5rem;
}

.player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.player-name-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.player-name-link:hover {
    color: #ff375f;
    text-decoration: underline;
}

.player-meta {
    font-size: 0.875rem;
    opacity: 0.6;
}

.highlight-player {
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 45, 85, 0.15) 0%, rgba(255, 45, 85, 0.05) 100%);
    border: 2px solid rgba(255, 45, 85, 0.3);
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.highlight-player-content {
    max-width: 600px;
    margin: 0 auto;
}

.highlight-player-label {
    font-size: 0.875rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.highlight-player-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff375f 0%, #ff2d55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-player-details {
    font-size: 1.125rem;
    opacity: 0.8;
}

/* Bosses Section */
.boss-highlight {
    max-width: 600px;
    margin: 0 auto;
}

.boss-card-large {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 45, 85, 0.3);
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.boss-label {
    font-size: 0.875rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.boss-name {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ff375f;
}

.boss-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.boss-stat {
    text-align: center;
}

.boss-stat-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ff375f;
    margin-bottom: 0.5rem;
}

.boss-summary-section {
    margin-top: 3rem;
}

.boss-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.boss-summary-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.boss-summary-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.boss-summary-link:hover .boss-summary-item {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 45, 85, 0.3);
}

.boss-summary-name {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.boss-summary-count {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff375f;
}

.boss-stat-label {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Houses Section */
.house-highlight {
    max-width: 700px;
    margin: 0 auto;
}

.house-card-large {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 45, 85, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.house-label {
    font-size: 0.875rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: center;
}

.house-name {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #fff;
}

.house-world {
    text-align: center;
    font-size: 1.125rem;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.house-price {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ff375f 0%, #ff2d55 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.house-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.house-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.house-detail-label {
    font-size: 0.875rem;
    opacity: 0.6;
}

.house-detail-value {
    font-size: 1rem;
    font-weight: 500;
}

/* Events Section */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.event-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 45, 85, 0.3);
}

.event-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ff375f;
    margin-bottom: 0.5rem;
}

.event-label {
    font-size: 1rem;
    opacity: 0.7;
}

/* Vocations Section */
.vocation-groups-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.vocation-group-card {
    border: 2px solid;
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 0.9;
}

.vocation-group-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.vocation-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.vocation-group-name {
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.95;
}

.vocation-group-total {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.vocation-sub-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.vocation-sub-name {
    font-size: 0.875rem;
    opacity: 0.85;
}

.vocation-sub-count {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.vocation-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.vocation-stat-card {
    border: 2px solid;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 0.85;
}

.vocation-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.vocation-name {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    opacity: 0.9;
}

.vocation-count {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Locations Section */
.location-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.location-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.location-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.location-worlds {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 0.75rem;
}

.location-avg {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.location-label {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* Records Section */
.records-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.record-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.record-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.record-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.record-player {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.record-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.record-meta {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* Tech Details Section */
.tech-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-detail-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.tech-detail-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.tech-detail-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* News Section */
.recent-news-section {
    margin-top: 3rem;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.news-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.news-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.news-date {
    font-size: 0.875rem;
    opacity: 0.6;
}

/* House Price Trend */
.house-price-trend {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.trend-label {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.trend-values {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trend-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trend-label-small {
    font-size: 0.875rem;
    opacity: 0.7;
}

.trend-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trend-percent {
    font-size: 2rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.trend-percent.trend-up {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
}

.trend-percent.trend-down {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}

/* Highlight Value Text */
.highlight-value-text {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

.highlight-subtext {
    font-size: 1.125rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Daily Heatmap */
.daily-heatmap-section {
    margin-top: 4rem;
}

.heatmap-container {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.heatmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20px, 1fr));
    gap: 6px;
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem;
    justify-items: center;
}

.heatmap-cell {
    aspect-ratio: 1;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    background: linear-gradient(135deg, 
        rgba(26, 95, 180, 1) 0%,
        rgba(0, 181, 204, 1) 100%);
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.heatmap-cell:hover {
    transform: scale(1.3);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.heatmap-cell:hover .heatmap-tooltip {
    opacity: 1;
    visibility: visible;
}

.heatmap-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
    z-index: 20;
}

.heatmap-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

.tooltip-date {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tooltip-avg, .tooltip-max, .tooltip-min {
    font-size: 0.75rem;
    opacity: 0.8;
}

.heatmap-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.legend-label {
    font-size: 0.875rem;
    opacity: 0.7;
}

.legend-gradient {
    width: 200px;
    height: 12px;
    background: linear-gradient(90deg, 
        rgba(26, 95, 180, 0.2) 0%,
        rgba(0, 181, 204, 1) 100%);
    border-radius: 6px;
}

/* Chart Section */
.chart-section {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.chart-wrapper {
    position: relative;
    height: 300px;
    width: 100%;
}

.chart-section canvas {
    max-height: 300px;
    width: 100% !important;
    height: 100% !important;
}

/* Top Houses Container */
.top-houses-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.house-card-small-link,
.house-card-large-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.house-card-small-link:hover .house-card-small,
.house-card-large-link:hover .house-card-large {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 45, 85, 0.5);
}

.house-card-small {
    flex: 0 0 280px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.house-card-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.house-card-small-rank {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.house-card-small-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.house-card-small-world {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 0.75rem;
}

.house-card-small-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.house-card-large {
    flex: 0 0 400px;
    max-width: 100%;
}

@media (max-width: 992px) {
    .top-houses-container {
        flex-direction: column;
    }
    
    .house-card-small,
    .house-card-large {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* Footer */
/* Footnotes */
.footnote-ref {
    font-size: 0.5em;
    vertical-align: super;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-left: 0.25em;
    line-height: 0;
    display: inline-block;
}

.year2025-subtitle .footnote-ref {
    font-size: 0.6em;
    color: rgba(255, 255, 255, 0.9);
}

.year2025-footnotes {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

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

.footnote-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

.footnote-number {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.footnote-text {
    flex: 1;
}

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

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    font-size: 1.125rem;
    opacity: 0.7;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .year2025-hero {
        min-height: 80vh;
    }
    
    .year2025-section {
        padding: 4rem 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .world-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .world-bar-container {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .new-worlds-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .player-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .boss-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .house-details {
        gap: 0.75rem;
    }
    
    .vocation-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .records-grid {
        grid-template-columns: 1fr;
    }
    
    .trend-values {
        flex-direction: column;
    }
    
    .location-stats-grid {
        grid-template-columns: 1fr;
    }
}

