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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #2596be;
    background-image: linear-gradient(rgba(11, 17, 32, 0.8), rgba(11, 17, 32, 0.9)), url('/assets/site-bg.png'), linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #1a1a2e 100%);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: #ffffff;
    line-height: 1.6;
}

.header {
    text-align: center;
    padding: 0;
    position: relative;
}

.header::after {
    /* Removed overlay */
    content: none;
}

.header-content {
    position: relative;
    z-index: 2;
}

.header h1 {
    font-family: 'Brush Script MT', cursive;
    font-size: 4rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.header p {
    font-size: 1.2rem;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

section {
    margin-bottom: 60px;
    background: #1a202c;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    position: relative;
}

.section-header {
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #a0aec0;
    margin: 0;
}

.summary-heading {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    padding-left: 5px;
}

.summary-heading a {
    color: inherit;
    text-decoration: none;
}

/* Summary Section */
.summary-container {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    min-height: 400px; /* Ensure height for bg */
}

.summary-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.summary-content {
    width: 55%; /* Take up right side roughly */
    margin-left: auto; /* Push to right */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-height: 400px;
}

.summary-text-overlay {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: center;
}

/* Specific Stat Box Styles for Summary Section to match mockup */
#summary .stat-box {
    background-color: #0b0f19 !important; /* Dark background */
    border-radius: 4px;
    padding: 0 !important;
}

#summary .stat-value-container {
    background: transparent; /* Remove default background */
    padding: 20px 10px 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#summary .stat-label-container {
    background: transparent; /* Remove default background */
    padding: 5px 10px 20px 10px;
    border-top: none;
}

#summary .stat-value {
    font-size: 2.5rem; /* Larger font size */
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

#summary .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Gameplay Section */
.gameplay-container {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    min-height: 400px;
}

.gameplay-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.gameplay-content {
    width: 55%; /* Take up left side roughly */
    margin-right: auto; /* Push to left */
    margin-left: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-height: 400px;
    background: none; /* Remove solid background */
}

.gameplay-text-overlay {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gameplay-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

/* Re-use summary styles for gameplay stat boxes */
#gameplay .stat-box {
    background-color: #0b0f19 !important;
    border-radius: 4px;
    padding: 0 !important;
}

#gameplay .stat-value-container {
    background: transparent;
    padding: 20px 10px 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#gameplay .stat-label-container {
    background: transparent;
    padding: 5px 10px 20px 10px;
    border-top: none;
}

#gameplay .stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

#gameplay .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.9;
}

.gameplay-chevron {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Top Hero Section */
.top-hero-container {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    min-height: 400px;
}

.top-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.top-hero-content {
    width: 55%; /* Take up right side roughly */
    margin-left: auto; /* Push to right */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-height: 400px;
    background: none;
}

.top-hero-img {
    position: absolute;
    bottom: 0;
    left: 22%; /* Position in the center of the left empty space */
    transform: translateX(-50%);
    height: 115%;
    width: auto;
    object-fit: contain;
    object-position: bottom center;
    z-index: 1;
}

.top-hero-text-overlay {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.top-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: center;
}

/* Re-use summary styles for top-hero stat boxes */
#top-hero .stat-box {
    background-color: #0b0f19 !important;
    border-radius: 4px;
    padding: 0 !important;
}

#top-hero .stat-value-container {
    background: transparent;
    padding: 20px 10px 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#top-hero .stat-label-container {
    background: transparent;
    padding: 5px 10px 20px 10px;
    border-top: none;
}

#top-hero .stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

#top-hero .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Roles Section */
.roles-container {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roles-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Dark overlay for readability */
.roles-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.roles-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px;
    padding-top: 40px;
}

.roles-text-overlay {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.role-card {
    background-color: #0b0f19;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.role-card:hover {
    transform: translateY(-2px);
}

.role-title-container {
    padding: 30px 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.role-subtitle-container {
    padding: 15px 20px;
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.05); /* Subtle separator if needed, or rely on spacing */
}

.role-title {
    font-size: 2rem;
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}

.role-subtitle {
    font-size: 0.85rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0;
    opacity: 0.9;
}

/* Progress Section */
.progress-container {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    min-height: 400px;
}

.progress-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.progress-content {
    width: 55%; /* Take up left side roughly */
    margin-right: auto; /* Push to left */
    margin-left: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-height: 400px;
    background: none;
}

.progress-text-overlay {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.progress-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: center;
}

/* Re-use summary styles for progress stat boxes */
#progress .stat-box {
    background-color: #0b0f19 !important;
    border-radius: 4px;
    padding: 0 !important;
}

#progress .stat-value-container {
    background: transparent;
    padding: 20px 10px 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#progress .stat-label-container {
    background: transparent;
    padding: 5px 10px 20px 10px;
    border-top: none;
}

#progress .stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

#progress .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Objectives Section */
.objectives-container {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    min-height: 400px;
}

.objectives-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.objectives-content {
    width: 55%; /* Take up right side roughly */
    margin-left: auto; /* Push to right */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-height: 400px;
    background: none;
}

.objectives-text-overlay {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    text-align: center;
}

/* Re-use summary styles for objectives stat boxes */
#objectives .stat-box {
    background-color: #0b0f19 !important;
    border-radius: 4px;
    padding: 0 !important;
}

#objectives .stat-value-container {
    background: transparent;
    padding: 20px 10px 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#objectives .stat-label-container {
    background: transparent;
    padding: 5px 10px 20px 10px;
    border-top: none;
}

#objectives .stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

#objectives .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Rivals Section Layout */
.rivals-container {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    min-height: 500px;
}

.rivals-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.rivals-content {
    position: relative;
    z-index: 2;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rivals-grid {
    display: flex;
    width: 100%;
    flex: 1;
    height: auto;
    min-height: 400px;
    position: relative;
    align-items: center; /* Center vertically */
}

.rival-column {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center; /* Center content */
    justify-content: center;
    padding: 20px;
}

.rival-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 350px;
}

.rival-icon {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 3px solid #fff;
    margin-bottom: 0; /* Attach to box? No, mockup shows space? Actually looks attached or slightly overlapping or just very close. Let's give it a small margin */
    /* Looking at mockup, there is a gap. */
    margin-bottom: 20px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.rival-info {
    width: 100%;
    background-color: #0b0f19;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.rival-header {
    padding: 20px;
    text-align: center;
    background-color: #0b0f19;
}

.rival-name {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.rival-count {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    opacity: 0.9;
}

.rival-footer {
    background-color: #05070c; /* Darker footer */
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* border-top: 1px solid rgba(255,255,255,0.1); */
}

/* Hard Times Section */
.hard-times-container {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    min-height: 400px;
}

.hard-times-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hard-times-content {
    width: 55%; /* Take up right side roughly */
    margin-left: auto; /* Push to right */
    margin-right: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    min-height: 400px;
    background: none;
}

.hard-times-text-overlay {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hard-times-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    text-align: center;
}

/* Re-use summary styles for hard-times stat boxes */
#hard-times .stat-box {
    background-color: #0b0f19 !important;
    border-radius: 4px;
    padding: 0 !important;
}

#hard-times .stat-value-container {
    background: transparent;
    padding: 20px 10px 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hard-times .stat-label-container {
    background: transparent;
    padding: 5px 10px 20px 10px;
    border-top: none;
}

#hard-times .stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

#hard-times .stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Other Section Removed */

/* Panel Overlay Styles for Title/Subtitle */
.panel-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.panel-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.panel-title a {
    color: inherit;
    text-decoration: none;
}

.panel-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    margin: 0;
}

/* Common Stat Box Styles */
.stat-box {
    background: transparent !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
}

.stat-value-container {
    background: rgba(20, 20, 30, 0.7);
    padding: 20px 10px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label-container {
    background: rgba(10, 10, 15, 0.95);
    padding: 10px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.rank-value {
    font-size: clamp(1.1rem, 2.1vw, 1.8rem);
    text-align: center;
    padding: 0 6px;
    word-break: break-word;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    font-weight: 700;
    letter-spacing: 1px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 10px;
    display: inline-block;
    width: 100%;
}

.gamemodes-container {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    min-height: 500px;
}

.gamemodes-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.gamemodes-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
}

.gamemodes-text-overlay {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    font-weight: 800;
    font-style: italic;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gamemodes-chart-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Footer Section */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 260px 20px 60px 20px; /* Increased top padding to compensate for negative margin */
    margin-top: -200px; /* Pull footer up behind the main content */
    text-align: center;
    min-height: 600px;
    z-index: 1;
}

.footer-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-intro {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.footer-code-box {
    border: 2px solid #fff;
    padding: 15px 40px;
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 5px;
}

.footer-redeem-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 20px;
    opacity: 0.9;
}

.share-btn {
    background: linear-gradient(to right, #ffd700, #ffb700);
    color: #000;
    border: none;
    padding: 15px 60px;
    font-weight: 900;
    font-size: 2rem;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 0;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 2px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    border: 2px solid #e6ac00;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

.footer-text {
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 { font-size: 2.5rem; }
    
    .summary-container { flex-direction: column; }
    .summary-content {
        width: 100%;
        background: rgba(0, 0, 0, 0.7); /* Add background for readability on mobile */
    }
    .summary-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gameplay-container { flex-direction: column; }
    .gameplay-content {
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
    }
    .gameplay-grid { grid-template-columns: repeat(2, 1fr); }

    .top-hero-container { flex-direction: column !important; }
    .top-hero-img {
        position: relative;
        left: auto;
        transform: none;
        height: 300px;
        width: auto;
        margin: 0 auto;
        display: block;
        margin-top: 20px;
    }
    .top-hero-content {
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
    }
    .top-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .roles-grid { grid-template-columns: 1fr; }
    .role-title { font-size: 1.5rem; }

    .progress-content {
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
    }
    .progress-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .objectives-content {
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
    }
    .objectives-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .rivals-container { min-height: auto; }
    .rivals-grid { flex-direction: column; }
    .rival-column { width: 100%; height: auto; padding: 40px 20px; }
    .rival-card { max-width: 300px; }
    .rival-icon { width: 150px; height: 150px; }
    /* Removed old styles */

    .hard-times-container { flex-direction: column; }
    .hard-times-content {
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
    }
    .hard-times-grid { grid-template-columns: repeat(2, 1fr); }

    /* Other section removed from responsive styles */
    
    .gamemodes-content {
        background: rgba(0, 0, 0, 0.7);
    }
    .gamemodes-chart-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .gamemodes-container .pie-chart-container { margin: 0; }
    .gamemodes-container .modes-legend-container { text-align: center; }
    .gamemodes-container .modes-legend p { text-align: center !important; }
    
    .footer-container {
        margin-top: -100px;
        padding-top: 160px;
        min-height: auto;
    }

    .footer-code-box {
        font-size: 1.5rem;
        padding: 10px 20px;
    }

    .share-btn {
        font-size: 1.5rem;
        padding: 15px 40px;
        width: 100%;
        max-width: 300px;
    }
}

.chevron-container {
    display: flex;
    justify-content: center;
    margin-top: -1px; /* Overlap slightly to avoid gaps */
    margin-bottom: 30px;
    position: relative;
    z-index: 10;
}

.summary-chevron {
    display: block;
    max-width: 100%;
    height: auto;
}
