* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.container {
    text-align: center;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-top: 70px;
}

.app-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-icon {
    display: block;
    width: 120px;
    height: 120px;
    border-radius: 25px;
    margin: 0 auto 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
    object-fit: contain;
}

.title {
    font-size: 26px; /* Turkce metin biraz daha uzun oldugu icin fontu hafif kistim */
    font-weight: 600;
    color: black;
    margin-bottom: 8px;
    max-width: 420px;
}

.popup {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 20px;
    padding: 25px;
    max-width: 350px;
    width: 300px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.popup::after {
    content: '';
    position: absolute;
    top: -10px;
    right: 10px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid white;
}

.tiktok-icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin: 0 2px;
    vertical-align: middle;
    background-color: #000; /* Ikonun arkasi siyah olsun ki belli olsun */
    object-fit: cover;
}

.three-dots {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: #666;
    border-radius: 50%;
    margin: 0 2px;
    position: relative;
    vertical-align: middle;
}

.three-dots::after {
    content: '⋯';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.highlight {
    color: rgb(0,122,255);
    font-weight: bold;
}

.download-button {
    display: inline-block;
    background: rgb(0,122,255);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0,122,255,0.3);
    transition: all 0.3s ease;
}

.download-button:hover {
    background: rgba(0,122,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,122,255,0.4);
}
