* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

body {
    user-select: none; /* Tüm kullanıcı seçimlerini engeller */
    -webkit-user-select: none; /* Safari ve Chrome */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Eski IE */
}

/* Header ve Navigation Styles */
header {
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 50px;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav ul {
    background: rgba(32, 32, 32, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 10px 20px;
    display: flex;
    gap: 30px;
    list-style: none;
    margin-right: 20px;
}

nav ul li a {
    color: #888;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #fff;
}

.home-link {
    color: #fff;
    text-decoration: none;
    background: rgba(32, 32, 32, 0.5);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    margin-left: 20px;
    transition: all 0.3s ease;
}

.home-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.email-link {
    font-size: 1.08rem; /* Yazı boyutunu artır */
    font-weight: bold; /* Kalın yazı */
    color: #d4ff00; /* Canlı sarı bir renk */
    text-decoration: none; /* Alt çizgiyi kaldır */
    font-family: 'Arial', sans-serif; /* Yazı tipini değiştir */
    transition: color 0.3s ease; /* Renk değişimini yumuşat */
}

.email-link:hover {
    color: #878787; /* Üzerine gelince turuncu olsun */
    text-decoration: underline; /* Alt çizgi belirsin */
}

/* Section Styles */
section {
    padding: 50px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

#intro {
    text-align: center;
    padding-bottom: 600px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
    padding-top: 100px;
}

#intro h1:first-of-type {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: rgba(212, 212, 212, 0.9);
}

#intro h1:last-of-type {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -20px;
}

#intro p:first-of-type {
    font-size: 5rem;
    color: rgba(212, 212, 212, 0.9);
    text-align: center;
    width: 100%;
    max-width: 800px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-style: normal;
}

#intro p:last-of-type {
    font-size: 1.5rem;
    color: rgba(136, 136, 136, 0.8);
    text-align: center;
    width: 100%;
    max-width: 800px;
    font-style: italic;
    margin-top: 2rem;
    font-weight: 300;
}

/* Partners Section */
#partners {
    background-color: #0a0a0a;
    padding: 50px;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#partners h2 {
    color: #e5e6e3;
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

#partners ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin-top: 20px;
    max-width: 600px;
    margin: 0 auto;
}

#partners li {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 20px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

#partners li i {
    margin-left: 10px;
    font-size: 1.2rem;
    opacity: 0.8;
}

#partners li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

#partners li:hover i {
    opacity: 1;
    color: #e5e6e3;
}

#partners li span {
    color: #e5e6e3;
}

#partners h2::before {
    content: "🤝";
    margin-right: 10px;
    color: #e5e6e3;
}

/* Footer Styles */
footer {
    background-color: #0a0a0a;
    padding: 50px 20px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    text-align: center;
    margin-bottom: 50px;
}

.contact-info p {
    color: #888;
    font-size: 1rem;
}

.contact-info a {
    color: #e5e6e3;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-info a:hover {
    opacity: 0.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    #intro h1 {
        font-size: 2.5rem;
    }

    #intro p {
        font-size: 1.2rem;
    }
}

#fast-distribution {
    background-color: #0a0a0a;
    padding: 50px;
    padding-top: 0px; /* 200px'den 400px'e çıkarıldı */
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#fast-distribution h2 {
    color: #e5e6e3;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

#fast-distribution h2::before {
    content: "🚀";
    margin-right: 10px;
    color: #e5e6e3;
}

#fast-distribution p {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

#fast-distribution p strong {
    color: #fff;
}

#what-you-get {
    background-color: #0a0a0a;
    padding: 40px;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#what-you-get h2 {
    color: #e5e6e3;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

#what-you-get h2::before {
    content: "🎵";
    margin-right: 10px;
    color: #e5e6e3;
}

#what-you-get p {
    font-size: 2.5rem;
    color: #ccc;
    line-height: 1.4;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

#what-you-get p strong {
    color: #fff;
}

#how-it-works {
    background-color: #0a0a0a;
    padding: 50px;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#how-it-works h2 {
    color: #e5e6e3;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

#how-it-works h3 {
    color: #ccc;
    font-size: 2rem;
    margin-bottom: 40px;
}

#how-it-works h2::before {
    content: "🛠️";
    margin-right: 10px;
    color: #e5e6e3;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step {
    background: rgba(25, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step i {
    font-size: 2.5rem;
    color: #8b8c89;
    margin-bottom: 20px;
}

.step h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step p {
    color: #ccc;
    font-size: 1rem;
}

#our-statics {
    background-color: #0a0a0a;
    padding: 50px;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    background: rgba(25, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat h3 {
    color: #8b8c89;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat p {
    color: #aaa;
    font-size: 1rem;
}

#faqs {
    background-color: #0a0a0a;
    padding: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#faqs h2 {
    color: #e5e6e3;
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    color: #ccc;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #fff;
}

.faq-question i {
    color: #e5e6e3;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    opacity: 0;
}

html {
    scroll-behavior: smooth;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer p {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 20px;
}

.logo img {
    width: 150px;
    height: auto;
}

@media screen and (max-width: 768px) {
    /* Header ve navigasyon */
    header {
        flex-direction: column;
        padding: 1rem;
    }

    .logo {
        width: 150px;
        margin-bottom: 1rem;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    /* Intro bölümü */
    #intro h1 {
        font-size: 2rem;
    }

    /* How it works bölümü */
    .steps {
        flex-direction: column;
    }

    .step {
        margin: 1rem 0;
    }

    /* Partners bölümü */
    #partners ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
	

    /* İstatistikler */
    #our-statics {
        flex-direction: column;
    }

    .stat {
        margin: 1rem 0;
    }

    /* Footer */
    .footer-content {
        padding: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
        margin: 1rem 0;
    }

    .footer-links a {
        margin: 0.5rem 0;
    }
}

@media screen and (max-width: 480px) {
    /* Daha küçük ekranlar için ek düzenlemeler */
    #intro h1 {
        font-size: 1.5rem;
    }

    .faq-question span {
        font-size: 0.9rem;
    }

    #partners ul {
        grid-template-columns: 1fr;
    }
}
