/* Base Styles */
:root {
    --primary: #4f46e5;
    --primary-light: #818cf8;
    --dark: #0f172a;
    --darker: #020617;
    --light-text: #94a3b8;
    --border: #1e293b;
    --success: #22c55e;
    --warning: #f59e0b;
}

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

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text);
    position: relative;
}

.logo a .highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-size: 1.1rem;
    transition: color 0.3s;
    position: relative;
}

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

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

.nav-links a:hover {
    color: var(--primary);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #e2e8f0;
    line-height: 1.6;
    background-color: var(--dark);
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: white;
}

h1, h2, h3 {
    margin-bottom: 0.5em;
    line-height: 1.3;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Discord Join Button Styles */
.discord-join-container {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.discord-join-card {
    background-color: var(--dark);
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    text-align: center;
    max-width: 450px;
    transition: transform 0.3s ease;
    border: 1px solid var(--border);
}

.discord-join-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.discord-join-card i {
    font-size: 3rem;
    color: #5865F2;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(88, 101, 242, 0.6);
}

.discord-join-card h3 {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.25rem;
}

.discord-join-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.btn-discord {
    background-color: #5865F2;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.375rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    font-weight: 600;
}

.btn-discord:hover {
    background-color: #4752C4;
    transform: scale(1.05);
    color: white;
}

.section-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1rem;
    color: #666;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    background-color: var(--primary);
    color: white;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: #4338ca;
    transform: translateY(-2px);
}

/* Navigation */
nav {
    background-color: var(--darker);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-light);
    text-shadow: #4338ca 0px 0px 15px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

nav a {
    color: #e2e8f0;
    font-weight: 500;
}

nav a:hover {
    color: white;
}

nav i {
    margin-right: 0.25rem;
}

/* Hero Section */
.hero {
    padding: 9rem 0 5rem;
    background: linear-gradient(to right, var(--darker), var(--dark));
    text-align: center;
}

.hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-light), #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: #4338ca 0px 0px 15px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

/* Bypasses Section */
.bypasses-section {
    padding: 5rem 0;
    background-color: var(--darker);
}

.bypasses-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-light);
}

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

.bypass-card {
    background-color: var(--dark);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bypass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

.bypass-card h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: white;
}

.badge {
    background-color: var(--primary);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 600;
}

.bypass-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.bypass-card pre {
    background-color: var(--darker);
    padding: 1rem;
    border-radius: 0.375rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.bypass-card code {
    color: #e2e8f0;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 0.9rem;
}

.compatibility {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.compatibility span {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.warning {
    font-weight: 1000;
    font-style: oblique;
    font-family: monospace;
    font-size: large;
}

.compatibility i.fa-check {
    color: var(--success);
}

.compatibility i.fa-exclamation {
    color: var(--warning);
}

/* Contributors Section */
.contributors-section {
    padding: 5rem 0;
    background-color: var(--darker);
}

.contributors-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-light);
}

.contributors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
}

.contributor-card {
    background-color: var(--dark);
    border-radius: 0.5rem;
    overflow: hidden;
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    border: 1px solid var(--border);
}

.contributor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.contributor-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid var(--primary);
}

.contributor-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contributor-card p {
    color: var(--light-text);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.contributor-card a {
    font-size: 1.25rem;
}

.join-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed var(--border);
}

.join-card i {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.join-card .btn {
    margin-top: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .hero {
        padding-top: 8rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        text-shadow: #4338ca 0px 0px 15px;
    }
}

@media (max-width: 480px) {
    nav ul {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .bypasses-grid, .contributors-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        text-shadow: #4338ca 0px 0px 15px;
    }
}

/* Guide Sections Styling */
.guides-section {
    padding: 5rem 0;
    background-color: var(--darker);
}

.guides-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-light);
}

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

.platform-header {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.platform-header h3 {
    font-size: 1.5rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
}

.platform-header h3 i {
    margin-right: 0.75rem;
    color: var(--primary-light);
}

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

.guide-card {
    background-color: var(--dark);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.guide-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: white;
}

.guide-description {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.strike {
    text-decoration: line-through;
    text-decoration-line: line-through;
}



.guide-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.guide-version, .guide-difficulty, .discovery-credit {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    background-color: var(--darker);
    color: var(--light-text);
}

.guide-btn {
    align-self: flex-start;
}

@media (max-width: 768px) {
    .guides-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}
