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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(-45deg, #1e3a8a, #1e40af, #1d4ed8, #2563eb, #3b82f6, #1e3a8a);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 400px;
    width: 90%;
    text-align: center;
    padding: 2rem 1rem;
}

/* Logo Styles */
.logo-container {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out 0.2s forwards;
}

.logo {
    display: inline-block;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Title Styles */
.title-container {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out 0.4s forwards;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    margin: 0 auto 0.5rem auto;
    width: fit-content;
    max-width: 100%;
}

.app-status {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    background: rgba(59, 130, 246, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(10px);
    margin-top: 0.5rem;
}

/* Platform Options and QR Codes */
.platforms-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out 0.6s forwards;
}

.platform-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.platform-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 160px;
}

.platform-option:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.platform-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
    overflow: hidden;
}

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

.platform-icon img[alt="Android"] {
    border-radius: 0;
}

.platform-option:hover .platform-icon {
    transform: scale(1.1);
}

.platform-text {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

/* QR Code */
.qr-code {
    display: inline-block;
    padding: 0.8rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 0.5rem;
}

.qr-code:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.8s ease-out 1s forwards;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.email-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
    color: #3B82F6;
}

.email-link svg {
    transition: transform 0.3s ease;
}

.email-link:hover svg {
    transform: scale(1.1);
}

.company-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    text-align: center;
    line-height: 1.4;
    font-weight: 400;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobil Yönlendirme Bildirimi */
.mobile-redirect-notice {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(59, 130, 246, 0.95);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.5s ease-out;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.notice-content svg {
    flex-shrink: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        padding: 1rem 0.5rem;
    }
    
    .title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .app-status {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .platforms-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .platform-section {
        gap: 0.5rem;
    }
    
    .platform-option {
        min-width: 140px;
        padding: 1.5rem;
        gap: 0.8rem;
    }
    
    .platform-icon {
        width: 40px;
        height: 40px;
    }
    
    .platform-icon img {
        width: 28px;
        height: 28px;
    }
    
    .qr-code {
        padding: 0.6rem;
    }
    
    .qr-code img {
        width: 80px;
        height: 80px;
    }
    
    .logo {
        padding: 0.8rem;
    }
    
    .logo img {
        width: 50px;
        height: 50px;
    }
    
    .email-link {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .company-info {
        font-size: 0.8rem;
        margin-top: 0.8rem;
        max-width: 350px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .container {
        padding: 0.8rem 0.3rem;
    }
    
    .title {
        font-size: 1.6rem;
    }
    
    .platform-option {
        min-width: 120px;
        padding: 1.2rem;
    }
    
    .qr-code img {
        width: 70px;
        height: 70px;
    }
    
    .logo img {
        width: 45px;
        height: 45px;
    }
}

/* Loading animation for elements */
.animate-up {
    opacity: 0;
    transform: translateY(50px);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Additional hover effects */
.platform-option:active {
    transform: translateY(-4px);
}

.qr-code:active {
    transform: scale(1.02);
}

.email-link:active {
    transform: translateY(-1px);
}
