<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: #fdfdfd;
    color: #333;
}

body {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 15px;
}

.wrapper {
    background-color: #ffffff;
    padding: 45px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 750px;
    text-align: left;
    margin: 0 auto;
    border: 1px solid #e1e1e1;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #1c262e;
	line-height: 1.9rem !important;
    margin-bottom: 20px;
    font-weight: 900;
    word-wrap: break-word;
}

h2 {
	font-family: 'Playfair Display', serif;
    font-weight: 300;
	margin-bottom: 20px;
    font-size: 1.4rem;
    color: #1c262e;
}

.description-box {
    background-color: #ffffff;
    border: 1px solid #1c262e;
    padding: 20px;
    margin-bottom: 20px;
}

.description {
    font-family: 'Poppins', sans-serif;
    color: #373636;
    font-size: 0.875rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Geri SayÄ±m KÄ±smÄ± Kutusu */
.countdown-container {
    background-color: #ffffff;
    border: 1px solid #1c262e;
    padding: 25px;
    margin-bottom: 25px;
    max-width: 100%; /* TaÅŸma Ã¶nlenir */
    text-align: left;
    box-sizing: border-box; /* Kenar boÅŸluklarÄ± hesaba katÄ±lÄ±r */
    overflow: hidden; /* Kutudan taÅŸmayÄ± engeller */
}

.countdown-box {
    text-align: left;
    margin-bottom: 30px;
}

.countdown-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1c262e;
}

.countdown-timer {
    display: flex;
    justify-content: space-between; /* ElemanlarÄ± yan yana dizmek iÃ§in */
    gap: 5px;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
}

.time {
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex: 1;
    border: 1px solid #ccc;
    min-width: 100px;
}

.time span {
	font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    color: #1c262e;
}

.time p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    margin-top: 5px;
}

.launch-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.subscription-box {
    background-color: #1c262e;
    padding: 25px;
    color: white;
    width: 100%;
}

.signup-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 100;
}

.newsletter-info {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    margin-bottom: 15px;
    color: #f1f1f1;
}

.email-signup {
    display: flex;
    gap: 10px;
    width: 100%;
    flex-direction: column;
}

.email-signup input[type="email"] {
    padding: 12px;
    flex: 1;
    font-size: 0.9rem;
    color: #333;
    width: 100%;
}

.email-signup button {
    padding: 12px 20px;
    background-color: #2980b9;
    color: white;
    border: 1px solid #2980b9;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    width: 100%;
}

.email-signup button:hover {
    background-color: #1c262e;
    border-color: #1c262e;
}

.long-content {
    margin-top: 20px;
}

#long-text {
    font-size: 0.75rem;
    color: #333;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#read-more {
    background: none;
    border: none;
    font-weight: 900;
    color: #2980b9;
    cursor: pointer;
    font-size: 0.75rem;
    text-decoration: underline;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .wrapper {
        padding: 20px;
        width: 100%;
    }

    .email-signup {
        flex-direction: column;
    }

    .email-signup input[type="email"],
    .email-signup button {
        width: 100%;
    }

    .countdown-timer {
        flex-direction: row; /* Mobilde de yan yana kalsÄ±n */
    }
}
</pre></body></html>