/* TalepCar Download Page Styles - Mobile Optimized */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #3C9980 0%, #2d7d66 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -125px;
    left: -125px;
    animation: float 8s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.container {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    z-index: 1;
    animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(60, 153, 128, 0.3);
    animation: pulse 2s ease-in-out infinite;
    overflow: hidden;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(60, 153, 128, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 28px rgba(60, 153, 128, 0.4);
    }
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
    padding: 0 8px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.store-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 20px;
    background: #1a1a1a;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.store-button:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.store-button svg {
    width: 26px;
    height: 26px;
    fill: white;
    flex-shrink: 0;
}

.store-button.ios {
    background: #000;
}

.store-button.android {
    background: #01875f;
}

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 10px;
    opacity: 0.8;
    font-weight: 400;
}

.store-name {
    font-size: 17px;
    font-weight: 600;
}

.divider {
    display: flex;
    align-items: center;
    margin: 28px 0 20px;
    color: #999;
    font-size: 13px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e5e5;
}

.divider span {
    padding: 0 14px;
}

.info-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
}

.info-box p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}


.phone-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    opacity: 0.6;
}

.footer {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
}

.footer-content+.footer-content {
    margin-top: 8px;
}

.footer .company {
    font-weight: 600;
    color: #3C9980;
}

.footer .separator {
    color: #ccc;
}

.footer .email {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.footer .email:active {
    color: #3C9980;
}

/* Tablet ve Desktop için hover efektleri */
@media (hover: hover) {
    .store-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    .footer .email:hover {
        color: #3C9980;
    }
}

/* Küçük ekranlar için optimizasyon */
@media (max-width: 380px) {
    .container {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .logo {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        margin-bottom: 18px;
    }

    h1 {
        font-size: 23px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .store-button {
        padding: 13px 18px;
        font-size: 14px;
        gap: 10px;
    }

    .store-button svg {
        width: 24px;
        height: 24px;
    }

    .store-name {
        font-size: 16px;
    }

    .info-box {
        padding: 14px;
    }

    .info-box p {
        font-size: 12px;
    }

    .footer-content {
        font-size: 12px;
        gap: 8px;
    }
}

/* Landscape mode için */
@media (max-height: 600px) and (orientation: landscape) {
    body {
        padding: 12px;
    }

    .container {
        padding: 24px 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .logo {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    h1 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .divider {
        margin: 20px 0 16px;
    }

    .info-box {
        margin-top: 16px;
    }

    .phone-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 12px;
    }
}

/* Safe area padding for notched devices */
@supports (padding: max(0px)) {
    body {
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }
}

/* Description & Features Styles */
.description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
    padding: 0 4px;
}

.features-container {
    margin: 32px 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    background: #f0f2f4;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-icon {
    font-size: 24px;
    margin-right: 14px;
    line-height: 1;
    margin-top: 2px;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.feature-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}