/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 3px solid #5f4d41;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%235f4d41" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    color: #cd9f6b;
    font-size: 2.5em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px #000;
    line-height: 1.2;
}

.hero-subtitle {
    color: #7fbf7f;
    font-size: 1.8em;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px #000;
}

.hero-version {
    color: #d4c0a1;
    font-size: 1.2em;
    margin-bottom: 40px;
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-card {
    background: linear-gradient(135deg, #2b2b2b 0%, #3b3b3b 100%);
    border: 2px solid #5f4d41;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 159, 107, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #cd9f6b;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: #cd9f6b;
    font-size: 1.4em;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px #000;
}

.feature-card p {
    color: #d4c0a1;
    line-height: 1.6;
}

/* Technology Section */
.technology-section {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #2b2b2b 0%, #3b3b3b 100%);
    border: 2px solid #5f4d41;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.tech-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.tech-icon {
    font-size: 4em;
    color: #7fbf7f;
    flex-shrink: 0;
}

.tech-text p {
    color: #d4c0a1;
    font-size: 1.1em;
    line-height: 1.6;
}

.tech-text strong {
    color: #cd9f6b;
}

/* VPS Explanation */
.vps-explanation {
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 100%);
    border: 2px solid #5f4d41;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.vps-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.vps-icon {
    font-size: 4em;
    color: #cd9f6b;
    flex-shrink: 0;
}

.vps-text p {
    color: #d4c0a1;
    font-size: 1.1em;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    margin: 60px 0;
}

.faq-item {
    background: linear-gradient(135deg, #2b2b2b 0%, #3b3b3b 100%);
    border: 2px solid #5f4d41;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #cd9f6b;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #cd9f6b;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(205, 159, 107, 0.1);
}

.faq-icon {
    margin-right: 15px;
    transition: transform 0.3s ease;
    color: #7fbf7f;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(95, 77, 65, 0.1);
}

.faq-answer p {
    color: #d4c0a1;
    padding: 20px;
    margin: 0;
    line-height: 1.6;
}

.faq-answer ul {
    padding: 0 20px 20px 40px;
    color: #d4c0a1;
}

.faq-answer li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.faq-answer strong {
    color: #cd9f6b;
}

/* Support Info */
.support-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
    padding: 0 20px 20px 20px;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(95, 77, 65, 0.2);
    border-radius: 8px;
    color: #d4c0a1;
}

.support-icon {
    font-size: 1.2em;
    color: #7fbf7f;
}

/* OS Options */
.os-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
    padding: 0 20px 20px 20px;
}

.os-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(95, 77, 65, 0.2);
    border-radius: 8px;
    color: #d4c0a1;
    text-align: center;
    justify-content: center;
}

.os-icon {
    font-size: 1.2em;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin: 60px 0;
    padding: 50px;
    background: linear-gradient(135deg, #2b2b2b 0%, #3b3b3b 100%);
    border: 2px solid #5f4d41;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-description {
    color: #d4c0a1;
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #cd9f6b, #e6b583);
    color: #1a1a1a;
    border: none;
    box-shadow: 0 4px 15px rgba(205, 159, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 159, 107, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #3b3b3b, #4b4b4b);
    color: #d4c0a1;
    border: 2px solid #5f4d41;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #4b4b4b, #5b5b5b);
    border-color: #cd9f6b;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1.5em;
    }
    
    .tech-content, .vps-content {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-icon, .vps-icon {
        font-size: 3em;
    }
    
    .features-section {
        grid-template-columns: 1fr;
    }
    
    .support-info, .os-options {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8em;
    }
    
    .hero-subtitle {
        font-size: 1.3em;
    }
    
    .feature-card, .technology-section, .vps-explanation, .cta-section {
        padding: 20px;
    }
    
    .tech-icon, .vps-icon {
        font-size: 2.5em;
    }
} 