/* Minecraft Temalı CSS */
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

:root {
    --primary-color: #5cb85c; /* Çim yeşili */
    --secondary-color: #7d7d7d; /* Taş rengi */
    --dark-color: #333333;
    --light-color: #f4f4f4;
    --accent-color: #ffcc00; /* Altın rengi */
    --danger-color: #ff6b6b; /* Kırmızı taş rengi */
}

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

body {
    font-family: 'VT323', monospace;
    line-height: 1.6;
    background-color: #f4f4f4;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="%23f4f4f4"/><rect width="8" height="8" fill="%23ebebeb"/><rect x="8" y="8" width="8" height="8" fill="%23ebebeb"/></svg>');
    color: var(--dark-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--dark-color);
    padding: 20px 0;
    border-bottom: 4px solid var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    font-size: 2.5rem;
    color: var(--light-color);
    text-shadow: 2px 2px 0 var(--primary-color);
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    margin-left: 20px;
}

nav a {
    color: var(--light-color);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><rect width="32" height="32" fill="%235cb85c"/><rect width="16" height="16" fill="%2348a348"/><rect x="16" y="16" width="16" height="16" fill="%2348a348"/></svg>');
    color: white;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

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

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 var(--dark-color);
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 0 var(--dark-color);
}

.highlight {
    color: var(--accent-color);
}

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

.btn-download, .btn-discord {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}

.btn-download {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-discord {
    background-color: #7289DA; /* Discord color */
    color: white;
    border: 2px solid #7289DA;
}

.btn-download:hover, .btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 9px 0 rgba(0, 0, 0, 0.2);
}

.btn-download:active, .btn-discord:active {
    transform: translateY(0);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

.hero-image {
    margin-top: 40px;
}

.minecraft-block {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background-color: var(--primary-color);
    border: 4px solid var(--dark-color);
    position: relative;
    transform: rotate(45deg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-20px); }
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--light-color);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="%23f4f4f4"/><rect width="8" height="8" fill="%23ebebeb"/><rect x="8" y="8" width="8" height="8" fill="%23ebebeb"/></svg>');
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.section-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.xray-icon {
    background-color: #00bcd4; /* Cyan */
}

.aimbot-icon {
    background-color: #ff5722; /* Deep Orange */
}

.abilities-icon {
    background-color: #9c27b0; /* Purple */
}

.extra-icon {
    background-color: #ff9800; /* Orange */
}

.feature-card h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.feature-name {
    font-weight: bold;
    color: var(--dark-color);
}

/* Platforms Section */
.platforms-section {
    padding: 80px 0;
    background-color: var(--dark-color);
    color: white;
}

.platforms-section .section-title,
.platforms-section .section-description {
    color: white;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.platform-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.15);
}

.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.craftrise-icon {
    background-image: url('craftrise.jpg');
}

.sonoyuncu-icon {
    background-image: url('sonoyuncu.jpg');
}

.platform-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.platform-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Installation Section */
.installation-section {
    padding: 80px 0;
    background-color: var(--light-color);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="%23f4f4f4"/><rect width="8" height="8" fill="%23ebebeb"/><rect x="8" y="8" width="8" height="8" fill="%23ebebeb"/></svg>');
}

.installation-steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 25px;
    width: 2px;
    height: calc(100% - 20px);
    background-color: var(--primary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.step-content {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--secondary-color);
    flex-grow: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.step-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

code {
    background-color: var(--secondary-color);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9rem;
}

.download-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.btn-download-small {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

.btn-download-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
}

.btn-download-small:active {
    transform: translateY(0);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background-color: var(--dark-color);
    color: white;
}

.security-section .section-title {
    color: white;
}

.security-notice {
    display: flex;
    align-items: flex-start;
    background-color: rgba(255, 107, 107, 0.2); /* Light red */
    border: 2px solid var(--danger-color);
    border-radius: 8px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.notice-icon {
    width: 50px;
    height: 50px;
    background-color: var(--danger-color);
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
}

.notice-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.notice-list {
    list-style: none;
    margin-top: 15px;
}

.notice-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.notice-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--light-color);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><rect width="16" height="16" fill="%23f4f4f4"/><rect width="8" height="8" fill="%23ebebeb"/><rect x="8" y="8" width="8" height="8" fill="%23ebebeb"/></svg>');
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--secondary-color);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.faq-question h3 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--dark-color);
}

.faq-toggle {
    width: 20px;
    height: 20px;
    position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-toggle::before {
    width: 100%;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
}

.faq-toggle::after {
    width: 2px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.faq-item.active .faq-toggle::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
    border-top: 4px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 0 var(--primary-color);
}

.footer-logo p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-download h3,
.footer-social h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}

.footer-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-footer {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-footer:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.discord-button {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #7289DA; /* Discord color */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.discord-button:hover {
    background-color: #5f73bc;
    transform: translateY(-3px);
}

.discord-icon {
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        justify-content: center;
        margin-top: 20px;
    }
    
    nav li {
        margin: 0 10px;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .features-grid,
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-bottom: 15px;
        margin-right: 0;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* JavaScript for FAQ Toggle */
document.addEventListener('DOMContentLoaded', function() {
    const faqItems = document.querySelectorAll('.faq-item');
    
    faqItems.forEach(item => {
        const question = item.querySelector('.faq-question');
        
        question.addEventListener('click', () => {
            item.classList.toggle('active');
        });
    });
});