/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

/* Container */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem 1rem;
}

/* Animated Background Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 6s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; animation-duration: 8s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; animation-duration: 7s; }
.particle:nth-child(4) { left: 40%; animation-delay: 0.5s; animation-duration: 9s; }
.particle:nth-child(5) { left: 60%; animation-delay: 1.5s; animation-duration: 5s; }
.particle:nth-child(6) { left: 70%; animation-delay: 3s; animation-duration: 6s; }
.particle:nth-child(7) { left: 80%; animation-delay: 2.5s; animation-duration: 8s; }
.particle:nth-child(8) { left: 90%; animation-delay: 4s; animation-duration: 7s; }

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Main Content */
.content {
    text-align: center;
    z-index: 1;
    position: relative;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Section */
.logo-section {
    margin-bottom: 3rem;
}

.main-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    to {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6));
    }
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    margin: 0 auto;
    border-radius: 2px;
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: scaleX(0.5); opacity: 0.5; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0.5); opacity: 0.5; }
}

/* Message Section */
.message-section {
    margin-bottom: 4rem;
}

.coming-soon {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Countdown Section */
.countdown-section {
    margin-bottom: 4rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.time-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.time {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Subscription Section */
.subscription-section {
    margin-bottom: 3rem;
}

.subscription-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 600;
}

.email-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

#emailInput {
    flex: 1;
    min-width: 250px;
    padding: 12px 16px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#emailInput:focus {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

#emailInput::placeholder {
    color: #666;
}

button {
    padding: 12px 24px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(238, 90, 36, 0.4);
    white-space: nowrap;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.6);
    background: linear-gradient(45deg, #ff5252, #d63031);
}

button:active {
    transform: translateY(0);
}

.subscription-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

/* Social Section */
.social-section {
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-info {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.contact-info a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff6b6b;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem 0.5rem;
    }

    .countdown {
        gap: 1rem;
    }

    .time-box {
        padding: 1rem;
        min-width: 80px;
    }

    .time {
        font-size: 2rem;
    }

    .label {
        font-size: 0.8rem;
    }

    .email-form {
        flex-direction: column;
        align-items: center;
    }

    #emailInput {
        min-width: 280px;
        margin-bottom: 1rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .message-section {
        margin-bottom: 3rem;
    }

    .countdown-section {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }

    .coming-soon {
        font-size: 1.8rem;
    }

    .description {
        font-size: 1rem;
    }

    .time-box {
        padding: 0.8rem;
        min-width: 70px;
    }

    .time {
        font-size: 1.8rem;
    }

    #emailInput {
        min-width: 240px;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out 0.5s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* AI Efektleri - Neural Networks & Digital Particles */
.fireworks-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Neural Network Node */
.firework {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    border: 2px solid transparent;
}

.firework.launching {
    background: radial-gradient(circle, #00ffff 0%, #0066ff 100%);
    animation: neuralActivation 1.2s ease-out forwards;
    box-shadow: 
        0 0 10px #00ffff,
        0 0 20px #0066ff,
        inset 0 0 10px rgba(255,255,255,0.5);
    border: 2px solid #00ffff;
}

@keyframes neuralActivation {
    0% {
        transform: scale(0.5);
        opacity: 0.3;
        box-shadow: 0 0 5px #00ffff;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 
            0 0 20px #00ffff,
            0 0 40px #0066ff,
            0 0 60px rgba(0,255,255,0.3);
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 
            0 0 15px #00ffff,
            0 0 30px #0066ff;
    }
}

/* Digital Data Particle */
.firework-particle {
    position: absolute;
    width: 2px;
    height: 6px;
    background: linear-gradient(to bottom, #00ff41, #00ffff);
    pointer-events: none;
    animation: dataStream 2s ease-out forwards;
    border-radius: 1px;
    box-shadow: 0 0 4px currentColor;
}

.firework-particle::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.8);
    left: 50%;
    transform: translateX(-50%);
    animation: dataFlicker 0.1s infinite alternate;
}

@keyframes dataStream {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translate(var(--dx), var(--dy)) scale(0.3) rotate(90deg);
        opacity: 0;
    }
}

@keyframes dataFlicker {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* AI Temalı Renkler - Tech Colors */
.firework-cyan { 
    background: linear-gradient(45deg, #00ffff, #0099ff); 
    box-shadow: 0 0 8px #00ffff, 0 0 16px rgba(0,255,255,0.5);
    color: #00ffff;
}
.firework-matrix { 
    background: linear-gradient(45deg, #00ff41, #00cc33); 
    box-shadow: 0 0 8px #00ff41, 0 0 16px rgba(0,255,65,0.5);
    color: #00ff41;
}
.firework-electric { 
    background: linear-gradient(45deg, #0066ff, #0044cc); 
    box-shadow: 0 0 8px #0066ff, 0 0 16px rgba(0,102,255,0.5);
    color: #0066ff;
}
.firework-neon { 
    background: linear-gradient(45deg, #ff0080, #cc0066); 
    box-shadow: 0 0 8px #ff0080, 0 0 16px rgba(255,0,128,0.5);
    color: #ff0080;
}
.firework-hologram { 
    background: linear-gradient(45deg, #9966ff, #7744cc); 
    box-shadow: 0 0 8px #9966ff, 0 0 16px rgba(153,102,255,0.5);
    color: #9966ff;
}
.firework-circuit { 
    background: linear-gradient(45deg, #ffff00, #cccc00); 
    box-shadow: 0 0 8px #ffff00, 0 0 16px rgba(255,255,0,0.5);
    color: #ffff00;
}
.firework-data { 
    background: linear-gradient(45deg, #ff4000, #cc3300); 
    box-shadow: 0 0 8px #ff4000, 0 0 16px rgba(255,64,0,0.5);
    color: #ff4000;
}
.firework-quantum { 
    background: linear-gradient(45deg, #40ff80, #33cc66); 
    box-shadow: 0 0 8px #40ff80, 0 0 16px rgba(64,255,128,0.5);
    color: #40ff80;
}

/* Neural Network Burst - Büyük AI Efekti */
.big-explosion {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    pointer-events: none;
    animation: neuralBurst 1.2s ease-out forwards;
    border: 2px solid #00ffff;
}

@keyframes neuralBurst {
    0% {
        transform: scale(0);
        opacity: 1;
        background: radial-gradient(circle, 
            rgba(0,255,255,0.8) 0%, 
            rgba(0,102,255,0.6) 20%, 
            rgba(0,255,65,0.4) 40%, 
            rgba(153,102,255,0.2) 70%, 
            transparent 100%);
        box-shadow: 
            0 0 20px #00ffff,
            0 0 40px #0066ff,
            inset 0 0 20px rgba(255,255,255,0.3);
    }
    30% {
        transform: scale(0.8);
        opacity: 0.9;
        box-shadow: 
            0 0 40px #00ffff,
            0 0 80px #0066ff,
            0 0 120px rgba(0,255,255,0.3);
    }
    70% {
        transform: scale(1.2);
        opacity: 0.5;
        background: radial-gradient(circle, 
            rgba(0,255,255,0.4) 0%, 
            rgba(0,102,255,0.3) 30%, 
            transparent 60%);
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
        box-shadow: 
            0 0 60px rgba(0,255,255,0.1),
            0 0 120px rgba(0,102,255,0.1);
    }
}

/* Circuit Connection - Devre Bağlantıları */
.star-burst {
    position: absolute;
    width: 6px;
    height: 6px;
    pointer-events: none;
    background: #00ffff;
    border-radius: 50%;
    box-shadow: 0 0 6px currentColor;
}

.star-burst::before,
.star-burst::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 1px;
    background: linear-gradient(to right, 
        currentColor 0%, 
        rgba(255,255,255,0.8) 50%, 
        currentColor 100%);
    top: 50%;
    left: 50%;
    transform-origin: left center;
    animation: circuitPulse 1.5s ease-out forwards;
    box-shadow: 0 0 4px currentColor;
}

.star-burst::before {
    transform: translate(-50%, -50%) rotate(var(--rotation));
}

.star-burst::after {
    transform: translate(-50%, -50%) rotate(calc(var(--rotation) + 90deg));
}

@keyframes circuitPulse {
    0% {
        transform: translate(-50%, -50%) rotate(var(--rotation)) scaleX(0);
        opacity: 1;
        box-shadow: 0 0 2px currentColor;
    }
    30% {
        transform: translate(-50%, -50%) rotate(var(--rotation)) scaleX(0.7);
        opacity: 1;
        box-shadow: 0 0 8px currentColor;
    }
    70% {
        transform: translate(-50%, -50%) rotate(var(--rotation)) scaleX(1);
        opacity: 0.8;
        box-shadow: 0 0 12px currentColor;
    }
    100% {
        transform: translate(-50%, -50%) rotate(var(--rotation)) scaleX(0.3);
        opacity: 0;
        box-shadow: 0 0 4px currentColor;
    }
}

/* Data Transmission Beam - Veri İletim Huzmesi */
.light-ray {
    position: absolute;
    width: 1px;
    height: 80px;
    background: linear-gradient(to top, 
        transparent 0%, 
        currentColor 20%, 
        rgba(255,255,255,0.9) 50%, 
        currentColor 80%, 
        transparent 100%);
    pointer-events: none;
    animation: dataBeam 1.2s ease-out forwards;
    transform-origin: bottom center;
    box-shadow: 0 0 4px currentColor;
}

.light-ray::before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: currentColor;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: dataPacket 1.2s ease-out forwards;
    box-shadow: 0 0 6px currentColor;
}

@keyframes dataBeam {
    0% {
        transform: scale(0, 0) rotate(var(--angle));
        opacity: 1;
        box-shadow: 0 0 2px currentColor;
    }
    30% {
        transform: scale(1, 0.3) rotate(var(--angle));
        opacity: 1;
        box-shadow: 0 0 8px currentColor;
    }
    70% {
        transform: scale(1, 1) rotate(var(--angle));
        opacity: 0.8;
        box-shadow: 0 0 12px currentColor;
    }
    100% {
        transform: scale(0.3, 0.7) rotate(var(--angle));
        opacity: 0;
        box-shadow: 0 0 4px currentColor;
    }
}

@keyframes dataPacket {
    0% { transform: translate(-50%, 50%) scale(0); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -150%) scale(0); }
}

/* Neural Connection Trail - Sinir Ağı Bağlantısı */
.firework-trail {
    position: absolute;
    width: 1px;
    height: 25px;
    background: linear-gradient(to top, 
        transparent, 
        #00ffff 30%, 
        rgba(255,255,255,0.9) 50%,
        #00ffff 70%, 
        transparent);
    pointer-events: none;
    animation: neuralTrail 0.8s ease-out forwards;
    box-shadow: 0 0 3px #00ffff;
}

.firework-trail::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00ffff;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: neuralPulse 0.8s ease-out forwards;
    box-shadow: 0 0 4px #00ffff;
}

@keyframes neuralTrail {
    0% {
        transform: translateY(0) scaleY(1);
        opacity: 1;
        box-shadow: 0 0 2px #00ffff;
    }
    100% {
        transform: translateY(-15px) scaleY(0.2);
        opacity: 0;
        box-shadow: 0 0 6px #00ffff;
    }
}

@keyframes neuralPulse {
    0% { 
        transform: translateX(-50%) translateY(0) scale(1); 
        opacity: 1; 
    }
    100% { 
        transform: translateX(-50%) translateY(-25px) scale(0.3); 
        opacity: 0; 
    }
}

/* Digital Interface Click - Dijital Arayüz Tıklama Efekti */
.click-spark {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #00ffff, #0066ff);
    border-radius: 50%;
    pointer-events: none;
    animation: digitalClick 0.8s ease-out forwards;
    box-shadow: 
        0 0 10px #00ffff,
        0 0 20px rgba(0,255,255,0.5);
    border: 1px solid #00ffff;
}

.click-spark::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #00ffff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: digitalRipple 0.8s ease-out forwards;
}

.click-spark::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: digitalCore 0.8s ease-out forwards;
    box-shadow: 0 0 4px #fff;
}

@keyframes digitalClick {
    0% {
        transform: scale(0.8);
        opacity: 1;
        box-shadow: 
            0 0 8px #00ffff,
            0 0 16px rgba(0,255,255,0.5);
    }
    50% {
        transform: scale(1.2);
        opacity: 0.9;
        box-shadow: 
            0 0 20px #00ffff,
            0 0 40px rgba(0,255,255,0.7);
    }
    100% {
        transform: scale(0.6);
        opacity: 0;
        box-shadow: 
            0 0 10px #00ffff,
            0 0 20px rgba(0,255,255,0.3);
    }
}

@keyframes digitalRipple {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
        border-color: #00ffff;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
        border-color: rgba(0,255,255,0.1);
    }
}

@keyframes digitalCore {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
}

/* Mobile AI Effects Optimization - Mobil AI Efektleri Optimizasyonu */
@media (max-width: 768px) {
    .firework-particle {
        width: 1px;
        height: 4px;
    }
    
    .firework {
        width: 6px;
        height: 6px;
    }
    
    .big-explosion {
        width: 120px;
        height: 120px;
    }
    
    .light-ray {
        height: 50px;
        width: 1px;
    }
    
    .star-burst {
        width: 4px;
        height: 4px;
    }
    
    .star-burst::before,
    .star-burst::after {
        width: 20px;
    }
    
    .click-spark {
        width: 6px;
        height: 6px;
    }
    
    .click-spark::before {
        width: 15px;
        height: 15px;
    }
    
    .firework-trail {
        height: 15px;
    }
}

/* Bilgilendirme Popup */
.info-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    max-width: 280px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: all;
    font-family: 'Poppins', sans-serif;
}

.info-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.info-popup.hide {
    transform: translateY(100px) scale(0.8);
    opacity: 0;
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.popup-icon {
    font-size: 24px;
    margin-right: 10px;
    animation: popupIconBounce 2s ease-in-out infinite;
}

@keyframes popupIconBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(0.95) rotate(5deg); }
}

.popup-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.popup-close:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    transform: scale(1.1);
}

.popup-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
    flex: 1;
}

.popup-content {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
    margin-bottom: 10px;
}

.popup-keys {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    margin: 0 2px;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}

.popup-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.popup-try-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(0.95);
}

.popup-try-btn:hover {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.popup-dismiss {
    font-size: 11px;
    color: #888;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.popup-dismiss:hover {
    color: #667eea;
}

/* Mobile için popup ayarları */
@media (max-width: 768px) {
    .info-popup {
        bottom: 15px;
        right: 15px;
        left: 15px;
        max-width: none;
        padding: 12px 15px;
    }
    
    .popup-content {
        font-size: 12px;
    }
    
    .popup-title {
        font-size: 13px;
    }
    
    .popup-keys {
        font-size: 10px;
        padding: 2px 4px;
    }
    
    .popup-try-btn {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .popup-footer {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
}

/* Popup giriş animasyonu */
@keyframes popupSlideIn {
    0% {
        transform: translateY(100px) scale(0.8);
        opacity: 0;
    }
    50% {
        transform: translateY(-10px) scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.info-popup.animate-in {
    animation: popupSlideIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
