/* ========== PAGES.CSS - Consolidated Page Styles ========== */

/* ========== COMMON PAGE SECTIONS ========== */
.page-section {
    padding: 60px 0 80px 0;
    position: relative;
    z-index: 1;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #e6e6e6;
    text-align: center;
    margin-bottom: 20px;
}

.section-text {
    color: #9a9a9a;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* ========== CARD BASE STYLES ========== */
.page-card {
    background: #141414 url('../images/wavy-background.png') repeat;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.page-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.85);
    z-index: 0;
}

.page-card > * {
    position: relative;
    z-index: 1;
}

.page-card:hover {
    border-color: rgba(244, 68, 68, 0.5);
}

/* ========== DOWNLOAD PAGE ========== */
.download-section {
    padding: 60px 0 80px 0;
    position: relative;
    z-index: 1;
}

/* Download Page - Large Download Button */
.download-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #f44444 0%, #d63939 100%);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(244, 68, 68, 0.3);
}

.download-btn-large:hover {
    background: linear-gradient(135deg, #ff5555 0%, #f44444 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(244, 68, 68, 0.4);
    color: #fff;
}

.download-btn-large:active {
    transform: translateY(0);
}

/* Download Feature Tags */
.download-feature-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #9a9a9a;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-feature-tag:hover {
    background: rgba(244, 68, 68, 0.1);
    border-color: rgba(244, 68, 68, 0.3);
    color: #f44444;
}

/* Download Info Cards */
.download-info-card {
    transition: all 0.3s ease;
}

.download-info-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Download Steps */
.download-step {
    transition: all 0.3s ease;
}

.download-step:hover {
    transform: translateX(5px);
}

/* Download Stats */
.download-stat {
    transition: all 0.3s ease;
}

.download-stat:hover {
    transform: scale(1.05);
}

/* Download Coming Soon */
.download-coming-soon {
    transition: all 0.3s ease;
}

.download-coming-soon:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

/* Floating Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(244, 68, 68, 0.6);
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(244, 68, 68, 0.4);
}

/* Glow Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: -1;
}

.glow-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244, 68, 68, 0.15) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation: floatOrb1 8s ease-in-out infinite;
}

.glow-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    top: 50px;
    right: -50px;
    animation: floatOrb2 10s ease-in-out infinite;
}

.glow-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    bottom: -50px;
    left: 30%;
    animation: floatOrb3 12s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 20px) scale(1.1); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 30px) scale(1.15); }
}

@keyframes floatOrb3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

/* Enhanced Featured Card Glow */
.download-featured-card {
    position: relative;
    overflow: hidden;
}

.download-featured-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #f44444, transparent, #f44444, transparent);
    background-size: 400% 400%;
    border-radius: 26px;
    z-index: -1;
    animation: borderGlow 4s ease infinite;
    opacity: 0.5;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Download Button - Triggers Card Background Expansion */
#download-btn {
    transition: all 0.3s ease;
}

/* Featured Card Expanding Gradient Effect - Originates from button area (right side) */
.download-featured-card .expanding-gradient {
    position: absolute;
    top: 50%;
    right: 15%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(244, 68, 68, 0.5) 0%, rgba(255, 107, 107, 0.3) 30%, rgba(244, 68, 68, 0.15) 50%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: width 0.5s cubic-bezier(0.5, 0, 0, 0.98), height 0.5s cubic-bezier(0.5, 0, 0, 0.98), right 0.5s cubic-bezier(0.5, 0, 0, 0.98), opacity 0.4s cubic-bezier(0.5, 0, 0, 0.98);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}

.download-featured-card.gradient-expanded .expanding-gradient {
    width: 250%;
    height: 250%;
    right: -50%;
    opacity: 1;
    transition: width 0.6s cubic-bezier(0.5, 0, 0, 0.98), height 0.6s cubic-bezier(0.5, 0, 0, 0.98), right 0.6s cubic-bezier(0.5, 0, 0, 0.98), opacity 0.3s cubic-bezier(0.5, 0, 0, 0.98);
}

.download-featured-card .pixel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/wavy-background.png') repeat;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.5, 0, 0, 0.98);
    pointer-events: none;
    z-index: 2;
}

.download-featured-card.gradient-expanded .pixel-overlay {
    opacity: 0.5;
    transition: opacity 0.3s cubic-bezier(0.5, 0, 0, 0.98);
}

.download-featured-card {
    transition: border-color 0.4s cubic-bezier(0.5, 0, 0, 0.98), box-shadow 0.4s cubic-bezier(0.5, 0, 0, 0.98);
}

.download-featured-card.gradient-expanded {
    border-color: rgba(244, 68, 68, 0.8);
    box-shadow: 0 0 80px rgba(244, 68, 68, 0.3), 0 0 120px rgba(244, 68, 68, 0.15);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.download-card {
    background: #141414 url('../images/wavy-background.png') repeat;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.85);
    z-index: 0;
}

.download-card > * {
    position: relative;
    z-index: 1;
}

.download-card.disabled {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(0.8);
}

.download-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.download-card-icon {
    font-size: 2rem;
}

.download-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.download-card-desc {
    color: #9a9a9a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(244, 68, 68, 0.2) 0%, rgba(139, 38, 53, 0.15) 100%);
    border: 1px solid #f44444;
    color: #f44444;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.download-btn::before,
.download-btn::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.download-btn::before {
    top: -4px;
    left: -4px;
    border-top: 2px solid #f44444;
    border-left: 2px solid #f44444;
}

.download-btn::after {
    bottom: -4px;
    right: -4px;
    border-bottom: 2px solid #f44444;
    border-right: 2px solid #f44444;
}

.download-btn:hover {
    background: linear-gradient(135deg, rgba(244, 68, 68, 0.4) 0%, rgba(139, 38, 53, 0.3) 100%);
    color: #fff;
    border-color: #ff5555;
}

.download-btn:hover::before {
    top: -8px;
    left: -8px;
    width: 16px;
    height: 16px;
    border-color: #ff5555;
}

.download-btn:hover::after {
    bottom: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
    border-color: #ff5555;
}

.secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #9a9a9a;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.secondary-btn::before,
.secondary-btn::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.secondary-btn::before {
    top: -3px;
    left: -3px;
    border-top: 2px solid rgba(255,255,255,0.5);
    border-left: 2px solid rgba(255,255,255,0.5);
}

.secondary-btn::after {
    bottom: -3px;
    right: -3px;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    border-right: 2px solid rgba(255,255,255,0.5);
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

.secondary-btn:hover::before,
.secondary-btn:hover::after {
    border-color: rgba(255,255,255,0.8);
}

.version-info {
    display: flex;
    justify-content: space-between;
    color: #7a7a7a;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.whats-new-link {
    color: #f44444;
    font-size: 0.95rem;
    text-decoration: underline;
    transition: color 0.2s;
}

.whats-new-link:hover {
    color: #ff6666;
}

.system-requirements {
    margin-top: 20px;
}

.system-requirements summary {
    font-size: 1rem;
    font-weight: 600;
    color: #e6e6e6;
    cursor: pointer;
    padding: 8px 0;
}

.system-requirements ul {
    margin-top: 12px;
    color: #9a9a9a;
    font-size: 0.9rem;
    padding-left: 20px;
}

.system-requirements li {
    margin-bottom: 6px;
}

.badge-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.status-badge {
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-badge.success {
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-badge.info {
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.coming-soon-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f44444;
    color: #fff;
    border-radius: 6px;
    padding: 4px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.reminder-box {
    margin-top: 60px;
    text-align: center;
    background: #141414 url('../images/wavy-background.png') repeat;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.reminder-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.9);
    z-index: 0;
}

.reminder-box > * {
    position: relative;
    z-index: 1;
}

.reminder-box h3 {
    color: #f44444;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.reminder-box p {
    color: #9a9a9a;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.help-link {
    margin-top: 40px;
    text-align: center;
}

.help-link a {
    color: #60a5fa;
    text-decoration: underline;
    font-size: 1rem;
}

.help-link a:hover {
    color: #93c5fd;
}

/* ========== FAQ/HELP PAGE ========== */
.help-section {
    padding: 60px 0 80px 0;
    position: relative;
    z-index: 1;
}

.help-section-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.help-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/wavy-background.png') repeat;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.help-container {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.help-sidebar {
    flex: 0 0 280px;
    min-width: 250px;
    align-self: flex-start;
    position: sticky;
    top: 100px;
}

.faq-sidebar,
.privacy-sidebar {
    top: 24px;
}

.help-main {
    flex: 1 1 400px;
    min-width: 0;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e6e6e6;
    margin-bottom: 8px;
}

.sidebar-subtitle {
    color: #9a9a9a;
    font-size: 1rem;
    margin-bottom: 24px;
}

.search-input {
    width: 100%;
    background: #181818 url('../images/wavy-background.png') repeat;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
    margin-bottom: 24px;
}

.search-input::placeholder {
    color: #7a7a7a;
}

.search-input:focus {
    border-color: #f44444;
}

.cat-btn {
    display: block;
    width: 100%;
    background: #181818 url('../images/wavy-background.png') repeat;
    color: #9a9a9a;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 10px;
    text-align: left;
    position: relative;
}

.cat-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(24, 24, 24, 0.7);
    border-radius: 8px;
    z-index: 0;
}

.cat-btn span {
    position: relative;
    z-index: 1;
}

.cat-btn.active,
.cat-btn:hover {
    border-color: #f44444;
    color: #fff;
}

.cat-btn.active::before {
    background: rgba(244, 68, 68, 0.15);
}

.support-box {
    margin-top: 40px;
    padding: 24px;
    background: #141414 url('../images/wavy-background.png') repeat;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.support-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.85);
    z-index: 0;
}

.support-box > * {
    position: relative;
    z-index: 1;
}

.support-box p {
    color: #9a9a9a;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(244, 68, 68, 0.3) 0%, rgba(139, 38, 53, 0.2) 100%);
    border: 1px solid #f44444;
    color: #f44444;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
}

.support-btn:hover {
    background: linear-gradient(135deg, rgba(244, 68, 68, 0.5) 0%, rgba(139, 38, 53, 0.3) 100%);
    color: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.faq-card {
    background: #141414 url('../images/wavy-background.png') repeat;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.85);
    z-index: 0;
    pointer-events: none;
}

.faq-card > * {
    position: relative;
    z-index: 1;
}

.faq-card:hover {
    border-color: rgba(244, 68, 68, 0.5);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e6e6e6;
    margin-bottom: 14px;
    padding-left: 14px;
    border-left: 3px solid #f44444;
}

.faq-answer {
    color: #9a9a9a;
    font-size: 0.95rem;
    line-height: 1.7;
}

.search-highlight {
    background: rgba(244, 68, 68, 0.3);
    color: #fff;
    padding: 0 2px;
    border-radius: 2px;
}

.toc-list a {
    color: #9a9a9a;
    text-decoration: none;
}

.toc-list a:hover {
    color: #e6e6e6;
    text-decoration: underline;
}

.legal-card h3[id] {
    scroll-margin-top: 110px;
}

/* ========== ABOUT PAGE ========== */
.about-section {
    padding: 60px 0 80px 0;
    position: relative;
    z-index: 1;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.milestone-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0;
}

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

.milestone-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.milestone-text {
    color: #e6e6e6;
    font-weight: 600;
    font-size: 1rem;
}

.diff-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 30px;
}

.diff-card {
    background: #141414 url('../images/wavy-background.png') repeat;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    min-width: 260px;
    max-width: 320px;
    flex: 1 1 260px;
    position: relative;
    overflow: hidden;
}

.diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.85);
    z-index: 0;
}

.diff-card > * {
    position: relative;
    z-index: 1;
}

.diff-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.diff-title {
    font-weight: 700;
    color: #e6e6e6;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.diff-desc {
    color: #9a9a9a;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Team Section */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.team-card {
    background: #141414 url('../images/wavy-background.png') repeat;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px 24px;
    text-align: center;
    min-width: 240px;
    max-width: 280px;
    flex: 1 1 240px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.85);
    z-index: 0;
}

.team-card > * {
    position: relative;
    z-index: 1;
}

.team-card:hover {
    border-color: rgba(244, 68, 68, 0.5);
    transform: translateY(-3px);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 3px solid #f44444;
    box-shadow: 0 4px 15px rgba(244, 68, 68, 0.3);
}

.team-name {
    font-weight: 700;
    color: #e6e6e6;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.team-role {
    color: #f44444;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-desc {
    color: #9a9a9a;
    font-size: 0.9rem;
    line-height: 1.6;
}

.team-card.placeholder {
    opacity: 0.7;
}

.team-card.placeholder .team-avatar {
    border-style: dashed;
    opacity: 0.6;
}

.join-box {
    margin-top: 60px;
    text-align: center;
    background: #141414 url('../images/wavy-background.png') repeat;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 50px 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
}

.join-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.9);
    z-index: 0;
}

.join-box > * {
    position: relative;
    z-index: 1;
}

.join-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(244, 68, 68, 0.3) 0%, rgba(139, 38, 53, 0.2) 100%);
    border: 1px solid #f44444;
    color: #f44444;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
}

.join-btn:hover {
    background: linear-gradient(135deg, rgba(244, 68, 68, 0.5) 0%, rgba(139, 38, 53, 0.3) 100%);
    color: #fff;
}

/* ========== CHANGELOG PAGE ========== */
.changelog-section {
    padding: 60px 0 80px 0;
    position: relative;
    z-index: 1;
}

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

.version-card {
    background: #141414 url('../images/wavy-background.png') repeat;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.version-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.85);
    z-index: 0;
}

.version-card > * {
    position: relative;
    z-index: 1;
}

.version-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.version-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e6e6e6;
}

.version-date {
    color: #7a7a7a;
    font-size: 0.95rem;
}

.version-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-launch {
    background: rgba(244, 68, 68, 0.2);
    color: #f44444;
    border: 1px solid rgba(244, 68, 68, 0.3);
}

.badge-tbd {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.version-content {
    color: #9a9a9a;
    font-size: 1rem;
    line-height: 1.8;
}

.version-content h4 {
    color: #e6e6e6;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
}

.version-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.version-content li {
    margin-bottom: 8px;
}

/* ========== CONTACT PAGE ========== */
.contact-section {
    padding: 60px 0 80px 0;
    position: relative;
    z-index: 1;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-card {
    background: #141414 url('../images/wavy-background.png') repeat;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 50px 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.85);
    z-index: 0;
}

.contact-card > * {
    position: relative;
    z-index: 1;
}

.contact-icon {
    font-size: 3rem;
    color: #f44444;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e6e6e6;
    margin-bottom: 16px;
}

.contact-desc {
    color: #9a9a9a;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(244, 68, 68, 0.3) 0%, rgba(139, 38, 53, 0.2) 100%);
    border: 1px solid #f44444;
    color: #f44444;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
}

.contact-btn::before,
.contact-btn::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.contact-btn::before {
    top: -4px;
    left: -4px;
    border-top: 2px solid #f44444;
    border-left: 2px solid #f44444;
}

.contact-btn::after {
    bottom: -4px;
    right: -4px;
    border-bottom: 2px solid #f44444;
    border-right: 2px solid #f44444;
}

.contact-btn:hover {
    background: linear-gradient(135deg, rgba(244, 68, 68, 0.5) 0%, rgba(139, 38, 53, 0.3) 100%);
    color: #fff;
}

.contact-btn:hover::before {
    top: -8px;
    left: -8px;
    width: 16px;
    height: 16px;
}

.contact-btn:hover::after {
    bottom: -8px;
    right: -8px;
    width: 16px;
    height: 16px;
}

/* ========== NEWS PAGE ========== */
.news-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.news-card {
    background: #141414 url('../images/wavy-background.png') repeat;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.2s;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.85);
    z-index: 0;
}

.news-card > * {
    position: relative;
    z-index: 1;
}

.news-card:hover {
    border-color: rgba(244, 68, 68, 0.5);
    transform: translateY(-2px);
}

.news-date {
    color: #7a7a7a;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e6e6e6;
    margin-bottom: 14px;
}

.news-excerpt {
    color: #9a9a9a;
    font-size: 1rem;
    line-height: 1.7;
}

/* ========== LEGAL PAGES (Privacy, Terms, License) ========== */
.legal-section {
    padding: 60px 0 80px 0;
    position: relative;
    z-index: 1;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    color: #9a9a9a;
    font-size: 1rem;
    line-height: 1.8;
}

.legal-card {
    background: #141414 url('../images/wavy-background.png') repeat;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 20, 20, 0.9);
    z-index: 0;
}

.legal-card > * {
    position: relative;
    z-index: 1;
}

.legal-card h3 {
    color: #f44444;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.legal-card h4 {
    color: #e6e6e6;
    font-size: 1.05rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-card p {
    margin-bottom: 14px;
}

.legal-card ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.legal-card li {
    margin-bottom: 8px;
}

.legal-content h2 {
    color: #e6e6e6;
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 16px;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* ========== FOOTER STYLES ========== */
.footer-box {
    display: inline-flex;
    gap: 12px;
}

.footer-box .btn-nav-sm {
    background: #181818 url('../images/wavy-background.png') repeat;
    background-size: auto;
    padding: 12px 24px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.25);
}

.footer-box .btn-nav-sm:hover {
    background: #181818 url('../images/wavy-background.png') repeat;
    border-color: rgba(255,255,255,0.5);
}

.btn-nav-sm {
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    color: #9a9a9a;
    font-size: 0.8rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.btn-nav-sm::before,
.btn-nav-sm::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    transition: all 0.3s ease;
}

.btn-nav-sm::before {
    top: -2px;
    left: -2px;
    border-top: 2px solid rgba(255,255,255,0.5);
    border-left: 2px solid rgba(255,255,255,0.5);
}

.btn-nav-sm::after {
    bottom: -2px;
    right: -2px;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    border-right: 2px solid rgba(255,255,255,0.5);
}

.btn-nav-sm:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

.btn-nav-sm:hover::before {
    top: -5px;
    left: -5px;
    width: 8px;
    height: 8px;
}

.btn-nav-sm:hover::after {
    bottom: -5px;
    right: -5px;
    width: 8px;
    height: 8px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .help-container {
        flex-direction: column;
    }
    
    .help-sidebar {
        flex: 1 1 100%;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .milestone-row {
        gap: 20px;
    }
    
    .team-card {
        min-width: 100%;
    }
    
    .diff-card {
        min-width: 100%;
        max-width: 100%;
    }
}

/* ========== TUTORIALS/GUIDE PAGE ========== */
.tutorial-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tutorial-card:hover {
    border-color: rgba(244, 68, 68, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.tutorial-video {
    width: 100%;
    background: #0a0a0a;
}

.tutorial-video iframe {
    display: block;
    border-radius: 0;
}

.tutorial-content {
    padding: 20px 24px 24px;
}

.tutorial-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #e6e6e6;
    margin-bottom: 10px;
}

.tutorial-card:hover .tutorial-title {
    color: #f44444;
}

.tutorial-desc {
    font-size: 0.95rem;
    color: #9a9a9a;
    line-height: 1.6;
    margin-bottom: 16px;
}

.tutorial-tag {
    display: inline-block;
    background: rgba(244, 68, 68, 0.15);
    color: #f44444;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

#tutorial-search:focus,
#tutorial-category:focus {
    border-color: rgba(244, 68, 68, 0.5);
}

@media (max-width: 768px) {
    #tutorials-grid {
        grid-template-columns: 1fr !important;
    }
    
    .tutorial-card {
        max-width: 100%;
    }
}
