/*
 * Modern Professional Slider Styles - ADVANCED VERSION
 * Zengin animasyonlar, 3D efektler ve dinamik tasarım
 * Datawise.fonwise.com sitesinden ilham alınarak geliştirildi
 */

/* Ana Slider Container */
.modern-hero-slider {
    position: relative;
    width: 100%;
    height: calc(100vh - 150px);
    max-height: 800px;
    min-height: 650px;
    overflow: hidden;
    background: #0a0e27;
    margin-top: 191px;
}

/* Animated Background Particles */
.modern-hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(255,255,255,0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255,255,255,0.2), transparent),
        radial-gradient(3px 3px at 50% 50%, rgba(255,255,255,0.15), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(255,255,255,0.25), transparent),
        radial-gradient(1px 1px at 90% 60%, rgba(255,255,255,0.2), transparent),
        radial-gradient(2px 2px at 30% 80%, rgba(255,255,255,0.18), transparent);
    background-size: 300% 300%;
    animation: particleMove 25s ease-in-out infinite;
    opacity: 0.7;
    z-index: 1;
}

@keyframes particleMove {
    0%, 100% { background-position: 0% 0%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

/* Slider Items Container */
.modern-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Her Slide İçin */
.modern-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 1s cubic-bezier(0.4, 0, 0.2, 1),
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.modern-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Slide İçerikleri */
.modern-slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 3;
}

/* Sol Taraf - Metin İçeriği */
.modern-slide-text {
    flex: 1;
    max-width: 550px;
    padding-right: 40px;
}

/* Badge/Etiket - Enhanced */
.modern-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(25px);
    border-radius: 50px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15),
                inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.modern-slide-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s;
}

.modern-slide-badge:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.2));
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.4),
                0 0 40px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.modern-slide-badge:hover::before {
    left: 100%;
}

.modern-slide-badge i {
    margin-right: 0;
    color: #fff;
    font-size: 16px;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Başlık - Enhanced */
.modern-slide-title {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.05;
    margin-bottom: 30px;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6),
                 0 0 120px rgba(255, 255, 255, 0.2),
                 0 0 60px rgba(102, 126, 234, 0.4);
    letter-spacing: -2px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(118, 75, 162, 0.6));
    }
}

.modern-slide-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, transparent);
    border-radius: 2px;
}

/* Alt Başlık - Enhanced */
.modern-slide-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    margin-bottom: 45px;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.3px;
}

/* CTA Butonları */
.modern-slide-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.modern-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.modern-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.45),
                0 0 50px rgba(102, 126, 234, 0.25);
    position: relative;
    overflow: hidden;
}

.modern-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: left 0.7s;
}

.modern-btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s, height 0.6s;
}

.modern-btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.7),
                0 0 100px rgba(102, 126, 234, 0.5),
                inset 0 0 30px rgba(255, 255, 255, 0.2);
}

.modern-btn-primary:hover::before {
    left: 100%;
}

.modern-btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.modern-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.modern-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Fiyat Bilgisi - Enhanced */
.modern-slide-price {
    display: inline-flex;
    flex-direction: column;
    margin-left: 35px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.modern-slide-price:hover {
    transform: translateY(-5px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.14));
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 50px rgba(102, 126, 234, 0.3),
                inset 0 2px 10px rgba(255, 255, 255, 0.2);
}

.modern-price-amount {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.35);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-price-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Sağ Taraf - Görsel */
.modern-slide-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 550px;
    position: relative;
}

.modern-slide-visual img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.6)) brightness(1.05);
    animation: dynamicFloat 4s ease-in-out infinite, rotate3D 8s linear infinite, pulse 3s ease-in-out infinite;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.6s ease;
    transform-style: preserve-3d;
}

.modern-slide-visual:hover img {
    transform: scale(1.15) rotateY(15deg) rotateX(-5deg) translateZ(30px);
    filter: drop-shadow(0 50px 100px rgba(0, 0, 0, 0.8)) brightness(1.15) contrast(1.1);
    animation-play-state: paused;
}

/* Dynamic Float Animation */
@keyframes dynamicFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotateZ(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(15px) rotateZ(3deg);
    }
    50% {
        transform: translateY(-15px) translateX(-10px) rotateZ(-2deg);
    }
    75% {
        transform: translateY(-35px) translateX(5px) rotateZ(4deg);
    }
}

/* 3D Rotation */
@keyframes rotate3D {
    0% { transform: rotateY(0deg) rotateX(0deg); }
    25% { transform: rotateY(5deg) rotateX(-3deg); }
    50% { transform: rotateY(-5deg) rotateX(3deg); }
    75% { transform: rotateY(3deg) rotateX(-2deg); }
    100% { transform: rotateY(0deg) rotateX(0deg); }
}

/* Pulse Effect */
@keyframes pulse {
    0%, 100% { filter: drop-shadow(0 35px 70px rgba(102, 126, 234, 0.4)) brightness(1.05); }
    50% { filter: drop-shadow(0 45px 90px rgba(118, 75, 162, 0.6)) brightness(1.15); }
}

/* Dekoratif Elementler - Enhanced */
.modern-slide-bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.2), transparent 70%);
    animation: pulse 12s ease-in-out infinite;
    filter: blur(60px);
}

.decoration-circle-1 {
    width: 700px;
    height: 700px;
    top: -250px;
    right: -250px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.35), rgba(102, 126, 234, 0.15) 50%, transparent 70%);
    animation: pulse 10s ease-in-out infinite, moveCircle1 20s linear infinite;
}

.decoration-circle-2 {
    width: 600px;
    height: 600px;
    bottom: -200px;
    left: -200px;
    animation-delay: 4s;
    background: radial-gradient(circle, rgba(67, 233, 123, 0.3), rgba(16, 185, 129, 0.15) 50%, transparent 70%);
    animation: pulse 12s ease-in-out infinite 4s, moveCircle2 25s linear infinite;
}

@keyframes moveCircle1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 50px) scale(0.9); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

@keyframes moveCircle2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-40px, 30px) scale(1.15); }
    50% { transform: translate(50px, -40px) scale(0.85); }
    75% { transform: translate(-30px, -20px) scale(1.1); }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.4) rotate(180deg);
        opacity: 0.8;
    }
}

/* Navigation Dots - Enhanced */
.modern-slider-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 14px 24px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modern-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
}

.modern-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0);
    transition: all 0.4s ease;
}

.modern-dot:hover {
    background: rgba(255, 255, 255, 0.65);
    transform: scale(1.4);
}

.modern-dot:hover::before {
    border-color: rgba(255, 255, 255, 0.35);
    transform: translate(-50%, -50%) scale(1.6);
}

.modern-dot.active {
    background: #ffffff;
    width: 45px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6),
                inset 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Navigation Arrows - Enhanced */
.modern-slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 100px;
    z-index: 1000;
    pointer-events: none;
}

.modern-arrow {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    backdrop-filter: blur(20px);
    border: 3px solid #ffffff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: all !important;
    color: #ffffff !important;
    font-size: 28px;
    font-weight: 900;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7),
                0 0 80px rgba(102, 126, 234, 1),
                0 0 120px rgba(118, 75, 162, 0.8),
                inset 0 2px 15px rgba(255, 255, 255, 0.4) !important;
    position: relative;
    overflow: visible;
    z-index: 9999 !important;
    opacity: 1 !important;
    visibility: visible !important;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6),
                    0 0 60px rgba(102, 126, 234, 0.8),
                    inset 0 2px 15px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6),
                    0 0 80px rgba(102, 126, 234, 1),
                    0 0 120px rgba(118, 75, 162, 0.6),
                    inset 0 2px 15px rgba(255, 255, 255, 0.4);
        transform: scale(1.1);
    }
}

.modern-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: width 0.5s ease, height 0.5s ease;
}

.modern-arrow:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scale(1.3);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.9),
                0 0 100px rgba(102, 126, 234, 0.8),
                0 0 150px rgba(118, 75, 162, 0.6),
                inset 0 2px 20px rgba(255, 255, 255, 0.4);
    border-color: #ffffff;
    animation: none;
}

.modern-arrow:active {
    transform: scale(1.2);
}

.modern-arrow:hover::before {
    width: 100%;
    height: 100%;
}

/* Gradient Overlays - Her Slide için farklı renk - ULTRA PROFESSIONAL */
.modern-slide-1 { 
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 25%, #2d3561 50%, #667eea 100%);
}
.modern-slide-2 { 
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #10b981 100%);
}
.modern-slide-3 { 
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #4c1d95 50%, #f59e0b 100%);
}
.modern-slide-4 { 
    background: linear-gradient(135deg, #0c1222 0%, #1c2541 25%, #3a506b 50%, #6fffe9 100%);
}
.modern-slide-5 { 
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #e94560 100%);
}
.modern-slide-6 { 
    background: linear-gradient(135deg, #2d1b69 0%, #6b21a8 25%, #a855f7 50%, #ec4899 100%);
}
.modern-slide-7 { 
    background: linear-gradient(135deg, #14532d 0%, #166534 25%, #22c55e 50%, #fbbf24 100%);
}
.modern-slide-8 { 
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 25%, #60a5fa 50%, #38bdf8 100%);
}

/* Animated Gradient */
.modern-slide {
    background-size: 200% 200%;
    animation: gradientShift 18s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Animasyon Efektleri - Slide Giriş */
.modern-slide.active .modern-slide-badge {
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

.modern-slide.active .modern-slide-title {
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

.modern-slide.active .modern-slide-subtitle {
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

.modern-slide.active .modern-slide-cta {
    animation: slideInLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s both;
}

.modern-slide.active .modern-slide-visual {
    animation: slideInRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both, 
               zoomIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .modern-hero-slider {
        height: auto;
        min-height: 600px;
        max-height: none;
    }

    .modern-slide-content {
        flex-direction: column;
        padding: 60px 30px;
        text-align: center;
    }

    .modern-slide-text {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .modern-slide-title {
        font-size: 36px;
    }

    .modern-slide-subtitle {
        font-size: 18px;
    }

    .modern-slide-cta {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
    }

    .modern-slide-price {
        margin-left: 0;
        margin-top: 20px;
    }

    .modern-slide-visual {
        max-width: 400px;
    }

    .modern-slider-arrows {
        padding: 0 60px;
    }

    .modern-arrow {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .modern-hero-slider {
        min-height: 500px;
        margin-top: 100px;
    }

    .modern-slide-title {
        font-size: 28px;
    }

    .modern-slide-subtitle {
        font-size: 16px;
    }

    .modern-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
    }

    .modern-slider-arrows {
        padding: 0 40px;
    }

    .modern-arrow {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .modern-slider-dots {
        bottom: 20px;
    }

    .modern-slide-visual img {
        max-width: 90%;
    }

    .modern-price-amount {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .modern-slide-content {
        padding: 40px 20px;
    }

    .modern-slide-title {
        font-size: 24px;
    }

    .modern-slide-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .decoration-circle-1,
    .decoration-circle-2 {
        display: none;
    }
}

/* Özel Efektler */
.modern-slide-visual::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.25) 0%, rgba(118, 75, 162, 0.15) 30%, transparent 70%);
    z-index: -1;
    animation: rotateGlow 15s linear infinite;
    filter: blur(40px);
}

.modern-slide-visual::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.15), transparent 50%);
    animation: spinEffect 8s linear infinite;
    z-index: -1;
    opacity: 0.6;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    to {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes spinEffect {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Loading State */
.modern-slider-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.modern-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Accessibility */
.modern-slide[aria-hidden="true"] {
    pointer-events: none;
}

.modern-arrow:focus,
.modern-dot:focus {
    outline: 2px solid #ffffff;
    outline-offset: 4px;
}

/* Print Styles */
@media print {
    .modern-hero-slider {
        height: auto;
        max-height: none;
    }

    .modern-slider-arrows,
    .modern-slider-dots {
        display: none;
    }

    .modern-slide {
        position: relative;
        opacity: 1;
        visibility: visible;
        page-break-inside: avoid;
    }
}

/* ====== ULTRA PROFESSIONAL PREMIUM EFFECTS ====== */

/* Dynamic Lighting Effect */
.modern-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(255, 255, 255, 0.15) 0%, 
                transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.modern-slide:hover::before {
    opacity: 1;
}

/* Perspective Container for 3D Effects */
.modern-slide-content {
    perspective: 2000px;
    transform-style: preserve-3d;
}

/* Advanced Text Effects */
.modern-slide-subtitle {
    position: relative;
}

.modern-slide-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.8), transparent);
    border-radius: 2px;
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% { width: 60px; opacity: 0.8; }
    50% { width: 120px; opacity: 1; }
}

/* Premium Blur Background Layer */
.modern-slide-content::before {
    content: '';
    position: absolute;
    inset: -100px;
    background: radial-gradient(circle at 30% 50%, 
                rgba(102, 126, 234, 0.1) 0%, 
                rgba(118, 75, 162, 0.08) 50%, 
                transparent 70%);
    filter: blur(80px);
    opacity: 0.7;
    z-index: -1;
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 0.9; }
}

/* Dot Navigation Enhanced Premium Style */
.modern-dot {
    position: relative;
    overflow: hidden;
}

.modern-dot.active::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, 
                rgba(102, 126, 234, 0.6), 
                rgba(118, 75, 162, 0.6));
    border-radius: 10px;
    filter: blur(8px);
    z-index: -1;
    animation: dotGlow 2s ease-in-out infinite;
}

@keyframes dotGlow {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Button Group Hover Effect */
.modern-slide-cta:hover .modern-btn {
    transform: translateY(-3px);
}

.modern-slide-cta .modern-btn:hover {
    transform: translateY(-8px) scale(1.08);
}

/* Dynamic Shadow Trail */
.modern-arrow {
    position: relative;
}

.modern-arrow::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: inherit;
    opacity: 0;
    filter: blur(20px);
    transform: scale(1.1);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.modern-arrow:hover::after {
    opacity: 0.8;
}

/* Slide Transition Effect */
.modern-slide {
    transform-origin: center center;
}

.modern-slide:not(.active) {
    transform: scale(0.95);
    filter: blur(5px);
}

.modern-slide.active {
    transform: scale(1);
    filter: blur(0);
}

/* Premium Hover State for Price */
.modern-price-amount {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modern-slide-price:hover .modern-price-amount {
    transform: scale(1.12) translateY(-3px);
    text-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

/* Advanced Particle Animation */
@keyframes particleMove {
    0% { 
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
        opacity: 0.5;
    }
    25% { 
        background-position: 50% 25%, 25% 50%, 75% 30%, 30% 75%, 60% 40%, 40% 60%;
        opacity: 0.7;
    }
    50% { 
        background-position: 100% 50%, 50% 100%, 50% 60%, 60% 50%, 80% 70%, 70% 80%;
        opacity: 0.9;
    }
    75% { 
        background-position: 75% 75%, 75% 50%, 25% 80%, 80% 25%, 50% 90%, 90% 50%;
        opacity: 0.7;
    }
    100% { 
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
        opacity: 0.5;
    }
}

/* Smooth Hardware Acceleration */
.modern-hero-slider,
.modern-slide,
.modern-slide-visual img,
.modern-arrow,
.modern-btn-primary {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/* ====== ADVANCED FEATURES ====== */

/* 3D Tilt Effect on Hover */
.modern-slide-visual {
    perspective: 1000px;
}

.modern-slide-visual img {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Glow Effect */
.modern-btn-primary,
.modern-slide-badge {
    animation: subtleGlow 3s ease-in-out infinite;
}

@keyframes subtleGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(102, 126, 234, 0.6),
                    0 0 60px rgba(102, 126, 234, 0.3);
    }
}

/* Counter Animation for Price */
.modern-price-amount {
    animation: counterPulse 2s ease-in-out infinite;
}

@keyframes counterPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* Text Shimmer Effect */
.modern-slide-title {
    position: relative;
    overflow: hidden;
}

.modern-slide-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Improved Parallax Background */
.modern-slide-bg-decoration {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Neon Border Effect */
.modern-slide-price::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #667eea, #764ba2, #43e97b, #667eea);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    background-size: 300% 300%;
    animation: borderGlow 3s ease-in-out infinite;
}

.modern-slide-price:hover::after {
    opacity: 0.5;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Badge Notification Dot */
.modern-slide-badge::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: #ff4757;
    border-radius: 50%;
    border: 2px solid #ffffff;
    animation: notificationPulse 2s ease-in-out infinite;
}

@keyframes notificationPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Slide Number Indicator */
.modern-slide::after {
    content: attr(data-slide-number);
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    line-height: 1;
}

/* Enhanced Blur Background */
.modern-hero-slider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.08)"/><circle cx="50" cy="50" r="1.5" fill="rgba(255,255,255,0.12)"/></svg>');
    background-size: 100px 100px;
    opacity: 0.4;
    z-index: 1;
    animation: bgMove 30s linear infinite;
}

@keyframes bgMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

/* CTA Button Ripple Effect */
.modern-btn-primary {
    position: relative;
}

.modern-btn-primary .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Stats Counter Animation */
.modern-stats-counter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
}

.modern-stats-counter .counter-value {
    color: #4ade80;
    font-size: 18px;
    font-weight: 800;
}

/* Improved Mobile Touch Feedback */
@media (hover: none) and (pointer: coarse) {
    .modern-btn-primary:active {
        transform: scale(0.95);
    }
    
    .modern-arrow:active {
        transform: scale(0.9);
    }
    
    .modern-dot:active {
        transform: scale(0.8);
    }
}
/* ============================================================
   PROFESSIONAL DATAWISE DOMAIN SEARCH SECTION
   Dark Background, Glassmorphism, Elegant Cards
   ============================================================ */

.domainsvea {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1f3a 0%, #0f1419 50%, #1a1f3a 100%);
    position: relative;
    overflow: hidden;
}

.domainsvea::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(67, 233, 123, 0.08) 0%, transparent 40%);
    pointer-events: none;
    animation: domainBgShift 15s ease-in-out infinite;
}

@keyframes domainBgShift {
    0%, 100% {
        background-position: 0% 0%, 0% 0%, 0% 0%;
        opacity: 1;
    }
    50% {
        background-position: 50% 50%, 50% 50%, 50% 50%;
        opacity: 1.1;
    }
}

.domainsvea::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"><defs><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" result="noise" seed="2"/></filter></defs><rect width="100%" height="100%" fill="rgba(255,255,255,0.02)" filter="url(%23noise)"/></svg>');
    pointer-events: none;
    z-index: 1;
}

.homedomainarea-con {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Domain Area Heading */
.homedomainarea {
    text-align: center;
    padding: 0;
    background: transparent;
    margin-bottom: 50px;
}

.homedomainarea h1 {
    color: #ffffff !important;
    font-size: 48px !important;
    font-weight: 900 !important;
    margin-bottom: 20px !important;
    text-align: center;
    letter-spacing: -2px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 50%, rgba(255,255,255,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    animation: titleFloatUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes titleFloatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.homedomainarea h1::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    border-radius: 2px;
    animation: lineExpand 1.5s ease-in-out;
}

@keyframes lineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        width: 120px;
    }
    100% {
        width: 100px;
        opacity: 1;
    }
}

.homedomainarea h4 {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    margin-bottom: 0 !important;
    text-align: center;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto !important;
    letter-spacing: 0.3px;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Search Form - Glassmorphic Datawise Tarzı */
#DomainCheck {
    display: flex;
    gap: 8px;
    max-width: 750px;
    margin: 50px auto 60px auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(25px);
    border-radius: 18px;
    padding: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.35),
        0 0 40px rgba(102, 126, 234, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    animation: formSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

@keyframes formSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#DomainCheck::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    border-radius: 18px;
}

#DomainCheck::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#DomainCheck:hover,
#DomainCheck:focus-within {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.09));
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 
        0 30px 90px rgba(102, 126, 234, 0.25),
        0 0 60px rgba(102, 126, 234, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

#DomainCheck:hover::after {
    opacity: 1;
}

#DomainCheck input[type="text"] {
    flex: 1;
    padding: 16px 28px;
    font-size: 15px;
    font-weight: 500;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    outline: none;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.1);
}

#DomainCheck input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
}

#DomainCheck input[type="text"]:focus {
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(102, 126, 234, 0.3),
        0 0 20px rgba(102, 126, 234, 0.2);
    transform: scale(1.02);
}

#DomainCheck input[type="submit"] {
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 28px rgba(102, 126, 234, 0.4),
        0 0 20px rgba(102, 126, 234, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

#DomainCheck input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

#DomainCheck input[type="submit"]::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.15), transparent);
    border-radius: 14px;
    pointer-events: none;
}

#DomainCheck input[type="submit"]:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 18px 50px rgba(102, 126, 234, 0.7),
        0 0 40px rgba(102, 126, 234, 0.5),
        0 0 80px rgba(118, 75, 162, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #764ba2, #667eea);
}

#DomainCheck input[type="submit"]:hover::before {
    left: 100%;
}

#DomainCheck input[type="submit"]:active {
    transform: translateY(-2px) scale(1.02);
}

/* TLD Cards Container */
.dmuznts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 0;
}

/* TLD Cards - Glassmorphic */
.spottlds {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(16px);
    padding: 28px 24px;
    border-radius: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-width: 145px;
    max-width: 165px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(102, 126, 234, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: cardSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation-fill-mode: both;
}

@keyframes cardSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.spottlds:nth-child(1) { animation-delay: 0.4s; }
.spottlds:nth-child(2) { animation-delay: 0.5s; }
.spottlds:nth-child(3) { animation-delay: 0.6s; }
.spottlds:nth-child(4) { animation-delay: 0.7s; }
.spottlds:nth-child(5) { animation-delay: 0.8s; }
.spottlds:nth-child(6) { animation-delay: 0.9s; }
.spottlds:nth-child(7) { animation-delay: 1s; }
.spottlds:nth-child(8) { animation-delay: 1.1s; }

.spottlds::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
    z-index: 0;
}

.spottlds::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spottlds:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-12px) scale(1.08);
    box-shadow: 
        0 25px 60px rgba(102, 126, 234, 0.35),
        0 0 50px rgba(102, 126, 234, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.spottlds:hover::before {
    opacity: 1;
}

.spottlds:hover::after {
    opacity: 1;
}

.spottlds img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.15) drop-shadow(0 2px 12px rgba(102, 126, 234, 0.3));
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.spottlds:hover img {
    transform: scale(1.2) translateY(-3px);
    filter: brightness(1.25) drop-shadow(0 4px 16px rgba(102, 126, 234, 0.5));
}

.spottlds h5 {
    margin: 0 !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.spottlds:hover h5 {
    transform: scale(1.1);
}

.amount_spot_view {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 18px !important;
    font-weight: 900 !important;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 3px 15px rgba(102, 126, 234, 0.35);
    letter-spacing: 0.5px;
}

.spottlds:hover .amount_spot_view {
    font-size: 20px !important;
    transform: scale(1.12);
    text-shadow: 0 5px 20px rgba(102, 126, 234, 0.5);
}

.amount_spot_view i {
    font-size: 12px;
    -webkit-text-fill-color: #667eea;
}

/* Navigation Buttons */
.btnsltr {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin: 40px 0 0 0;
}

.nmrs {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.25), rgba(118, 75, 162, 0.2));
    backdrop-filter: blur(15px);
    border-radius: 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 25px rgba(102, 126, 234, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    animation: btnFadeIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
}

@keyframes btnFadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.nmrs::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: -1;
}

.nmrs svg {
    width: 22px;
    height: 22px;
    stroke: rgba(255, 255, 255, 0.85);
    stroke-width: 2.5;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.nmrs:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.4), rgba(118, 75, 162, 0.35));
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-5px) scale(1.12);
    box-shadow: 
        0 16px 45px rgba(102, 126, 234, 0.4),
        0 0 40px rgba(102, 126, 234, 0.25),
        0 0 80px rgba(118, 75, 162, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.25);
}

.nmrs:hover::before {
    opacity: 1;
}

.nmrs:hover svg {
    stroke: #ffffff;
    filter: drop-shadow(0 0 12px rgba(102, 126, 234, 0.6));
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .domainsvea {
        padding: 60px 0;
    }
    
    .homedomainarea {
        margin-bottom: 40px;
    }
    
    .homedomainarea h1 {
        font-size: 36px !important;
        margin-bottom: 16px !important;
    }
    
    .homedomainarea h1::before {
        bottom: -8px;
        width: 80px;
    }
    
    .homedomainarea h4 {
        font-size: 15px !important;
    }
    
    #DomainCheck {
        flex-direction: row;
        gap: 6px;
        max-width: 100%;
        margin: 35px 0 50px 0;
        padding: 8px;
        border-radius: 14px;
    }
    
    #DomainCheck input[type="text"],
    #DomainCheck input[type="submit"] {
        padding: 12px 16px;
        font-size: 12px;
        border-radius: 10px;
    }
    
    .dmuznts {
        gap: 14px;
    }
    
    .spottlds {
        min-width: 130px;
        max-width: 150px;
        padding: 24px 20px;
        border-radius: 14px;
    }
    
    .spottlds img {
        height: 34px;
    }
    
    .spottlds h5 {
        font-size: 12px !important;
        letter-spacing: 0.8px;
    }
    
    .amount_spot_view {
        font-size: 16px !important;
    }
    
    .btnsltr {
        gap: 12px;
        margin-top: 30px;
    }
    
    .nmrs {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }
    
    .nmrs svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .domainsvea {
        padding: 50px 0;
    }
    
    .homedomainarea-con {
        padding: 0 15px;
    }
    
    .homedomainarea {
        margin-bottom: 30px;
    }
    
    .homedomainarea h1 {
        font-size: 28px !important;
        margin-bottom: 12px !important;
        letter-spacing: -1px;
    }
    
    .homedomainarea h1::before {
        bottom: -6px;
        width: 60px;
    }
    
    .homedomainarea h4 {
        font-size: 14px !important;
    }
    
    #DomainCheck {
        flex-direction: column;
        gap: 0;
        margin: 30px 0 40px 0;
        padding: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
        border-radius: 12px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    }
    
    #DomainCheck::before,
    #DomainCheck::after {
        display: none;
    }
    
    #DomainCheck input[type="text"] {
        border-radius: 0;
        padding: 14px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.06);
    }
    
    #DomainCheck input[type="text"]:last-of-type {
        border-bottom: none;
    }
    
    #DomainCheck input[type="submit"] {
        width: 100%;
        border-radius: 0;
        padding: 12px 14px;
        text-transform: uppercase;
        font-size: 12px;
    }
    
    .dmuznts {
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .spottlds {
        min-width: 100px;
        max-width: 120px;
        padding: 16px 12px;
        border-radius: 12px;
    }
    
    .spottlds img {
        height: 28px;
    }
    
    .spottlds h5 {
        font-size: 11px !important;
        letter-spacing: 0.5px;
    }
    
    .amount_spot_view {
        font-size: 14px !important;
    }
    
    .btnsltr {
        gap: 8px;
        margin-top: 20px;
    }
    
    .nmrs {
        width: 40px;
        height: 40px;
        border-radius: 8px;
    }
    
    .nmrs svg {
        width: 18px;
        height: 18px;
    }
}

/* ============================================================
   ULTRA PREMIUM EFFECTS FOR DOMAIN SECTION
   ============================================================ */

/* Advanced Hover State with Perspective */
.spottlds {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.spottlds:hover {
    perspective: 1500px;
}

/* Premium Gradient Animation */
@keyframes gradientShiftDomain {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.domainsvea::before {
    background-size: 200% 200%;
    animation: gradientShiftDomain 15s ease-in-out infinite;
}

/* Smooth Glow Effect for Cards */
.spottlds {
    position: relative;
}

.spottlds::after {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0) inset;
    transition: box-shadow 0.4s ease;
}

.spottlds:hover::after {
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.3) inset;
}

/* Premium Filter Effects */
.spottlds img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform, filter;
}

/* Enhanced Text Smoothing */
.homedomainarea h1,
.homedomainarea h4,
.spottlds h5 {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Premium Button Group Styling */
.btnsltr {
    perspective: 1000px;
}

/* Enhanced Form Input Focus State */
#DomainCheck input[type="text"]:focus {
    transform: scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
    will-change: background, transform;
}

/* Advanced Ripple Effect for Submit Button */
#DomainCheck input[type="submit"] {
    position: relative;
}

#DomainCheck input[type="submit"]:active {
    transform: scale(0.98);
}

/* Smooth Hardware Acceleration */
.domainsvea,
.homedomainarea h1,
.homedomainarea h4,
#DomainCheck,
.spottlds,
.nmrs {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Premium Backdrop Filter Enhancements */
.domainsvea::before,
.domainsvea::after,
#DomainCheck,
.spottlds,
.nmrs {
    will-change: backdrop-filter;
}

/* Enhanced Border Gradient Animation */
.spottlds {
    background-image: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        linear-gradient(135deg, rgba(102, 126, 234, 0.1), transparent);
    background-clip: border-box, padding-box;
}

/* Premium Shadow Layering */
.spottlds {
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.1),
        0 3px 8px rgba(0, 0, 0, 0.1),
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(102, 126, 234, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Ultra Smooth Transitions */
#DomainCheck,
#DomainCheck input[type="text"],
#DomainCheck input[type="submit"],
.spottlds,
.nmrs {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.spottlds img,
.spottlds h5,
.amount_spot_view {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Content Protection */
.homedomainarea h1,
.homedomainarea h4,
.spottlds h5 {
    -webkit-user-select: none;
    user-select: none;
}

/* Improved Accessibility */
.nmrs:focus-visible,
.spottlds:focus-visible,
#DomainCheck:focus-visible,
#DomainCheck input[type="text"]:focus-visible,
#DomainCheck input[type="submit"]:focus-visible {
    outline: 2px solid #667eea;
    outline-offset: 3px;
}

/* Premium Neon Effect */
.spottlds:hover {
    border-color: rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
                linear-gradient(135deg, rgba(102, 126, 234, 0.2), transparent);
}

/* Ultra Smooth Animation for Domain Cards */
@keyframes ultraSmoothFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Advanced Text Rendering */
.homedomainarea h1::before {
    animation: lineExpand 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Professional Loading Animation */
.spottlds {
    opacity: 0;
    animation: cardSlideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Enhanced Form Container */
#DomainCheck {
    position: relative;
    z-index: 10;
}

#DomainCheck::after {
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#DomainCheck:hover::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
}

/* Premium Button Pulse Animation */
.nmrs {
    animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.2),
            0 0 25px rgba(102, 126, 234, 0.15),
            inset 0 1px 2px rgba(255, 255, 255, 0.15);
    }
    50% {
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.2),
            0 0 35px rgba(102, 126, 234, 0.25),
            inset 0 1px 2px rgba(255, 255, 255, 0.15);
    }
}

/* Final Polish - Ultra Subtle Movements */
.homedomainarea {
    animation: sectionFadeIn 0.8s ease-out;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MODERN DOMAIN SEARCH SECTION STYLES
   ============================================ */

.modern-domain-search-section {
    position: relative;
    width: 100%;
    padding: 50px 40px;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    z-index: 5;
    overflow: hidden;
}

.modern-domain-search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.modern-domain-search-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #667eea 50%, transparent 100%);
}

.domain-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.decoration-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: -100px;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    bottom: -50px;
    left: 10%;
    animation: float 10s ease-in-out infinite;
    animation-delay: 2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 50%;
    right: -50px;
    animation: float 9s ease-in-out infinite;
    animation-delay: 4s;
}

.domain-search-container {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
}

.domain-search-header {
    text-align: center;
    margin-bottom: 30px;
    animation: slideInUp 0.8s ease-out;
}

.header-icon-wrapper {
    margin-bottom: 15px;
    display: inline-block;
    animation: bounceIn 0.8s ease-out;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4), 0 0 40px rgba(102, 126, 234, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.icon-circle::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0.3;
    filter: blur(15px);
    z-index: -1;
}

.icon-circle:hover {
    transform: translateY(-8px) scale(1.15) rotate(10deg);
    box-shadow: 0 30px 70px rgba(102, 126, 234, 0.6), 0 0 80px rgba(102, 126, 234, 0.3);
}

.domain-search-title {
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #a8b3ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    text-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.domain-search-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.5;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.divider-line {
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 0 12px rgba(102, 126, 234, 0.8), 0 0 24px rgba(102, 126, 234, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Domain Search Form Wrapper */
.domain-search-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 50px rgba(102, 126, 234, 0.2);
    margin-bottom: 30px;
    position: relative;
    z-index: 15;
    animation: slideInUp 0.8s ease-out;
    animation-delay: 0.2s;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.domain-search-form-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    width: 100%;
}

.input-icon-wrapper {
    position: absolute;
    left: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    z-index: 5;
}

.search-icon {
    opacity: 0.9;
    filter: drop-shadow(0 0 6px rgba(102, 126, 234, 0.5));
}

.modern-domain-input {
    flex: 1;
    padding: 12px 16px 12px 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 14px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 500;
    min-width: 200px;
}

.modern-domain-input:focus {
    outline: none !important;
    border-color: #667eea !important;
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.4), 0 0 60px rgba(102, 126, 234, 0.2) !important;
    transform: translateY(-3px) !important;
    color: #ffffff !important;
}

.modern-domain-input::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
}

.modern-domain-input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.1) inset !important;
    -webkit-text-fill-color: #ffffff !important;
}

.modern-search-btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    background-size: 200% auto;
    color: white !important;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5), 0 0 24px rgba(102, 126, 234, 0.3);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    min-width: auto;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.modern-search-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.modern-search-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 30px 70px rgba(102, 126, 234, 0.7), 0 0 60px rgba(102, 126, 234, 0.5);
    background-position: right center;
}

.modern-search-btn:hover::before {
    left: 100%;
}

.modern-search-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
}

.search-form-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.domain-search-form-wrapper:hover .search-form-glow {
    opacity: 1;
}

/* Search Quick Tips */
.search-quick-tips {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.tip-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tip-label i {
    color: #ffffff;
    font-size: 12px;
    filter: drop-shadow(0 0 6px rgba(102, 126, 234, 0.6));
}

.tip-badges {
    display: flex;
    gap: 8px;
}

.tip-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    color: #ffffff;
    font-weight: 700;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tip-badge:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5), 0 0 30px rgba(102, 126, 234, 0.3);
    border-color: transparent;
}

/* TLD Showcase Section */
.domain-tld-showcase {
    margin-top: 28px;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tld-cards-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 8px 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    animation: scrollLeftInfinite 70s linear infinite;
    width: 100%;
}

.tld-cards-wrapper:hover {
    animation-play-state: paused;
}

/* Sola doğru kaydırma animasyonu - seamless loop */
@keyframes scrollLeftInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* Scrollbar styling */
.tld-cards-wrapper::-webkit-scrollbar {
    height: 6px;
}

.tld-cards-wrapper::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.tld-cards-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

.tld-price-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 10px 10px;
    text-align: center;
    position: relative;
    overflow: visible;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: cardAppear 0.6s ease-out;
    min-width: 100px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.tld-price-card:nth-child(n+1) {
    animation: cardAppear 0.6s ease-out;
}

.tld-price-card.is-popular {
    border-color: #667eea;
    box-shadow: 0 8px 22px rgba(102, 126, 234, 0.25);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.06));
    min-width: 110px;
    transform: scale(1.05);
}

.tld-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 8px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.35);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tld-card-inner {
    position: relative;
    z-index: 2;
}

.tld-icon-wrapper {
    margin-bottom: 8px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tld-logo {
    max-height: 22px;
    max-width: 75%;
    object-fit: contain;
}

.tld-text {
    font-size: 13px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(102, 126, 234, 0.5);
}

.tld-price-wrapper {
    margin: 8px 0;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3px;
    margin-bottom: 2px;
}

.currency-symbol {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.price-amount {
    font-size: 15px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(102, 126, 234, 0.6);
}

.price-label {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    font-weight: 600;
}

.tld-quick-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    margin-top: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
    font-size: 12px;
}

.tld-price-card:hover .tld-quick-check {
    opacity: 1;
}

.tld-quick-check:hover {
    transform: scale(1.2) rotate(45deg);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5);
}

.card-hover-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(102, 126, 234, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 12px;
}

.tld-price-card:hover {
    transform: scale(1.08) translateY(-6px);
    box-shadow: 0 16px 50px rgba(102, 126, 234, 0.35);
    border-color: #667eea;
}

.tld-price-card.is-popular:hover {
    transform: scale(1.15) translateY(-6px);
}

.tld-price-card:hover .card-hover-glow {
    opacity: 1;
}

/* TLD Showcase Subtitle/Description */
.domain-tld-showcase::after {
    content: '';
    display: block;
    height: 20px;
}

/* Price Info Card - Formatted */
.domain-bottom-info {
    margin-top: 30px;
    text-align: center;
    padding: 20px 0;
}

.price-info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.price-amount-display {
    color: #ffffff;
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin: 0;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
    animation: priceGlow 2s ease-in-out infinite;
    order: 1;
}

.price-from-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    order: 2;
}

.price-to-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    order: 3;
}

.tld-showcase-description {
    text-align: center;
    padding: 18px 24px;
    margin-top: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.tld-showcase-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #667eea 50%, transparent 100%);
}

.tld-showcase-description p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.tld-showcase-description .price-highlight {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    margin: 0 4px;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% {
        filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 16px rgba(102, 126, 234, 0.9));
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(40px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes staggerChildren {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modern-domain-search-section {
        padding: 80px 30px;
    }
    
    .domain-search-title {
        font-size: 36px;
    }
    
    .domain-search-form-wrapper {
        padding: 30px;
    }
    
    .search-input-group {
        flex-direction: column;
    }
    
    .modern-domain-input {
        width: 100%;
    }
    
    .modern-search-btn {
        width: 100%;
        justify-content: center;
    }
    
    .tld-cards-wrapper {
        padding: 8px 12px;
    }
    
    .tld-price-card {
        min-width: 90px;
    }
    
    .tld-price-card.is-popular {
        min-width: 100px;
    }
    
    .tld-showcase-description {
        margin-top: 16px;
    }
    
    .tld-showcase-description p {
        font-size: 12px;
    }
    
    .tld-showcase-description .price-highlight {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .modern-domain-search-section {
        padding: 80px 20px;
    }
    
    .domain-search-header {
        margin-bottom: 40px;
    }
    
    .domain-search-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .domain-search-subtitle {
        font-size: 16px;
    }
    
    .icon-circle {
        width: 65px;
        height: 65px;
        font-size: 30px;
    }
    
    .domain-search-form-wrapper {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .search-input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .input-icon-wrapper {
        position: static;
        margin-bottom: 5px;
    }
    
    .modern-domain-input {
        width: 100%;
        padding: 14px 15px;
        font-size: 14px;
        min-width: auto !important;
    }
    
    .modern-search-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .search-quick-tips {
        flex-direction: column;
        gap: 15px;
    }
    
    .tip-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tld-cards-wrapper {
        gap: 8px;
        padding: 8px 8px;
    }
    
    .tld-price-card {
        min-width: 85px;
        padding: 8px 6px;
    }
    
    .tld-price-card.is-popular {
        min-width: 92px;
        transform: scale(1.03);
    }
    
    .tld-icon-wrapper {
        height: 20px;
    }
    
    .tld-logo {
        max-height: 18px;
    }
    
    .tld-text {
        font-size: 11px;
    }
    
    .price-amount {
        font-size: 13px;
    }
    
    .tld-showcase-description {
        margin-top: 14px;
        padding: 12px;
    }
    
    .tld-showcase-description p {
        font-size: 11px;
    }
    
    .tld-showcase-description .price-highlight {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .modern-domain-search-section {
        padding: 50px 15px;
    }
    
    .domain-search-title {
        font-size: 22px;
    }
    
    .domain-search-subtitle {
        font-size: 12px;
    }
    
    .tld-cards-wrapper {
        gap: 7px;
        padding: 7px 6px;
    }
    
    .tld-price-card {
        min-width: 80px;
        padding: 7px 5px;
    }
    
    .tld-price-card.is-popular {
        min-width: 88px;
        transform: scale(1.02);
    }
    
    .tld-icon-wrapper {
        height: 18px;
        margin-bottom: 5px;
    }
    
    .tld-text {
        font-size: 10px;
    }
    
    .price-amount {
        font-size: 12px;
    }
    
    .price-label {
        font-size: 7px;
    }
    
    .tld-showcase-description {
        margin-top: 12px;
        padding: 10px;
    }
    
    .tld-showcase-description p {
        font-size: 10px;
    }
    
    .tld-showcase-description .price-highlight {
        font-size: 15px;
    }
}
