/* TikTok Ücretsiz İzlenme Ultra Premium CSS */
:root {
    --tiktok-black: #000000;
    --tiktok-red: #FF0050;
    --tiktok-blue: #00F2EA;
    --tiktok-pink: #FF2D95;
    --tiktok-cyan: #00D4FF;
    --tiktok-purple: #9D4EDD;
    --tiktok-orange: #FF6B35;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: rgba(15, 15, 15, 0.95);
    --gradient-red-blue: linear-gradient(135deg, #FF0050 0%, #9D4EDD 50%, #00F2EA 100%);
    --gradient-blue-purple: linear-gradient(135deg, #00F2EA 0%, #9D4EDD 100%);
    --gradient-pink-cyan: linear-gradient(135deg, #FF2D95 0%, #00D4FF 100%);
    --neon-red-glow: 0 0 20px rgba(255, 0, 80, 0.5);
    --neon-blue-glow: 0 0 20px rgba(0, 242, 234, 0.5);
    --neon-pink-glow: 0 0 20px rgba(255, 45, 149, 0.5);
}

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

body {
    background: var(--dark-bg);
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Particle Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, #0a0a0a 0%, #000000 100%);
    z-index: -2;
}

/* Ana Konteyner */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Premium Header - Geliştirilmiş */
.premium-header {
    text-align: center;
    padding: 50px 30px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, 
        rgba(255, 0, 80, 0.1) 0%, 
        rgba(157, 78, 221, 0.1) 50%, 
        rgba(0, 242, 234, 0.1) 100%);
    border-radius: 25px;
    border: 2px solid;
    border-image: var(--gradient-red-blue) 1;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    animation: headerSlideDown 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 20px 40px rgba(255, 0, 80, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes headerSlideDown {
    from { 
        opacity: 0; 
        transform: translateY(-50px) scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.premium-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-red-blue);
    opacity: 0.05;
    z-index: -1;
}

.tiktok-logo {
    font-size: 4.5rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: logoFloat 3s ease-in-out infinite;
    background: var(--gradient-red-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 
        0 0 30px rgba(255, 0, 80, 0.5),
        0 0 60px rgba(157, 78, 221, 0.3);
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(2deg); 
    }
}

.premium-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    background: var(--gradient-red-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: textGlow 2s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from { 
        text-shadow: 
            0 0 20px rgba(255, 0, 80, 0.5),
            0 0 40px rgba(157, 78, 221, 0.3);
    }
    to { 
        text-shadow: 
            0 0 30px rgba(0, 242, 234, 0.5),
            0 0 60px rgba(157, 78, 221, 0.3);
    }
}

.premium-header .tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* User Status Card */
.user-status-card {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(0, 242, 234, 0.1);
    border-radius: 50px;
    border: 2px solid rgba(0, 242, 234, 0.3);
    backdrop-filter: blur(10px);
    animation: statusPulse 2s ease-in-out infinite;
    box-shadow: 
        0 10px 20px rgba(0, 242, 234, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes statusPulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 
            0 10px 20px rgba(0, 242, 234, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% { 
        transform: scale(1.02); 
        box-shadow: 
            0 15px 30px rgba(0, 242, 234, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

.remaining-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--gradient-red-blue);
    color: white;
    border-radius: 20px;
    font-weight: 900;
    font-size: 1.1rem;
    margin-left: 10px;
    animation: badgeGlow 1.5s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.3);
}

@keyframes badgeGlow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 0, 80, 0.3);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(255, 0, 80, 0.5),
            0 0 40px rgba(157, 78, 221, 0.3);
    }
}

/* Premium Card - Düzeltilmiş (dönen arkaplan yok) */
.premium-card {
    background: rgba(15, 15, 15, 0.95);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid;
    border-image: var(--gradient-red-blue) 1;
    backdrop-filter: blur(15px);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    animation: cardEntrance 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes cardEntrance {
    from { 
        opacity: 0; 
        transform: translateY(50px) scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

/* İzlenme Gösterimi */
.quantity-display {
    font-size: 5rem;
    font-weight: 900;
    margin: 20px 0;
    background: var(--gradient-red-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
    animation: numberPulse 2s ease-in-out infinite;
    text-shadow: 
        0 0 40px rgba(255, 0, 80, 0.3),
        0 0 80px rgba(157, 78, 221, 0.2);
}

@keyframes numberPulse {
    0%, 100% { 
        transform: scale(1); 
        text-shadow: 
            0 0 40px rgba(255, 0, 80, 0.3),
            0 0 80px rgba(157, 78, 221, 0.2);
    }
    50% { 
        transform: scale(1.05); 
        text-shadow: 
            0 0 50px rgba(255, 0, 80, 0.4),
            0 0 100px rgba(157, 78, 221, 0.3);
    }
}

.quantity-display::after {
    content: 'İZLENME';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    color: var(--tiktok-blue);
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 242, 234, 0.5);
    animation: subtitleGlow 2s ease-in-out infinite alternate;
}

@keyframes subtitleGlow {
    from { 
        text-shadow: 0 0 15px rgba(0, 242, 234, 0.5);
    }
    to { 
        text-shadow: 
            0 0 20px rgba(0, 242, 234, 0.7),
            0 0 30px rgba(157, 78, 221, 0.3);
    }
}

.card-title {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Özellikler Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid var(--tiktok-red);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: 0.5s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.03);
    border-left-color: var(--tiktok-blue);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 0, 80, 0.1);
}

.feature-item i {
    font-size: 2rem;
    color: var(--tiktok-red);
    margin-bottom: 15px;
    transition: all 0.3s;
}

.feature-item:hover i {
    color: var(--tiktok-blue);
    transform: scale(1.2);
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.feature-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Butonlar */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 40px;
    background: var(--gradient-red-blue);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 100%;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 
        0 15px 30px rgba(255, 0, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: 0.6s;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(255, 0, 80, 0.4),
        0 0 50px rgba(157, 78, 221, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-premium:disabled {
    background: linear-gradient(135deg, #333 0%, #555 100%);
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

.btn-premium:disabled:hover::before {
    left: -100%;
}

.btn-market {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 35px;
    background: var(--gradient-blue-purple);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    width: 100%;
    margin-top: 20px;
    box-shadow: 
        0 10px 20px rgba(0, 242, 234, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-market:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0, 242, 234, 0.3),
        0 0 40px rgba(157, 78, 221, 0.2);
    text-decoration: none;
    color: white;
}

/* Market Section */
.market-section {
    background: rgba(20, 20, 20, 0.8);
    border-radius: 20px;
    padding: 35px 30px;
    margin-top: 40px;
    border: 2px solid;
    border-image: var(--gradient-blue-purple) 1;
    text-align: center;
    animation: sectionSlideUp 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s both;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.market-section h3 {
    color: var(--tiktok-cyan);
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.market-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, 
        rgba(255, 0, 80, 0.05) 0%, 
        rgba(157, 78, 221, 0.05) 50%, 
        rgba(0, 242, 234, 0.05) 100%);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
    border-left: 4px solid var(--tiktok-blue);
    animation: infoBoxEntrance 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.6s both;
}

@keyframes infoBoxEntrance {
    from { 
        opacity: 0; 
        transform: translateX(-20px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

.info-box h4 {
    color: var(--tiktok-cyan);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}

.info-box ul {
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.info-box li {
    margin-bottom: 8px;
    line-height: 1.5;
    position: relative;
}

.info-box li::before {
    content: '✓';
    color: var(--tiktok-blue);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

/* Orders Section */
.orders-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    animation: ordersEntrance 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.9s both;
}

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

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    background: var(--gradient-red-blue);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-red-blue);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.3);
}

.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.order-card {
    background: rgba(20, 20, 20, 0.9);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.order-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-red-blue);
    opacity: 0.5;
}

.order-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--tiktok-red);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 0, 80, 0.2);
}

.order-number {
    color: var(--tiktok-blue);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
    font-weight: 600;
    letter-spacing: 1px;
}

.order-status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.status-processing {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(157, 78, 221, 0.2));
    color: #00D4FF;
    border: 1px solid rgba(0, 212, 255, 0.4);
}

.status-completed {
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.2), rgba(0, 242, 234, 0.2));
    color: #20C997;
    border: 1px solid rgba(32, 201, 151, 0.4);
}

/* Alert Stilleri */
.alert {
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    border-left: 4px solid;
    backdrop-filter: blur(10px);
    animation: alertEntrance 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes alertEntrance {
    from { 
        opacity: 0; 
        transform: translateX(-20px); 
    }
    to { 
        opacity: 1; 
        transform: translateX(0); 
    }
}

.alert-warning {
    background: linear-gradient(135deg, 
        rgba(255, 193, 7, 0.1) 0%, 
        rgba(255, 107, 53, 0.1) 100%);
    border-color: #FF6B35;
    color: #FFC107;
}

.alert-info {
    background: linear-gradient(135deg, 
        rgba(0, 123, 255, 0.1) 0%, 
        rgba(157, 78, 221, 0.1) 100%);
    border-color: #9D4EDD;
    color: #00D4FF;
}

/* Modal Stilleri */
.premium-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(20px);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content-premium {
    background: rgba(20, 20, 20, 0.98);
    padding: 40px;
    border-radius: 25px;
    width: 100%;
    max-width: 500px;
    border: 2px solid;
    border-image: var(--gradient-red-blue) 1;
    animation: modalSlideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes modalSlideUp {
    from { 
        opacity: 0; 
        transform: translateY(50px) scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
}

.modal-close-btn:hover {
    background: rgba(255, 0, 80, 0.3);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.3);
}

.form-group-premium {
    margin-bottom: 25px;
}

.form-label-premium {
    display: block;
    margin-bottom: 10px;
    color: var(--tiktok-blue);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 10px rgba(0, 242, 234, 0.3);
}

.form-control-premium {
    width: 100%;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(0, 242, 234, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(5px);
}

.form-control-premium:focus {
    outline: none;
    border-color: var(--tiktok-blue);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 
        0 0 0 4px rgba(0, 242, 234, 0.2),
        0 0 30px rgba(0, 242, 234, 0.1);
    transform: scale(1.02);
}

/* Footer */
.tiktok-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: footerEntrance 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.2s both;
}

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

/* Responsive */
@media (max-width: 768px) {
    .premium-header h1 {
        font-size: 2rem;
    }
    
    .quantity-display {
        font-size: 4rem;
    }
    
    .btn-premium, .btn-market {
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .market-section {
        padding: 25px 20px;
    }
    
    .modal-content-premium {
        padding: 30px 20px;
    }
}