/* Reset and Base Styles */
:root {
    --primary-color: #b82e2e; /* Rich Red */
    --secondary-color: #d4af37; /* Gold */
    --bg-dark: #121212;
    --bg-darker: #0a0a0a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
}

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

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

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* Navbar */
.navbar {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-logo {
    height: 40px;
    width: auto;
    border-radius: 50%;
}

.nav-links { display: flex; gap: 3rem; }
.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    position: relative;
}

.nav-links a:hover, .nav-links a.active { color: var(--secondary-color); }
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: 0.3s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 2px;
    transition: 0.3s;
    border: 1px solid var(--primary-color);
}

.nav-cta:hover {
    background-color: transparent;
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content {
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeIn 1.5s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
    letter-spacing: 5px;
    background: linear-gradient(to bottom, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 15px 40px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}
.btn-primary:hover {
    background-color: #902020;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--text-light);
    color: var(--text-light);
    background: transparent;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

/* Sections */
.section { padding: 100px 0; }
.intro-section { text-align: center; background: var(--bg-dark); }
.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-align: center;
}
.section-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Showcase Grid */
.showcase-section { background: var(--bg-darker); }
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reverse .showcase-grid { direction: rtl; }
.reverse .showcase-text { direction: ltr; }

.showcase-text h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}
.showcase-text p { font-size: 1.1rem; color: var(--text-gray); }

.showcase-img img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.5s;
}
.showcase-img:hover img { transform: scale(1.02); }

/* Features Grid */
.features-section { background: var(--bg-dark); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    position: relative;
    height: 400px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: 0.3s;
}

.feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: 0.5s;
}

.feature-card:hover .feature-bg { opacity: 0.2; transform: scale(1.1); }
.feature-card:hover { border-color: var(--secondary-color); }

.feature-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.feature-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/* Stats Grid */
.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

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

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

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

/* News Section */
.news-section { background: var(--bg-darker); }
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-card {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.news-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.news-date {
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.news-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.news-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.read-more {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.read-more:hover { text-decoration: underline; }

/* Video Section */
.video-section { 
    background: var(--bg-dark); 
    padding: 80px 0;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.video-container video {
    width: 100%;
    display: block;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

/* Parallax Showcase */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 150px 0;
}

.parallax-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.showcase-content.centered {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.showcase-content.centered h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Combat Section Enhancements */
.glow-effect img {
    box-shadow: 0 0 30px rgba(184, 46, 46, 0.3);
}

.feature-list {
    margin-top: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-gray);
}

.feature-list strong { color: var(--text-light); }

/* Gallery Section */
.gallery-section { background: var(--bg-dark); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    height: 200px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img { transform: scale(1.1); }

/* Characters Section */
.characters-section { background: var(--bg-darker); }
.characters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.character-card {
    background: rgba(255,255,255,0.03);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: 0.3s;
}

.character-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.character-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.character-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.character-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* System Requirements Section */
.requirements-section { background: var(--bg-darker); }
.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.req-column {
    background: rgba(255,255,255,0.03);
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.req-column.highlighted {
    background: rgba(184, 46, 46, 0.1);
    border-color: var(--primary-color);
}

.req-column h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.req-list {
    list-style: none;
}

.req-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-gray);
}

.req-list li:last-child { border-bottom: none; }
.req-list strong { color: var(--text-light); }

.platform-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--secondary-color);
    color: var(--text-gray);
}

/* FAQ Section */
.faq-section { background: var(--bg-dark); }
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border-left: 3px solid var(--primary-color);
    transition: 0.3s;
}

.faq-item:hover {
    background: rgba(255,255,255,0.05);
    border-left-color: var(--secondary-color);
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #050505;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

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

/* Download Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 3rem 3.5rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    animation: slideUp 0.4s ease;
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(90deg);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
    transform: translateX(5px);
}

.download-btn svg {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
}

.download-btn.app-store svg {
    color: var(--text-light);
}

.download-btn.google-play svg {
    color: var(--text-light);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

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

.btn-store {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Guides Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    padding: 150px 0 80px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    padding: 60px 40px;
    max-width: 1400px;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.sidebar h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 0.8rem;
}

.sidebar ul li a {
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: 0.3s;
    display: block;
    padding: 0.5rem 0;
    border-left: 2px solid transparent;
    padding-left: 1rem;
}

.sidebar ul li a:hover {
    color: var(--secondary-color);
    border-left-color: var(--secondary-color);
}

.content {
    min-width: 0;
}

.guide-section {
    margin-bottom: 4rem;
}

.guide-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

/* Tabbed Interface Styles */
.guide-section {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.guide-section.active {
    display: block;
}

.sidebar ul li a.active {
    color: var(--secondary-color);
    border-left-color: var(--secondary-color);
    font-weight: 600;
    background: rgba(212, 175, 55, 0.05);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.guide-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-left: 3px solid var(--primary-color);
    margin-bottom: 1.5rem;
}

.guide-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.guide-card p, .guide-card ul {
    color: var(--text-gray);
    line-height: 1.8;
}

.guide-card ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.guide-card ul li {
    margin-bottom: 0.5rem;
}

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

.mechanic {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    transition: 0.3s;
}

.mechanic:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-color);
}

.mechanic h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
}

.mechanic p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

.highlight-red {
    color: #ff4444;
    font-weight: 600;
}

.highlight-gold {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Weapon Tier List Styles */
.tier-container {
    margin-top: 2rem;
}

.tier-section {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.tier-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.s-tier-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.a-tier-badge {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    color: #000;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
}

.b-tier-badge {
    background: linear-gradient(135deg, #cd7f32 0%, #e8a87c 100%);
    color: #000;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.5);
}

.tier-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-light);
    margin: 0;
}

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

.weapon-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.weapon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.weapon-card:hover::before {
    transform: scaleX(1);
}

.weapon-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.weapon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.weapon-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    text-align: center;
}

.weapon-name-cn {
    font-family: 'Noto Serif SC', serif;
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 400;
}

.weapon-card p:not(.weapon-name-cn) {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: center;
}

/* Criteria Section */
.criteria-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.criteria-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.criteria-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}

.criteria-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.criteria-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.criteria-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.criteria-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Attribution */
.attribution {
    margin-top: 3rem;
    background: rgba(212, 175, 55, 0.05);
    border-left-color: var(--secondary-color);
    text-align: center;
}

.attribution p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.attribution a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.attribution a:hover {
    color: var(--text-light);
}

/* Redeem Codes Section */
.code-container {
    margin-top: 2rem;
}

.code-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.code-card.active {
    border-color: rgba(76, 175, 80, 0.5);
    background: rgba(76, 175, 80, 0.05);
}

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

.code-badge {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.code-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin: 0;
}

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

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

.code-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
}

.code-text {
    font-family: 'Fira Code', monospace;
    font-size: 1.3rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
    font-weight: 600;
}

.copy-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.copy-btn:hover {
    background: #902020;
    transform: translateY(-2px);
}

.code-note {
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
    padding: 1rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tip-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: 0.3s;
    text-align: center;
}

.tip-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.tip-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.tip-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Builds Section */
.builds-tier-container {
    margin-top: 2rem;
}

.build-tier {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.build-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

.build-card:last-child {
    margin-bottom: 0;
}

.build-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
    transform: translateX(5px);
}

.build-header {
    margin-bottom: 1rem;
}

.build-header h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}

.build-weapons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.weapon-tag {
    background: linear-gradient(135deg, var(--primary-color), #a02525);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.build-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.build-card p:last-child {
    margin-bottom: 0;
}

.build-card strong {
    color: var(--secondary-color);
}

.build-note {
    background: rgba(255, 193, 7, 0.1);
    border-left: 3px solid #ffc107;
    padding: 0.8rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .showcase-grid { grid-template-columns: 1fr; gap: 2rem; }
    .reverse .showcase-grid { direction: ltr; }
    .nav-links { display: none; }
    .requirements-grid { grid-template-columns: 1fr; gap: 2rem; }
    .faq-grid { grid-template-columns: 1fr; }
    .characters-grid { grid-template-columns: 1fr; }
    .stats-grid { flex-direction: column; gap: 2rem; }
    
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .download-btn {
        padding: 0.9rem 1.2rem;
    }
    
    /* Guides Page Responsive */
    .layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 40px 20px;
    }
    
    .sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .page-header {
        padding: 120px 20px 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .weapon-grid {
        grid-template-columns: 1fr;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
    
    .tier-badge {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .tier-header h3 {
        font-size: 1.5rem;
    }
    
    .mechanic-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .code-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .copy-btn {
        width: 100%;
    }
}
