body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #ebebeb;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #2c3e50;
    color: white;
}

.logo {
    display: flex;
    align-items: center;
}

.logo .circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo .circle img {
width: 58px; height: 58px; border-radius: 50%;
}

.logo h1 {
    margin-left: 10px;
    font-size: 24px;
    color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

main {
    flex: 1;
    padding: 20px;
    background: white;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
}

.crypto-prices {
    text-align: center;
    margin-bottom: 40px;
}

.crypto-prices h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.crypto-prices div {
    font-size: 20px;
    margin: 10px 0;
    color: #34495e;
}

.advertisements {
    text-align: center;
    font-style: italic;
    margin-bottom: 40px;
    color: #7f8c8d;
}

footer {
    background: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: auto;
}

footer .social-media a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer .contact-info {
    margin: 10px 0;
}

footer .quick-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
/* Services Section Styling */
#services {
    padding: 40px 20px;
    background: #f9f9f9;
    text-align: center;
}

#services h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

#services p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 20px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 24px;
    color: #0e7f94;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}
/* About Section Styling */
#about {
    padding: 40px 20px;
    background: #ffffff;
    text-align: center;
}

#about h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    text-align: left;
}

.about-text h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .about-text {
        text-align: center;
    }

    .about-image {
        order: -1; /* Mobilde görsel üstte olacak */
    }
}
/* Ana Sayfa Stil */
#home {
    padding: 40px 20px;
    background: #f9f9f9;
    text-align: center;
}

/* Hero Section */
.hero-section {
    margin-bottom: 60px;
}

.hero-section h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.hero-section .hero-description {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* 2'li Kolonlar (Öne Çıkan Özellikler) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
    padding: 0 20px;
    margin-top: 40px;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* 3'lü Kolonlar (Hizmetler) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 36px;
    }

    .hero-section .hero-description {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
/* Piyasa Beklentisi Stil */
.market-comment {
    margin-top: 40px;
    padding: 20px;
    background: #f4f4f9;
    border-radius: 10px;
    max-width: 800px;
    margin: 40px auto 0;
}

.market-comment p {
    font-size: 18px;
    color: #2c3e50;
    font-style: italic;
    text-align: center;
    margin: 0;
}
/* Yatay Kripto Fiyatları Stil */
.crypto-prices-horizontal {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.crypto-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 250px;
    flex: 1 1 auto;
}

.crypto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.crypto-icon img {
    width: 50px;
    height: 50px;
}

.crypto-info h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.crypto-info p {
    font-size: 16px;
    color: #666;
}

.crypto-info .price {
    font-weight: bold;
    color: #27ae60;
}

/* Piyasa Beklentisi Stil */
.market-comment {
    margin-top: 40px;
    padding: 20px;
    background: #f4f4f9;
    border-radius: 10px;
    max-width: 800px;
    margin: 40px auto 0;
}

.market-comment p {
    font-size: 18px;
    color: #2c3e50;
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .crypto-prices-horizontal {
        flex-direction: column;
        align-items: center;
    }

    .crypto-card {
        width: 100%;
        max-width: 300px;
    }
}
/* Satın Al Butonu Stil */
#buy-coin {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.special-button {
width: 85vw; height: 50px; margin-bottom: 50px; background: linear-gradient(15deg, #0e7f94, #a15a00); border: none; border-radius: 20px; box-shadow: 0 8px 16px rgb(0 0 0 / 30%); color: #ffffff; font-size: 24px; font-weight: bold; text-transform: uppercase; display: flex ; justify-content: center; align-items: center; gap: 10px; cursor: pointer; transition: transform 0.3sease, box-shadow 0.3sease; position: relative; overflow: hidden;
}

.special-button:hover {
    transform: scale(1.05);}

.special-button:active {
    transform: scale(0.95);
}

/* Buton içindeki metin ve ikon */
.button-text {
    z-index: 2;
}

.button-icon {
    font-size: 30px;
    z-index: 2;
}

/* Butonun arka plan efekti */
.special-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    z-index: 1;
}

.special-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .special-button {
        width: 40vw; /* Mobilde daha küçük */
        height: 15vh;
        font-size: 18px;
    }

    .button-icon {
        font-size: 24px;
    }
}
/* İletişim Bölümü Stil */
#contact {
    padding: 40px 20px;
    background: #ffffff;
    text-align: center;
}

#contact h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form, .contact-info {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h3, .contact-info h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Form Stili */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    font-size: 16px;
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    color: #555;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background: linear-gradient(135deg, #f7931a, #ffab40);
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(247, 147, 26, 0.3);
}

.submit-button:active {
    transform: scale(0.95);
}

/* İletişim Bilgileri Stili */
.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.info-icon img {
    width: 24px;
    height: 24px;
}

.contact-info p {
    font-size: 16px;
    color: #555;
    margin: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-form, .contact-info {
        padding: 20px;
    }
}
/* Harita Stili */
#world-map {
    padding: 40px 20px;
    background: #f9f9f9;
    text-align: center;
}

#world-map h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.country {
    stroke: #000;
    stroke-width: 0.5;
    transition: fill 0.3s ease, stroke-width 0.3s ease;
}

.country:hover {
    fill: #f7931a; /* Turuncu renk */
    stroke-width: 2;
    cursor: pointer;
}

/* Ülke İsimleri */
.country::after {
    content: attr(data-name);
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.country:hover::after {
    opacity: 1;
}
        .containerMap {
            width: 100%; /* Kapsayıcının genişliği */
            height: auto; /* Yükseklik otomatik olarak ayarlanır */
        }
        .containerMap svg {
            width: 50%; /* SVG'nin genişliği kapsayıcıya göre ayarlanır */
            height: auto; /* Yükseklik otomatik olarak ölçeklenir */
        }
path {fill: #a9a9a9; stroke: white;}
path:hover {fill: gray;}