:root {
    --bg-color: #000000;
    --card-bg: #0a0a0a;
    --accent-color: #ff0000;
    --accent-glow: rgba(255, 0, 0, 0.5);
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --glass-bg: rgba(0, 0, 0, 0.85);
    --border-color: rgba(255, 0, 0, 0.15);
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Space Grotesk', sans-serif;
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* We'll use a custom cursor */
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

.custom-cursor.hovered {
    transform: scale(2.5);
}

/* Glow Background */
.glow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(193, 255, 0, 0.05) 0%, 
                transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(90deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent {
    color: var(--accent-color);
}

/* Header */
.site-credits-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
    z-index: 1002;
    padding: 8px 0;
    backdrop-filter: blur(5px);
}

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

.credits-left {
    display: flex;
    gap: 24px;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 4px 12px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.lang-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.lang-item:hover, .lang-item.active {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.flag-icon {
    border-radius: 3px;
    font-size: 1.2rem;
}

.lang-item .flag-icon {
    font-size: 1.1rem;
}

.credit-box {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
}

.c-label {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.c-value {
    color: var(--text-primary);
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.c-icon {
    font-size: 0.9rem;
}

header {
    position: absolute;
    top: 36px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.3);
}



header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: -1px;
    font-weight: 800;
    color: #ff0000;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
}

.btn-primary:hover {
    box-shadow: 0 0 25px var(--accent-glow);
    transform: translateY(-3px);
}

.btn-outline {
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
}

.btn-discord {
    background: linear-gradient(90deg, #5865F2, #818cf8);
    color: white;
    border-radius: 6px;
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.badge {
    display: inline-block;
    background: rgba(193, 255, 0, 0.1);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(193, 255, 0, 0.2);
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease;
}

.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.hero-aura {
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #200000 0%, #000000 100%);
    position: relative;
    border-radius: 50%;
    border: 4px solid #111;
    box-shadow: 0 0 50px rgba(255,0,0,0.1);
}

.aura-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 8px solid #000;
    border-radius: 50%;
    opacity: 1;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
    background: #ff0000;
}

.aura-circle.second {
    width: 250px;
    height: 250px;
    border: 2px solid #000;
    opacity: 0.8;
    background: transparent;
    z-index: 2;
}

.crew-symbol {
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    z-index: 10;
    position: relative;
}

/* Sharingan Tomoe */
.tomoe-container {
    position: absolute;
    inset: 0;
    z-index: 5;
    animation: rotateAura 20s linear infinite;
}

.tomoe {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
}

.tomoe::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 10px;
    width: 25px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    transform: rotate(45deg);
}

.tomoe:nth-child(1) { top: 15%; left: 50%; transform: translateX(-50%); }
.tomoe:nth-child(2) { bottom: 25%; left: 20%; transform: rotate(120deg); }
.tomoe:nth-child(3) { bottom: 25%; right: 20%; transform: rotate(240deg); }

@keyframes rotateAura {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Wars Section */
.wars-section {
    padding: 100px 0;
}

.war-status-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.war-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.team-a, .team-b {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.team-score {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
}

.vs {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 800;
}

.war-progress {
    height: 10px;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.progress-bar {
    height: 100%;
    background: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-glow);
}

.war-footer {
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
    font-weight: 600;
}

.status-live {
    color: #ff4444;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-live::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ff4444;
    border-radius: 50%;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

/* Perks Section */
.perks {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.perk-card {
    background: var(--card-bg);
    padding: 3rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.perk-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px);
}

.perk-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.perk-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.perk-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.perk-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.perk-bg {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    filter: blur(80px);
    opacity: 0.05;
    transition: var(--transition);
}

.perk-card:hover .perk-bg {
    opacity: 0.2;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 5rem;
    text-align: center;
    flex-wrap: wrap;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    font-family: var(--font-heading);
}

.stat-label {
    color: var(--text-secondary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Footer */
footer {
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-info p {
    margin-top: 1rem;
    color: var(--text-secondary);
}

.link-group h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.8rem;
}

.link-group a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.8rem;
}

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

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

/* Teams Section - Tabbed Layout */
.teams-section {
    padding: 100px 0;
}

.teams-tab-bar {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.teams-tab-bar::-webkit-scrollbar {
    display: none;
}

.team-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    background: transparent;
    transition: var(--transition);
    min-width: 200px;
}

.team-tab:hover {
    background: rgba(255, 0, 0, 0.05);
}

.team-tab.active {
    background: linear-gradient(135deg, #ff0000, #800000);
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
}

.tab-icon {
    font-size: 1.2rem;
}

.tab-info {
    display: flex;
    flex-direction: column;
}

.region {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-primary);
}

.code {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

.team-tab.active .code {
    color: rgba(255, 255, 255, 0.9);
}

.region-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.region-content.active {
    display: block;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 100%;
}

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

/* Coming Soon State */
.coming-soon-state {
    position: relative;
    text-align: center;
    padding: 6rem 2rem;
    margin-top: 2rem;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 0, 0, 0.1);
    background: rgba(10, 0, 0, 0.4);
}

.cs-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(255, 0, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cs-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 0, 0, 0.6);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 0, 0, 0.2);
    padding: 0.3rem 1rem;
    border-radius: 20px;
}

.cs-text {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    margin: 1rem 0;
    text-transform: none;
}

.cs-dots {
    color: var(--accent-color);
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.cs-sub {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    font-weight: 400;
    text-transform: none;
}

.teams-grid-detailed {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.team-card-detailed {
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 0, 0, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
    cursor: pointer;
    user-select: none;
}

.team-card-detailed:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
}

.team-card-detailed.expanded {
    border-color: var(--accent-color);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.35);
    transform: translateY(-5px);
}

/* Expanded Team Panel */
.team-expand-panel {
    width: 100%;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin 0.4s ease;
    opacity: 0;
    margin-top: 0;
    order: 999;
    flex-basis: 100%;
}

.team-expand-panel.open {
    max-height: 500px;
    opacity: 1;
    margin-top: 1.5rem;
}

.expand-inner {
    background: linear-gradient(135deg, rgba(15, 0, 0, 0.95), rgba(5, 5, 5, 0.98));
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.expand-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
}

.expand-inner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,0,0,0.12), transparent 70%);
    pointer-events: none;
}

.expand-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.expand-col-title {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 0, 0, 0.7);
    border-bottom: 1px solid rgba(255, 0, 0, 0.15);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}

.expand-team-name {
    font-size: 1.6rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
}

.expand-team-tag {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.expand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 0, 0, 0.12);
    border: 1px solid rgba(255, 0, 0, 0.25);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ff6666;
    width: fit-content;
}

.expand-stat {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.expand-stat-value {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--accent-color);
    line-height: 1;
}

.expand-stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.expand-member-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.expand-member-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition);
}

.expand-member-row:hover {
    padding-left: 0.4rem;
}

.expand-member-rank {
    font-size: 0.6rem;
    color: var(--accent-color);
    font-weight: 700;
    min-width: 20px;
}

.expand-member-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
}

.expand-member-role {
    font-size: 0.6rem;
    color: var(--text-secondary);
    margin-left: auto;
}

.expand-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
}

.expand-close-btn:hover {
    background: rgba(255, 0, 0, 0.3);
    transform: rotate(90deg);
}

.expand-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #ff0000, #cc0000);
    color: #fff;
    padding: 0.7rem 1.4rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    width: fit-content;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.expand-join-btn:hover {
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.5);
    transform: translateY(-2px);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.team-icon {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--accent-color);
}

.team-title-info h3 {
    font-size: 1rem;
    margin: 0;
}

.badge-mini {
    font-size: 0.6rem;
    background: rgba(255, 0, 0, 0.2);
    padding: 2px 6px;
    border-radius: 4px;
}

.tag {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.card-body {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.commander {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.comm-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #222;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.comm-info {
    display: flex;
    flex-direction: column;
}

.comm-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.comm-title {
    font-size: 0.65rem;
    color: var(--accent-color);
}

.member-count {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.region-tag {
    font-size: 0.75rem;
    color: var(--accent-color);
}

.view-link {
    font-size: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
}

.view-link:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero h1 { font-size: 3.5rem; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .hero-btns { justify-content: center; }
    .perks-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .teams-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .perks-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.8rem; }
    .teams-grid { grid-template-columns: 1fr; }
}

/* Google Translate Widget Overrides */
.skiptranslate iframe,
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
body {
    top: 0 !important;
}
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}
