<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.woooq-video {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9; /* Otomatik oran koruma */
  overflow: hidden;
}

.woooq-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Shorts iÃ§in kare/vertical gÃ¶rÃ¼nÃ¼me uygun stil */
.short-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px; /* Daha dar gÃ¶rÃ¼nÃ¼m */
    aspect-ratio: 9 / 16;
    margin: 0 auto;
    overflow: hidden;
}

.short-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
form {
    margin: 0;
    padding: 0;
    display: flex; /* Veya parent div'inize uygun baÅŸka bir dÃ¼zenleme */
    width: 100%; /* Formun geniÅŸliÄŸini kontrol etmek iÃ§in */
}
 
  .post-container {
      
        }

        .post-input {
            display: flex;
            align-items: center;
            background: #f0f2f5;
            border: 1px solid #ddd;
            border-radius: 25px;
            padding: 10px 25px;
            transition: border-color 0.2s;
        }

        .post-input:hover,
        .post-input:focus-within {
            border-color: #1877f2;
        }

        .post-input .emoji {
            font-size: 20px;
            margin-right: 10px;
        }

        .post-input textarea {
            border: none;
            outline: none;
            background: none;
            font-size: 16px;
            flex: 1;
            resize: none;
            overflow: hidden;
            line-height: 1.5;
        }

        .post-input textarea:focus {
            height: auto;
        }

.post-button {
    background-color: #ff0000;
    color: #fff;
    border: none;
    border-radius: 50%; /* Daire buton */
    width: 40px; /* Buton geniÅŸliÄŸi */
    height: 40px; /* Buton yÃ¼ksekliÄŸi */
    display: flex; /* Flex dÃ¼zenleme */
    justify-content: center; /* Yatay ortalama */
    align-items: center; /* Dikey ortalama */
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.2s;
}

.post-button:hover {
    background-color: #cc0000;
}

.post-button svg {
    fill: #fff;
    width: 30px; /* SVG geniÅŸlik */
    height: 30px; /* SVG yÃ¼kseklik */
    transform: rotate(90deg); /* Ok simgesini dÃ¶ndÃ¼r */
    display: block; /* Merkezi hizalama */
}


.og-title, .og-image, .og-description, .video-container, .image-container {
    max-width: 100%;
    word-wrap: break-word;
    overflow: hidden;
}
.og-title {
    font-weight: bold;
}

    .post-container {
        max-width: 100%; /* Ä°Ã§eriÄŸin div'in maksimum geniÅŸliÄŸine sÄ±ÄŸmasÄ±nÄ± saÄŸlar */
        overflow: hidden; /* Ä°Ã§eriÄŸin taÅŸmasÄ±nÄ± Ã¶nler */
    }
	
	
   .video-container {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

/* Klasik yatay YouTube videolarÄ± (16:9) */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 640px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


    .video-container iframe {
        position: absolute; /* Ä°frame'i pozisyonlamak iÃ§in */
        top: 0; /* Ãœst kenardan baÅŸlayacak ÅŸekilde */
        left: 0; /* Sol kenardan baÅŸlayacak ÅŸekilde */
        width: 100%; /* GeniÅŸlik %100 olacak ÅŸekilde */
        height: 100%; /* YÃ¼kseklik %100 olacak ÅŸekilde */
    }

    .image-container {
        max-width: 100%; /* GÃ¶rselin geniÅŸliÄŸini %100 olarak ayarlar */
    }

    .image-container img {
        width: 100%; /* GÃ¶rselin geniÅŸliÄŸini %100 olarak ayarlar */
        height: auto; /* YÃ¼ksekliÄŸi otomatik olarak ayarlar, en boy oranÄ±nÄ± korur */
        display: block; /* Blok element yapar, altÄ±ndaki boÅŸluÄŸu kaldÄ±rÄ±r */
    }
	
.ig-live {
    position: relative; /* Metnin konumlandÄ±rÄ±lmasÄ± iÃ§in */
    width: 100px;
    height: 100px;
    border: 3px solid red; /* KÄ±rmÄ±zÄ± sÄ±nÄ±r */
    border-radius: 50%; /* Yuvarlak kÃ¶ÅŸeler */
    overflow: hidden; /* Ä°Ã§eriÄŸin sÄ±nÄ±rlarÄ±nÄ±n dÄ±ÅŸÄ±na Ã§Ä±kmasÄ±nÄ± engeller */
    display: flex;
    justify-content: center;

}


.uye-class {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid black;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uye-class img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ig-live::after {
    content: 'CANLI';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 3px 6px;
    background-color: red; /* Arka plan rengi */
    color: white; /* Metin rengi */
    font-size: 10px; /* Metin boyutu */
    border-radius: 3px; /* KÃ¶ÅŸe yuvarlama */

    /* Animasyon */
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 0;
    }
    51%, 100% {
        opacity: 1;
    }
}

          /* Basit stil eklemeleri */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 10% auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    text-align: center;
}

.live-badge {
 position: absolute;
    top: 10px; /* Ãœstten 10px boÅŸluk bÄ±rak */
    left: 50%;
    transform: translateX(-50%);
    background-color: red;
    color: white;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 5px;
    animation: blink 1s infinite alternate;
}

@keyframes blink {
    from { opacity: 1; }
    to { opacity: 0; }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-right: 10px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
		
		@media (max-width: 768px) { /* Mobil ekran boyutu iÃ§in ayarlar */
    .modal-content {
        background-color: #fefefe;
        margin: 0;
        padding: 0;
        border: none;
        width: 100%;
        height: 100%;
    }

    .close {
        position: absolute;
        top: 10px;
        right: 10px;
        color: #aaa;
        font-size: 28px;
        font-weight: bold;
    }
}

	</pre></body></html>