body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000; /* Siyah arka plan */
    color: #fff; /* Beyaz yazı */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    font-size: 2.8rem;
    font-weight: bold;
    margin: 0;
    color: #ffffff; /* Tam beyaz */
    line-height: 1.2;
}

h1 span {
    color: #fff600; /* Sarı renk */
}

p {
    font-size: 1.1rem;
    color: #cccccc; /* Açık gri ton */
    margin: 10px 0 5px;
    line-height: 1.6;
}

.video-container {
    margin: 20px 0 20px;
    display: flex;
    justify-content: center;
}

video {
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.download-button {
    display: inline-block;
    background: linear-gradient(90deg, #fff700, #f6c700); /* Sarı degrade */
    color: #000; /* Siyah yazı */
    text-decoration: none;
    font-weight: bold;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.download-button:hover {
    transform: scale(1.05); /* Hover efekti */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

.button-container {
    display: flex;
    justify-content: space-between; /* Butonları sola ve sağa yapıştırır */
    align-items: center;
    width: 100%; /* Tüm genişliği kapsar */
    max-width: 800px; /* İsteğe bağlı: Maksimum genişlik */
    margin: 20px auto; /* Ortalayıp yukarı-aşağı boşluk ekler */
    padding: 0 10px; /* Butonlar arasında biraz iç boşluk */
}

.download-button {
    display: inline-block;
    background: linear-gradient(90deg, #fff700, #f6c700); /* Sarı degrade */
    color: #000; /* Siyah yazı */
    text-decoration: none;
    font-weight: bold;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    width: auto; /* Buton genişliği içeriğe göre ayarlanır */
    text-align: center;
}

.download-button:hover {
    transform: scale(1.05); /* Hover efekti */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}


.card {
    display: inline-flex;
    font-family: 'Poppins', sans-serif;
    justify-content: space-between;
    background: linear-gradient(180deg, #1a1a1a, #333300);
    border-radius: 15px;
    padding: 20px 30px 0 30px;
    max-width: 900px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    gap:80px;
    width:90%;
}

.card-content {
    max-width: 60%;
}

.card-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 15px;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: #ccc;
}

.card-actions {
    text-align: center;
    width:50%;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(rgb(64, 247, 131) 0%, rgb(31, 166, 81) 100%);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

.note {
    margin-top: 5px;
    font-size: 0.9rem;
    color: #999;
}

.note a {
    color: #34d058;
    text-decoration: none;
}

.note a:hover {
    text-decoration: underline;
}


.cta-button2 {
    display: inline-block;
    background: linear-gradient(rgb(255, 247, 24) 0%, rgb(177, 121, 37) 100%);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1.2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}


@media (max-width: 768px) {
.card-actions {
    text-align: center;
    width:100%;
    margin-bottom:20px;
    }
    .card {
    display:inline-block;
    }
    
    
}