:root {
    --primary: #80FFF9;
    --secondary: #1759FF;
    --accent: #FF2E88;
    --dark: #0A0A0F;
    --darker: #050508;
    --light: #ffffff;
    --gray: #8B8B9E;
    --card-bg: rgba(26, 26, 38, 0.7);
    --border: rgba(128, 255, 249, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--light);
}

a:hover {
    color: rgb(216, 216, 216);
}

/* Хакерский фон с анимированными элементами */
.hacker-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(circle at 10% 20%, rgba(128, 255, 249, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(23, 89, 255, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(255, 46, 136, 0.03) 0%, transparent 50%);
}

.hacker-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(128, 255, 249, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(128, 255, 249, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: float 30s infinite linear;
}

.code-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    overflow: hidden;
}

.code-line {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: var(--primary);
    white-space: nowrap;
    animation: codeFlow 20s linear infinite;
}

@keyframes float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

@keyframes codeFlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100vw); }
}

/* Header */
header {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    color: var(--primary);
}

.logo-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--darker);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(128, 255, 249, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.version-info {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Features Section */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(128, 255, 249, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(128, 255, 249, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(128, 255, 249, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Download Section */
.download-section {
    background: rgba(26, 26, 38, 0.5);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.download-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.download-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.download-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border);
    width: 280px;
    transition: all 0.3s;
}

.download-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(128, 255, 249, 0.1);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.download-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.download-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.system-requirements {
    max-width: 800px;
    margin: 4rem auto 0;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.requirement-item {
    text-align: left;
}

.requirement-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.requirement-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--darker);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 0 2rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.footer-section p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(128, 255, 249, 0.1);
    border-radius: 50%;
    color: var(--light);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--darker);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid var(--border);
    color: var(--gray);
    font-size: 0.9rem;
}

/* pages.css - Дополнительные стили для страниц */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Page Hero */
.page-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: rgba(26, 26, 38, 0.5);
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Detailed Features */
.features-detailed {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.feature-detail.reverse {
    direction: rtl;
}

.feature-detail.reverse > * {
    direction: ltr;
}

.feature-visual {
    text-align: center;
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.7;
}

.feature-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.feature-content ul {
    list-style: none;
    padding: 0;
}

.feature-content li {
    color: var(--light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-content li::before {
    content: "▸";
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Download Options */
.download-options-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.download-option {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

.download-option.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(128, 255, 249, 0.2);
}

.download-option:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.option-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.option-header i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.option-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.version {
    background: var(--primary);
    color: var(--darker);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.download-option p {
    color: var(--gray);
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.download-option ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.download-option li {
    color: var(--light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.download-option li::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.download-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.size {
    color: var(--gray);
    font-weight: 600;
}

/* Documentation Styles */
.docs-sidebar {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid var(--border);
}

.docs-nav ul {
    list-style: none;
    padding: 0;
}

.docs-nav li {
    margin-bottom: 0.5rem;
}

.docs-nav a {
    color: var(--gray);
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    border-radius: 5px;
    transition: all 0.3s;
}

.docs-nav a:hover,
.docs-nav a.active {
    background: rgba(128, 255, 249, 0.1);
    color: var(--primary);
}

.docs-content {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 3rem;
    border: 1px solid var(--border);
}

.docs-content h1, .docs-content h2, .docs-content h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.docs-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.code-block {
    background: var(--darker);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    overflow-x: auto;
}

.code-block code {
    color: var(--primary);
    font-family: 'Courier New', monospace;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.blog-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0.7;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-content h3 {
    color: var(--light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.blog-content p {
    color: var(--gray);
    line-height: 1.6;
}

/* Support Styles */
.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.support-option {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.support-option:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.support-option i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.support-option h3 {
    margin-bottom: 1rem;
    color: var(--light);
}

.support-option p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Active nav link */
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after {
    width: 100%;
}

/* Дополнительные стили для созданных страниц */

/* Installation Steps */
.installation-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--darker);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.step-content p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.step-details {
    background: rgba(128, 255, 249, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    border-left: 3px solid var(--primary);
}

.step-details h4 {
    color: var(--light);
    margin: 1rem 0 0.5rem 0;
}

.step-details h4:first-child {
    margin-top: 0;
}

.step-details ul {
    list-style: none;
    padding: 0;
}

.step-details li {
    color: var(--light);
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.step-details li::before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

.note {
    background: rgba(255, 46, 136, 0.1);
    border: 1px solid var(--accent);
    border-radius: 5px;
    padding: 1rem;
    margin-top: 1rem;
    color: var(--light);
}

.installation-tips {
    margin-top: 4rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tip {
    text-align: center;
    padding: 2rem 1rem;
}

.tip i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.tip h4 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.tip p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Community Platforms */
.community-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.platform-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.platform-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.platform-card h3 {
    margin-bottom: 1rem;
    color: var(--light);
}

.platform-card p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.platform-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
}

.stat span {
    font-size: 0.8rem;
    color: var(--gray);
}

/* Support Form */
.support-form-section {
    max-width: 600px;
    margin: 4rem auto 0;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.support-form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
}

.support-form-section p {
    text-align: center;
    color: var(--gray);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--darker);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--light);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contribute Styles */
.contribute-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.contribute-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
    text-align: center;
}

.contribute-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.contribute-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.contribute-card h3 {
    margin-bottom: 1rem;
    color: var(--light);
}

.contribute-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contribute-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.contribute-card li {
    color: var(--light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.contribute-card li::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Bugs Page */
.bugs-actions {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.bugs-grid {
    display: grid;
    gap: 2rem;
}

.bug-category h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.bug-list {
    display: grid;
    gap: 1rem;
}

.bug-item {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.bug-item:hover {
    border-color: var(--primary);
}

.bug-item.critical {
    border-left: 4px solid #ff4757;
}

.bug-item.major {
    border-left: 4px solid #ffa502;
}

.bug-status {
    background: var(--primary);
    color: var(--darker);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.bug-item h4 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.bug-item p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.bug-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 0.8rem;
}

/* Blog Filters */
.blog-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.blog-filter {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--gray);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.blog-filter.active,
.blog-filter:hover {
    background: var(--primary);
    color: var(--darker);
    border-color: var(--primary);
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--light);
}

/* API Documentation */
.api-docs {
    max-width: 900px;
    margin: 0 auto;
}

.api-section {
    margin-bottom: 3rem;
}

.api-section h2 {
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.api-method {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.api-method h3 {
    color: var(--light);
    margin-bottom: 0.5rem;
}

.api-method p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.copy-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.6rem !important;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

        .feature-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .download-options-detailed {
        grid-template-columns: 1fr;
    }
    
    .download-option.featured {
        transform: none;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
    }
    
    .feature-visual {
        font-size: 5rem;
    }
    
    .docs-content {
        padding: 2rem 1rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        align-self: center;
    }
    
    .platform-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .support-form-section {
        padding: 1.5rem;
    }
    
    .contribute-options {
        grid-template-columns: 1fr;
    }
    
    .bugs-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .bug-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}