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

body {
    font-family: 'Poppins', sans-serif;
    background: #000000;
    min-height: 100vh;
    color: #fff;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 140, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 100, 0, 0.1) 0%, transparent 50%);
    animation: gradient 15s ease infinite;
    z-index: -1;
}

@keyframes gradient {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 20px) rotate(180deg); }
}

.header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 140, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.2);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: 2px solid rgba(255, 140, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.clan-name {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    color: #94a3b8;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s;
    font-weight: 600;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 140, 0, 0.1);
}

.nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.3), rgba(255, 165, 0, 0.3));
}

.btn-entrar {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.btn-entrar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.4);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #ff8c00;
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.clan-selector-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.9) 100%);
    border-bottom: 1px solid rgba(255, 140, 0, 0.3);
    padding: 1.5rem 0;
}

.clan-selector-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.clan-selector-title {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.clan-tabs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.clan-tab {
    padding: 0.75rem 1.5rem;
    background: rgba(20, 20, 20, 0.8);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 12px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 0.95rem;
}

.clan-tab:hover {
    border-color: #ff8c00;
    color: #fff;
    transform: translateY(-2px);
}

.clan-tab.active {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.4);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.section {
    display: none;
}

.section.active {
    display: block;
    animation: fadeIn 0.5s;
}

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

.clan-header-info {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.clan-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #ff8c00 50%, #ffa500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.clan-subtitle {
    color: #ff8c00;
}

.clan-description {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
}

.clan-badge-container {
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(255, 165, 0, 0.15));
    border: 3px solid rgba(255, 140, 0, 0.4);
    box-shadow: 0 20px 60px rgba(255, 140, 0, 0.3);
    transition: all 0.3s;
}

.clan-badge-container:hover {
    transform: scale(1.05) rotate(2deg);
}

.clan-badge-large {
    width: 90%;
    height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 140, 0, 0.5));
}

.war-status-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(255, 140, 0, 0.4);
    border-radius: 25px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 15px 50px rgba(255, 140, 0, 0.2);
}

.war-status-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.war-status-badge {
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.war-status-badge.preparation {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.war-status-badge.inWar {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.war-status-title {
    font-size: 1.3rem;
    color: #94a3b8;
}

.war-score-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.war-team {
    background: rgba(20, 20, 20, 0.7);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.team-name {
    color: #94a3b8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.team-score {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.team-score.enemy-score {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-destruction {
    color: #64748b;
    font-size: 1.2rem;
}

.vs-divider {
    font-size: 2.5rem;
    font-weight: 900;
    color: #475569;
}

.requirements-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.req-item {
    flex: 1;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.req-icon {
    font-size: 2rem;
}

.req-text {
    color: #94a3b8;
    font-size: 1rem;
}

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

.stat-card-main {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 1px solid rgba(255, 140, 0, 0.4);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-card-main:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.6);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #94a3b8;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-players-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.top-player-card {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    border-radius: 20px;
    padding: 2px;
}

.top-player-card > div {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-radius: 19px;
    padding: 2rem;
}

.top-player-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.top-icon {
    font-size: 2rem;
}

.top-title {
    font-size: 1.1rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-player-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.top-player-value {
    color: #ff8c00;
    font-size: 1.2rem;
    font-weight: 600;
}

.metrics-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.metric-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 1px solid rgba(255, 140, 0, 0.4);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
}

.metric-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.metric-label {
    color: #94a3b8;
    font-size: 0.9rem;
}

.events-section {
    margin-top: 3rem;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 1px solid rgba(255, 140, 0, 0.4);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
}

.event-icon {
    font-size: 3rem;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.event-schedule {
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.event-next {
    color: #ff8c00;
    font-weight: 600;
}

.warlog-container {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(255, 140, 0, 0.4);
    border-radius: 20px;
    padding: 2rem;
    overflow-x: auto;
}

.warlog-table {
    width: 100%;
    border-collapse: collapse;
}

.warlog-table th {
    text-align: left;
    padding: 1rem;
    color: #94a3b8;
    border-bottom: 2px solid rgba(255, 140, 0, 0.2);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.warlog-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 140, 0, 0.1);
}

.warlog-table tr:hover {
    background: rgba(255, 140, 0, 0.05);
}

.result-win {
    color: #10b981;
    font-weight: 700;
}

.result-lose {
    color: #ef4444;
    font-weight: 700;
}

.result-tie {
    color: #64748b;
    font-weight: 700;
}

.members-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 140, 0, 0.4);
    border-radius: 15px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: #ff8c00;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 140, 0, 0.4);
    border-radius: 10px;
    color: #94a3b8;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.filter-btn:hover {
    border-color: #ff8c00;
    color: #fff;
}

.filter-btn.active {
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    color: #fff;
    border-color: transparent;
}

.sort-select {
    padding: 0.75rem 1.5rem;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 140, 0, 0.4);
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.member-card {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 1px solid rgba(255, 140, 0, 0.4);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.member-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.6);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
}

.member-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.member-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.member-tag {
    color: #64748b;
    font-size: 0.85rem;
}

.member-role {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 140, 0, 0.2);
    border-radius: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
}

.member-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

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

.member-stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff8c00;
}

.member-stat-label {
    font-size: 0.75rem;
    color: #94a3b8;
}

.join-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(255, 140, 0, 0.4);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
}

.join-text {
    font-size: 1.3rem;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.join-tags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.join-tag {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 140, 0, 0.2);
    border: 1px solid rgba(255, 140, 0, 0.4);
    border-radius: 20px;
    color: #ff8c00;
    font-weight: 600;
}

.btn-join-clan {
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
    border: none;
    border-radius: 15px;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-join-clan:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.5);
}

.loading {
    text-align: center;
    padding: 3rem;
    color: #64748b;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .header-content {
        padding: 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .header-logo {
        width: 40px;
        height: 40px;
    }
    
    .clan-name {
        font-size: 1.2rem;
    }
    
    .menu-toggle {
        display: flex;
        order: 2;
    }
    
    .header-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 20, 0.98) 100%);
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 1rem;
        border-bottom: 2px solid rgba(255, 140, 0, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        z-index: 999;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    
    .header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 140, 0, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .btn-entrar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 0;
        z-index: 998;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    }
    
    .clan-selector-container {
        padding: 0 1rem;
    }
    
    .clan-tabs {
        justify-content: center;
    }
    
    .clan-tab {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .clan-header-info {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .clan-title {
        font-size: 2.5rem;
    }
    
    .clan-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .clan-badge-container {
        margin: 0 auto;
        width: 250px;
        height: 250px;
    }
    
    .stats-grid-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card-main {
        padding: 1.5rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .war-status-section {
        padding: 1.25rem;
    }
    
    .req-item {
        padding: 1rem 1.25rem;
    }
    
    .event-card {
        padding: 1.25rem;
    }
    
    .member-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .top-players-section > * {
        width: 100%;
    }
    
    .metrics-section > * {
        width: 100%;
    }
    
    .war-score-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .vs-divider {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }
    
    .team-score {
        font-size: 3rem;
    }
    
    .requirements-section {
        flex-direction: column;
        gap: 1rem;
    }
    
    .top-players-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .metrics-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .members-controls {
        flex-direction: column;
    }
    
    .search-input {
        width: 100%;
        min-width: 100%;
    }
    
    .filter-buttons {
        flex-wrap: wrap;
    }
    
    .filter-btn, .sort-select {
        flex: 1;
        min-width: 120px;
    }
    
    .members-grid {
        grid-template-columns: 1fr;
    }
    
    .warlog-container {
        overflow-x: auto;
        padding: 1rem;
    }
    
    .warlog-table {
        font-size: 0.85rem;
    }
    
    .warlog-table th,
    .warlog-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .join-section {
        padding: 2rem 1rem;
    }
    
    .join-text {
        font-size: 1.1rem;
    }
    
    .join-tags {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .btn-join-clan {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .clan-name {
        font-size: 1rem;
    }
    
    .clan-title {
        font-size: 2rem;
    }
    
    .clan-badge-container {
        width: 200px;
        height: 200px;
    }
    
    .stats-grid-main {
        grid-template-columns: 1fr;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
    
    .team-score {
        font-size: 2.5rem;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .member-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .war-status-section,
    .req-item,
    .event-card {
        padding: 1rem;
    }
}
