* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    line-height: 1.6;
}

/* Gradient Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #242424 100%);
    z-index: -1;
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box {
    width: 40px;
    height: 40px;
    background: #D9D9D9;
    border: 2px solid #0078d4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #0078d4;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #999;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0078d4;
}

.nav-menu a.active {
    border-bottom: 2px solid #0078d4;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 10px;
}

.glow-text {
    text-shadow: 0 0 20px rgba(0, 120, 212, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: #999;
    margin-bottom: 20px;
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    background: #242424;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #333;
    font-size: 14px;
}

.hero-stats {
    margin-top: 20px;
    color: #999;
    font-size: 14px;
}

/* App Preview */
.app-preview {
    background: #242424;
    border-radius: 10px;
    border: 1px solid #333;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.preview-header {
    background: #1a1a1a;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #333;
}

.window-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #e81123; }
.dot.yellow { background: #ffb900; }
.dot.green { background: #107c10; }

.window-title {
    color: #999;
    font-size: 12px;
    margin-left: auto;
}

.preview-content {
    padding: 20px;
}

.preview-line {
    height: 10px;
    background: #333;
    margin: 10px 0;
    border-radius: 5px;
}

.preview-line:nth-child(1) { width: 80%; }
.preview-line:nth-child(2) { width: 60%; }
.preview-line:nth-child(3) { width: 40%; }

.preview-button {
    height: 30px;
    background: #107c10;
    border-radius: 5px;
    margin-top: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #0078d4;
    color: white;
}

.btn-primary:hover {
    background: #1e90ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 120, 212, 0.3);
}

.btn-secondary {
    background: #107c10;
    color: white;
}

.btn-secondary:hover {
    background: #1db91d;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-download {
    background: #107c10;
    color: white;
    font-size: 24px;
    padding: 20px 50px;
}

.btn-discord {
    background: #5865F2;
    color: white;
}

.btn-youtube {
    background: #ff0000;
    color: white;
}

/* Features Grid */
.features {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #242424;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #0078d4;
    box-shadow: 0 10px 30px rgba(0, 120, 212, 0.1);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #0078d4;
    margin-bottom: 10px;
}

.feature-card p {
    color: #999;
}

/* CTA Section */
.cta-card {
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    border-top: 1px solid #333;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: #0078d4;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #0078d4;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    color: #666;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 60px 0 40px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-header .subtitle {
    color: #999;
    font-size: 18px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 40px 0;
}

.team-card {
    background: #242424;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s;
}

.team-card:hover {
    border-color: #0078d4;
}

.team-avatar {
    font-size: 80px;
    margin-bottom: 20px;
}

.team-card h3 {
    color: white;
    margin-bottom: 5px;
}

.team-role {
    color: #0078d4;
    margin-bottom: 15px;
}

.team-desc {
    color: #999;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    color: #999;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s;
}

.team-social a:hover {
    color: #0078d4;
}

/* Story Section */
.story-card {
    background: #242424;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #333;
    margin: 40px 0;
}

.story-card h2 {
    color: #0078d4;
    margin-bottom: 20px;
}

.story-card p {
    color: #999;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.value-item {
    background: #242424;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
    text-align: center;
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.value-item h3 {
    color: #0078d4;
    margin-bottom: 10px;
}

.value-item p {
    color: #999;
}

/* Community CTA */
.community-card {
    background: linear-gradient(135deg, #5865F2 0%, #4752c4 100%);
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.community-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Guide Section */
.guide-section {
    margin-bottom: 60px;
}

.guide-card {
    background: #242424;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #333;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guide-item {
    background: #242424;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
}

.guide-item h3 {
    color: #0078d4;
    margin-bottom: 15px;
}

.guide-item p {
    color: #999;
    margin-bottom: 15px;
}

.guide-item code {
    background: #1a1a1a;
    padding: 5px 10px;
    border-radius: 5px;
    color: #0078d4;
    font-size: 12px;
}

.guide-list {
    list-style: none;
    counter-reset: guide-counter;
}

.guide-list li {
    counter-increment: guide-counter;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #999;
}

.guide-step {
    width: 30px;
    height: 30px;
    background: #0078d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.guide-tips {
    list-style: none;
    margin-top: 20px;
}

.guide-tips li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #999;
}

.guide-tips li:before {
    content: "•";
    color: #0078d4;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -5px;
}

.guide-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tip-card {
    background: #242424;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tip-icon {
    font-size: 24px;
}

.tip-card p {
    color: #999;
}

.tutorial-card {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.tutorial-card h2 {
    color: white;
    margin-bottom: 10px;
}

.tutorial-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Download Page */
.download-section {
    padding: 40px 0;
}

.download-card {
    background: #242424;
    border-radius: 10px;
    border: 1px solid #333;
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.download-header {
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 100%);
    padding: 40px;
    text-align: center;
}

.download-logo {
    width: 80px;
    height: 80px;
    background: #D9D9D9;
    border: 3px solid white;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    color: #0078d4;
    border-radius: 10px;
}

.download-header h2 {
    color: white;
    margin-bottom: 10px;
}

.download-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.download-info {
    padding: 30px;
    border-bottom: 1px solid #333;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #999;
}

.info-row span:first-child {
    color: white;
}

.download-actions {
    padding: 30px;
    text-align: center;
}

.download-note {
    color: #999;
    font-size: 12px;
    margin-top: 15px;
}

.download-checksums {
    padding: 30px;
    background: #1a1a1a;
    border-top: 1px solid #333;
}

.download-checksums h3 {
    color: #0078d4;
    margin-bottom: 15px;
    font-size: 14px;
}

.checksum {
    margin-bottom: 10px;
}

.checksum code {
    color: #999;
    font-size: 11px;
    word-break: break-all;
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.requirement-item {
    background: #242424;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
}

.requirement-item h3 {
    color: #0078d4;
    margin-bottom: 20px;
}

.requirement-item ul {
    list-style: none;
}

.requirement-item li {
    color: #999;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.requirement-item li:before {
    content: "✓";
    color: #107c10;
    position: absolute;
    left: 0;
}

/* Changelog */
.changelog-card {
    background: #242424;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid #333;
    margin: 40px 0;
}

.changelog-list {
    list-style: none;
}

.changelog-list li {
    color: #999;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.changelog-list li:before {
    content: "✨";
    position: absolute;
    left: 0;
    color: #0078d4;
}

/* Install Steps */
.install-steps {
    list-style: none;
    counter-reset: step-counter;
}

.install-steps li {
    counter-increment: step-counter;
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    color: #999;
}

.install-steps li:before {
    content: counter(step-counter);
    width: 25px;
    height: 25px;
    background: #0078d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -2px;
}

.install-note {
    margin-top: 30px;
    padding: 15px;
    background: #1a1a1a;
    border-left: 3px solid #ffb900;
    border-radius: 5px;
}

.install-note p {
    color: #ffb900;
    font-size: 14px;
}

/* Alternative Downloads */
.alt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.alt-link {
    background: #242424;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    border: 1px solid #333;
    color: #999;
    text-decoration: none;
    transition: all 0.3s;
}

.alt-link:hover {
    border-color: #0078d4;
    color: #0078d4;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.faq-item {
    background: #242424;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #333;
}

.faq-item h3 {
    color: #0078d4;
    margin-bottom: 10px;
    font-size: 16px;
}

.faq-item p {
    color: #999;
    font-size: 14px;
}

/* Support Card */
.support-card {
    background: linear-gradient(135deg, #5865F2 0%, #4752c4 100%);
    padding: 60px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.support-card h2 {
    color: white;
    margin-bottom: 10px;
}

.support-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .community-buttons {
        flex-direction: column;
    }
    
    .btn-download {
        font-size: 18px;
        padding: 15px 30px;
    }
}

/* Login/Signup specific styles */
.login-link {
    background: #0078d4;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 5px;
    margin-left: 10px;
}

.login-link:hover {
    background: #1e90ff;
    color: white !important;
}

.signup-link {
    background: #107c10;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 5px;
}

.signup-link:hover {
    background: #1db91d;
    color: white !important;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .login-link, .signup-link {
        margin: 5px 0;
        text-align: center;
    }
}

.login-link {
    background: #0078d4;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 5px;
    margin-left: 10px;
}

.login-link:hover {
    background: #1e90ff;
    color: white !important;
}

.signup-link {
    background: #107c10;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 5px;
    margin-left: 5px;
}

.signup-link:hover {
    background: #1db91d;
    color: white !important;
}

@media (max-width: 768px) {
    .login-link, .signup-link {
        margin: 5px 0;
        text-align: center;
        display: block;
    }
}

.login-link {
    background: #0078d4;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 5px;
    margin-left: 10px;
}

.login-link:hover {
    background: #1e90ff;
    color: white !important;
}

.signup-link {
    background: #107c10;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 5px;
    margin-left: 5px;
}

.signup-link:hover {
    background: #1db91d;
    color: white !important;
}

@media (max-width: 768px) {
    .login-link, .signup-link {
        margin: 5px 0;
        text-align: center;
        display: block;
    }
}