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

body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(102, 126, 234, 0.1),
            rgba(118, 75, 162, 0.1),
            rgba(255, 154, 158, 0.1),
            rgba(250, 208, 196, 0.1));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -1;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    left: 20%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 100px;
    height: 100px;
    left: 80%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    width: 40px;
    height: 40px;
    left: 70%;
    animation-delay: 6s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.main-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 1s ease-out 0.5s forwards;
}

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

.domain-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 10px;
    word-break: break-all;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

.sale-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 20px 0;
    transform: scale(0);
    animation: popIn 0.8s ease-out 1s forwards;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

@keyframes popIn {
    to {
        transform: scale(1);
    }
}

.description {
    font-size: 1.1rem;
    color: #666;
    margin: 30px 0;
    line-height: 1.6;
}

.contact-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    transform: translateX(-50px);
    opacity: 0;
    animation: slideInLeft 1s ease-out 1.5s forwards;
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 10px 0;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }

    50% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature {
    background: rgba(102, 126, 234, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.feature-title {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 8px;
}

.feature-desc {
    color: #666;
    font-size: 0.9rem;
}

.cta-section {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 2px dashed #667eea;
}

.cta-text {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.pulse-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
    }
}

.pulse-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e) !important;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4) !important;
}

.phone-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.email-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52) !important;
    animation: emailPulse 2s ease-in-out infinite;
}

@keyframes emailPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
}

.email-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4) !important;
}

@media (max-width: 768px) {
    .main-card {
        padding: 20px;
        margin: 10px;
    }

    .domain-name {
        font-size: 1.8rem;
    }

    .contact-info {
        font-size: 1.4rem;
    }

    .features {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .pulse-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Carousel Stilleri */
.carousel-section {
    margin: 40px 0;
    overflow: hidden;
    width: 100%;
}

.carousel-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    animation: scrollCarousel 25s linear infinite;
    will-change: transform;
    width: calc(200px * 12 + 30px * 12); /* 12 kart genişliği + margin */
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 6 - 30px * 6)); /* Yarı genişlik kadar kayma */
    }
}

.domain-card {
    min-width: 200px;
    height: 120px;
    margin: 0 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.domain-card:hover::before {
    left: 100%;
}

.domain-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.domain-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 5px;
    text-align: center;
    word-break: break-all;
}

.domain-price {
    font-size: 1rem;
    font-weight: 700;
    color: #e74c3c;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Teklif usulü domainler için özel stil */
.domain-card[title*="Teklif"] .domain-price,
.domain-price:contains("Teklif") {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.domain-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

/* Carousel Mobile Responsive */
@media (max-width: 768px) {
    .carousel-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .carousel-track {
        width: calc(150px * 12 + 20px * 12); /* Mobile için ayarlama */
    }
    
    @keyframes scrollCarousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 6 - 20px * 6)); /* Mobile için ayarlama */
        }
    }
    
    .domain-card {
        min-width: 150px;
        height: 100px;
        margin: 0 10px;
    }
    
    .domain-icon {
        font-size: 2rem;
        margin-bottom: 5px;
    }
    
    .domain-text {
        font-size: 0.9rem;
    }
    
    .domain-price {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .carousel-track {
        width: calc(120px * 12 + 16px * 12); /* Small mobile için ayarlama */
    }
    
    @keyframes scrollCarousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 6 - 16px * 6)); /* Small mobile için ayarlama */
        }
    }
    
    .domain-card {
        min-width: 120px;
        height: 90px;
        margin: 0 8px;
    }
    
    .domain-icon {
        font-size: 1.8rem;
    }
    
    .domain-text {
        font-size: 0.8rem;
    }
    
    .domain-price {
        font-size: 0.8rem;
    }
}

.footer {
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Tüm Domainler Listesi Stilleri */
.all-domains-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin: 30px auto;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Arama Formu */
.search-section {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.search-input {
    padding: 12px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    font-size: 1rem;
    min-width: 250px;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.clear-search {
    color: #e53e3e;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.clear-search:hover {
    background: rgba(229, 62, 62, 0.1);
    transform: translateY(-1px);
}

/* Domain Tablosu */
.domains-table-container {
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.domains-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.domains-table thead {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.domains-table th {
    padding: 18px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.domains-table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
    text-align: left;
}

.domains-table tbody tr:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

.domains-table tbody tr:last-child td {
    border-bottom: none;
}

.domain-name-cell {
    font-weight: 600;
    color: #4a5568;
    min-width: 200px;
}

.domain-name-cell .domain-icon {
    margin-right: 8px;
    font-size: 1.2rem;
}

.category-cell {
    color: #718096;
    text-transform: capitalize;
    min-width: 120px;
}

.price-cell {
    min-width: 120px;
}

.price-tag {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.description-cell {
    color: #718096;
    max-width: 250px;
    line-height: 1.4;
}

/* Sayfalandırma */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.page-link, .page-current {
    display: inline-block;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
}

.page-link {
    background: white;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.page-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.page-current {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Sonuç Bulunamadı */
.no-domains {
    text-align: center;
    padding: 40px;
    color: #718096;
    font-size: 1.1rem;
}

.no-domains p {
    margin: 0;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .all-domains-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }

    .search-input {
        min-width: 200px;
        margin-bottom: 10px;
    }

    .domains-table th,
    .domains-table td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }

    .domain-name-cell {
        min-width: 150px;
    }

    .category-cell,
    .price-cell {
        min-width: 100px;
    }

    .description-cell {
        max-width: 150px;
        font-size: 0.85rem;
    }

    .pagination {
        gap: 4px;
    }

    .page-link, .page-current {
        padding: 8px 12px;
        min-width: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input {
        min-width: auto;
        width: 100%;
    }

    .domains-table-container {
        font-size: 0.8rem;
    }

    .domains-table th,
    .domains-table td {
        padding: 8px 5px;
    }

    .section-title {
        font-size: 1.3rem;
    }
}