html, body, div, span,marquee, textarea, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video 
{
    margin: 0;
    padding: 0;
    border: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size:16px;
}

/* 1. Mobil için (Varsayılan veya max-width: 480px) */
@media only screen and (max-width: 480px) {
    /* Mobil özel stilleri buraya */
}

/* 2. Tablet için (min-width: 481px ve max-width: 768px) */
@media only screen and (min-width: 481px) and (max-width: 768px) {
    /* Tablet özel stilleri buraya */
}

/* 3. Masaüstü için (min-width: 769px) */
@media only screen and (min-width: 769px) {
    /* Masaüstü özel stilleri buraya */
}
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background-color: blueviolet;
    padding: 10px 0;
}

/* Tüm metinleri içine alan hareketli kutu */
.marquee-content {
    display: inline-block;
    animation: kaydirma 23s linear infinite;
}

/* Her bir metin parçası */
.marquee-item {
    display: inline-block;
    padding: 0 50px; /* Metinler arası boşluk */
    font-weight: bold;
    font-family: sans-serif;
    color:#FFF;
}

@keyframes kaydirma {
    0% { transform: translateX(100%); } /* Sağdan girsin */
    100% { transform: translateX(-100%); } /* Soldan tamamen çıksın */
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.kayanYaziAlan p{
    float: left;
    margin-left: 100px;
    margin-right: 100px;
}
.ortala{
    width: 600px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 300px;
}

.gorsellerOrtak{
    width: 600px;
}

.gorsellerOrtak img{
    width: 600px;
    display: block; /* Bu satırı ekle: Boşluğu yok eder */
}
/* Aynı durum video için de geçerli olabilir */
.gorsellerOrtak video {
    display: block;
}
.baslik{
    margin-top: 5px;
    font-size: 14px;
}
.inputOrtak{
    width: calc(100% - 8px);
    margin-top: 3px;
}

.gonderButon{
    width: 100%;
    margin-top: 15px;
    height: 36px;
    line-height: 36px;
    background: none;
    background-color: #373737;
    border: 0;
    color: #FFF;
    cursor: pointer;
}
.gonderButon:hover{
    background-color: #404040;
}

.formAlan{
    margin-top: 100px;
}








/* Tam ekran kaplayan karartma ve bulanıklaştırma */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Siyah transparan arka plan */
    backdrop-filter: blur(8px); /* Altındaki her şeyi bulanıklaştırır */
    display: none; /* JS ile görünür yapılacak */
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Ortadaki beyaz kutu */
.popup-icerik {
    background: white;
    padding: 30px;
    border-radius: 15px;
    display: flex; /* İçerikleri yan yana dizer */
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    max-width: 400px;
    width: 90%;
}

/* Sol taraf: Yeşil daire ve okey işareti */
.popup-simge {
    margin-right: 20px;
}

.okey-daire {
    width: 60px;
    height: 60px;
    background-color: #4CAF50; /* Yeşil */
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    font-weight: bold;
}

/* Sağ taraf: Metinler */
.popup-mesaj h2 {
    color: #4CAF50;
    margin: 0;
    font-size: 24px;
}

.popup-mesaj p {
    color: #666;
    margin: 5px 0 15px 0;
}

.popup-mesaj button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
}