@import url('../css/main.css');

/* --- Page Specific Variables --- */
:root {
    --rule-card-bg: rgba(22, 22, 36, 0.6);
    --rule-card-border: rgba(37, 37, 64, 0.5);
    --critical: #ff4757;
    --important: #ffa502;
    --warning: #eccc68;
    --moderate: #7bed9f;
    --neon-blue: #00f3ff;
    --neon-purple: #bc13fe;
    --glass-bg: rgba(16, 18, 27, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --tech-bg: rgba(10, 10, 18, 0.95);
}

/* --- Background Effects --- */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orbs {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--discord);
    bottom: -100px;
    right: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, 50px); }
}

/* --- Navbar (Specific to Rules Page) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Oxanium', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-brand i {
    color: #5865F2; /* Discord-ish blue/purple */
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(88, 101, 242, 0.5));
}

.nav-brand span {
    color: #fff;
}

.nav-server {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.server-ip {
    font-family: 'Oxanium', monospace;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.server-ip:hover {
    color: #5865F2;
    text-shadow: 0 0 15px rgba(88, 101, 242, 0.5);
}

.online-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.online-indicator i {
    font-size: 0.5rem;
    color: #10b981;
    box-shadow: 0 0 8px #10b981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { opacity: 0.6; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { opacity: 1; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { opacity: 0.6; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* --- Hero Section --- */
.hero {
    padding: 100px 20px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(74, 30, 140, 0.25) 0%, transparent 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 60vh;
    width: 100%;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    animation: fadeInDown 1s ease-out;
    position: relative;
    z-index: 2;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #a5a5ff 50%, #bc13fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(188, 19, 254, 0.3);
    letter-spacing: -2px;
    animation: glowText 3s ease-in-out infinite alternate;
}

@keyframes glowText {
    from { text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(188, 19, 254, 0.3); }
    to { text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(188, 19, 254, 0.6), 0 0 10px rgba(0, 243, 255, 0.4); }
}

.hero-description {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(22, 22, 36, 0.6);
    padding: 20px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2), 0 0 15px rgba(99, 102, 241, 0.2);
}

.stat i {
    font-size: 2rem;
    color: var(--accent-primary);
    filter: drop-shadow(0 0 5px var(--accent-primary));
}

.stat-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- Quick Rules --- */
.quick-rules {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--accent-primary);
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.rule-card {
    background: var(--rule-card-bg);
    border: 1px solid var(--rule-card-border);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out backwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.rules-grid .rule-card:nth-child(1) { animation-delay: 0.1s; }
.rules-grid .rule-card:nth-child(2) { animation-delay: 0.2s; }
.rules-grid .rule-card:nth-child(3) { animation-delay: 0.3s; }
.rules-grid .rule-card:nth-child(4) { animation-delay: 0.4s; }

.rule-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.rule-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.rule-card:hover .rule-icon {
    transform: scale(1.1);
}

.rule-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.rule-card.critical:hover { border-color: var(--critical); box-shadow: 0 0 20px rgba(255, 71, 87, 0.2); }
.rule-card.important:hover { border-color: var(--important); box-shadow: 0 0 20px rgba(255, 165, 2, 0.2); }

.rule-card.critical .rule-icon, .rule-card.critical h3 { color: var(--critical); }
.rule-card.important .rule-icon, .rule-card.important h3 { color: var(--important); }
.rule-card.warning .rule-icon, .rule-card.warning h3 { color: var(--warning); }

.rule-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Rules Navigation (Improved) --- */
.rules-nav {
    background: rgba(10, 10, 18, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-primary);
    padding: 15px 0;
    position: sticky;
    top: 85px;
    z-index: 90;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.hidden ~ .rules-nav {
    top: 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.nav-item:hover, .nav-item.active {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 30, 140, 0.4);
}

.nav-item i {
    font-size: 1.1em;
}

.nav-item.report {
    border-color: rgba(229, 83, 75, 0.3);
    color: #ff6b6b;
}

.nav-item.report:hover, .nav-item.report.active {
    background: var(--error);
    border-color: var(--error);
    color: white;
    box-shadow: 0 5px 15px rgba(229, 83, 75, 0.4);
}

/* --- Breadcrumb --- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    color: var(--accent-primary);
}

.breadcrumb i {
    font-size: 0.8rem;
}

/* --- Page Header --- */
.page-header {
    margin: 20px auto 40px;
    text-align: center;
    padding: 50px 20px;
    background: radial-gradient(circle at center, rgba(74, 30, 140, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1200px;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, #a5a5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Rules Summary --- */
.rules-summary {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.summary-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-primary);
    transition: transform 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-secondary);
}

.summary-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: var(--accent-secondary);
    font-size: 1.4rem;
}

.summary-card h3 i {
    color: var(--accent-primary);
}

.summary-card ul {
    list-style: none;
}

.summary-card li {
    margin-bottom: 15px;
    padding-left: 0;
    position: relative;
    color: var(--text-secondary);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-card li i {
    color: var(--accent-primary);
    min-width: 20px;
    text-align: center;
}

/* --- Detailed Rules Page Styling --- */
.rules-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.rule-category {
    margin-bottom: 60px;
}

.rule-category h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-primary);
}

.rule-category h2 i {
    color: var(--accent-primary);
}

.rule-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rule-item {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rule-item:hover {
    transform: translateX(5px);
    box-shadow: -5px 5px 20px rgba(0,0,0,0.2);
}

.rule-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--border-primary);
}

.rule-item.critical::before { background: var(--critical); }
.rule-item.important::before { background: var(--important); }
.rule-item.warning::before { background: var(--warning); }

.rule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.rule-header h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 700;
}

.rule-severity {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.critical .rule-severity { background: rgba(255, 71, 87, 0.1); color: var(--critical); }
.important .rule-severity { background: rgba(255, 165, 2, 0.1); color: var(--important); }
.warning .rule-severity { background: rgba(236, 204, 104, 0.1); color: var(--warning); }

.rule-item p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.rule-item ul {
    list-style: none;
    margin-bottom: 20px;
    padding-left: 0;
}

.rule-item li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.rule-item li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.2rem;
    top: -1px;
}

.rule-item.critical li::before { color: var(--critical); }
.rule-item.important li::before { color: var(--important); }
.rule-item.warning li::before { color: var(--warning); }

.rule-punishment {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.rule-punishment i {
    color: var(--error);
}

/* --- Definitions Section --- */
.definitions {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.definitions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.definition-card {
    background: rgba(22, 22, 36, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.definition-card:hover {
    background: rgba(22, 22, 36, 0.8);
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.definition-card h3 {
    color: var(--accent-secondary);
    margin-bottom: 15px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.definition-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* --- Important Notice --- */
.notice {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.notice-content {
    display: flex;
    gap: 30px;
    background: linear-gradient(135deg, rgba(255, 165, 2, 0.1), rgba(22, 22, 36, 0.8));
    border: 1px solid rgba(255, 165, 2, 0.3);
    padding: 40px;
    border-radius: 20px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.notice-icon {
    font-size: 3rem;
    color: var(--important);
    background: rgba(255, 165, 2, 0.1);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.notice-text h3 {
    color: var(--important);
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.notice-text p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.notice-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* --- Sanctions System --- */
.sanctions-system {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.sanctions-system h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-primary);
}

.sanctions-system h2 i {
    color: var(--accent-primary);
}

.sanctions-table {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sanction-level {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sanction-level:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.sanction-level::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
}

.sanction-level.critical::before { background: var(--critical); }
.sanction-level.severe::before { background: #ff7675; }
.sanction-level.moderate::before { background: var(--moderate); }
.sanction-level.warning::before { background: var(--warning); }

.level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.level-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
}

.sanction-level.critical .level-header h3 { color: var(--critical); }
.sanction-level.severe .level-header h3 { color: #ff7675; }
.sanction-level.moderate .level-header h3 { color: var(--moderate); }

.level-badge {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.sanction-level.critical .level-badge { background: rgba(255, 71, 87, 0.2); color: var(--critical); }
.sanction-level.severe .level-badge { background: rgba(255, 118, 117, 0.2); color: #ff7675; }
.sanction-level.moderate .level-badge { background: rgba(123, 237, 159, 0.2); color: var(--moderate); }

.level-offenses {
    padding: 25px 30px;
}

.level-offenses h4 {
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.level-offenses ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.level-offenses li {
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.level-offenses li::before {
    content: '•';
    color: var(--accent-primary);
    font-weight: bold;
}

.level-punishment {
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.level-punishment i {
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* --- Appeals Process Timeline --- */
.appeals-process {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

.appeals-process h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 25px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-primary);
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
    position: relative;
    z-index: 2;
    animation: pulse 3s infinite;
}

.step-content h3 {
    margin-bottom: 10px;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Unique Templates Design (Dossier/Cyber Look) --- */
.appeal-template, .report-template {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.appeal-template h2, .report-template h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(to right, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.template-card {
    background: var(--tech-bg);
    border: 1px solid var(--neon-blue);
    border-radius: 4px;
    padding: 50px;
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.1);
    position: relative;
    overflow: hidden;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 20px), 
        calc(100% - 20px) 100%, 
        0 100%
    );
}

/* Animated Border Flow */
.template-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    animation: scanline 3s linear infinite;
}

@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.template-card::after {
    content: 'CONFIDENTIAL // OFFICIAL RECORD';
    position: absolute;
    bottom: 10px;
    right: 30px;
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: var(--neon-blue);
    opacity: 0.7;
    letter-spacing: 2px;
}

.template-content h3 {
    color: var(--neon-blue);
    font-family: 'Oxanium', sans-serif;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.3);
    padding-bottom: 10px;
    display: inline-block;
}

.template-fields {
    display: grid;
    gap: 15px;
}

.field {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px 25px;
    border-radius: 2px;
    border-left: 3px solid var(--neon-purple);
    font-family: 'Ubuntu Mono', monospace;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.field:hover {
    background: rgba(188, 19, 254, 0.05);
    transform: translateX(5px);
    box-shadow: -5px 0 15px rgba(188, 19, 254, 0.1);
}

.field strong {
    color: var(--neon-purple);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.field-content {
    color: #e0e0e0;
    font-size: 1.1rem;
}

/* --- Tips & Protection Sections (New) --- */
.economy-tips, .protection-tips {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.economy-tips h2, .protection-tips h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-primary);
}

.economy-tips h2 i, .protection-tips h2 i {
    color: var(--warning);
}

.protection-tips h2 i {
    color: var(--accent-primary);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.tip-card {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-secondary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.tip-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tip-card h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.tip-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Page Navigation Buttons */
.page-navigation {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* --- Important Notes Section --- */
.important-notes {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.important-notes h2 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-primary);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.note-card {
    background: rgba(20, 20, 35, 0.6);
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    border-left: 3px solid var(--accent-primary);
}

.note-card:hover {
    transform: translateY(-5px);
    background: rgba(30, 30, 50, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.note-card i {
    font-size: 2rem;
    color: var(--accent-secondary);
    margin-bottom: 15px;
    display: block;
}

.note-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.note-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- Report Guide Section --- */
.report-guide {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.report-guide h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    background: linear-gradient(90deg, #fff, var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
}

.guide-step:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--accent-primary);
}

.step-content h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Evidence Types Section --- */
.evidence-types {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.evidence-card {
    background: rgba(10, 10, 20, 0.8);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--border-primary);
    transition: transform 0.3s ease;
}

.evidence-card:hover {
    transform: scale(1.05);
    border-color: var(--success);
}

.evidence-card i {
    font-size: 2.5rem;
    color: var(--success);
    margin-bottom: 15px;
    display: block;
}

.evidence-card h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
}

.evidence-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Discord CTA Section --- */
.discord-cta {
    margin: 80px 0;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    box-shadow: 0 20px 40px -10px rgba(88, 101, 242, 0.4);
    position: relative;
}

/* Subtle pattern overlay */
.discord-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-icon {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    animation: pulse-soft 3s infinite ease-in-out;
}

.cta-text h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    line-height: 1.6;
}

.cta-text .btn-primary {
    background: white;
    color: #5865F2;
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-text .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    background: white;
    color: #4752C4;
}

@keyframes pulse-soft {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}
