/* Genel stiller */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
}

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    background-image: 
        linear-gradient(#e6e6e6 1px, transparent 1px),
        linear-gradient(90deg, #e6e6e6 1px, transparent 1px);
    background-size: 100px 100px; /* 50px'den 100px'e büyütüldü */
    background-position: 0 0;
    color: #333333;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Defter sayfa kenarı efekti - kaldırıldı */
body::before {
    display: none; /* Soldaki çizgiyi kaldırmak için */
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Header & Title */
header {
    height: 100vh; /* Tam ekran yüksekliğine geri döndürdüm */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.main-title {
    font-family: 'Press Start 2P', cursive, 'Segoe UI', sans-serif;
    font-size: 3.5rem;
    text-align: center;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #ff8a00, #e52e71);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(229, 46, 113, 0.3);
    text-transform: uppercase;
    position: relative;
    z-index: 9999; /* En üstte göster */
    filter: none; /* Blur efektini kaldır */
}

.nft-description {
    font-size: 1.2rem;
    max-width: 800px;
    text-align: center;
    margin-top: 20px;
    color: #555;
    line-height: 1.6;
    font-weight: 300;
}

/* Aşağı ok işareti - Sola kaydırıldı */
.scroll-down-arrow {
    position: absolute;
    bottom: -32%; /* Sayfanın alt kısmında */
    left: 0%; /* 50%'den 45%'e değiştirildi - sola kaydırmak için */
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #e52e71;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 15;
    pointer-events: auto;
    text-align: center;
    width: auto; /* Genişliği içeriğe göre ayarla */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Sosyal Medya İkonları */
.social-media-container {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border: none; /* Çizgileri kaldırmak için eklendi */
    text-decoration: none; /* Alt çizgileri kaldırmak için */
}

.social-icon i {
    border: none;
    /* İkon içindeki olası çizgileri kaldırmak için */
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.discord {
    background: #5865F2;
}

.telegram {
    background: #0088cc;
}

.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.opensea {
    background: #2081E2; /* Opensea'nın mavi rengi */
}

.email {
    background: #ff8a00; /* Turuncu renk - sitenin renk temasına uygun */
}

/* Center Line */
.divider-container {
    position: relative;
    padding-bottom: 100px;
    margin-top: -30px; /* Çizginin aşağı ok işaretinin 30px altında başlaması için */
}

.center-line {
    position: absolute;
    top: 80px; /* Çizginin biraz aşağıdan başlaması için */
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 138, 0, 0.8), rgba(229, 46, 113, 0.8));
    transform: translateX(-50%);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(229, 46, 113, 0.5);
}

/* Content Sections */
.content-sections {
    position: relative;
    padding-top: 100px; /* 50px'den 100px'e çıkarıldı */
}

.section {
    position: relative;
    margin-bottom: 60px; /* Artırılmış alt boşluk */
    width: 45%; /* Genişliği artır */
    max-width: 550px; /* Maksimum genişlik ekle */
}

.section.left {
    margin-left: auto;
    margin-right: 52%;
    transform: translateX(-30px);
}

.section.right {
    margin-left: 52%;
    margin-right: auto;
    transform: translateX(30px);
}

/* Kartları süzülüyormuş gibi göstermek için */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Kartların üzerine gelindiğinde hiçbir değişiklik olmaması için */
.section-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 30px; /* İç dolguyu artır */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    animation: float 6s ease-in-out infinite;
    /* Geçiş efektlerini tamamen kaldıralım */
    transition: none;
    min-height: 350px; /* Minimum yükseklik ekle */
}

/* Hover efektini tamamen kaldır */
.section-content:hover {
    /* Tüm hover efektlerini sıfırla */
    transform: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); /* Aynı gölge */
    background: rgba(255, 255, 255, 0.9); /* Aynı arkaplan */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Aynı kenarlık */
}

/* Gradient border efektini tamamen kaldır */
.section-content::before {
    display: none;
}

/* ::after pseudo-element'ini tamamen kaldır - hover efektini oluşturan budur */
.section-content::after {
    display: none;
}

/* Hover durumunda hiçbir şey olmamasını sağla */
.section-content:hover::after {
    opacity: 0;
    display: none;
}

.section h2 {
    font-size: 1.8rem; /* Başlık boyutunu artır */
    margin-bottom: 25px;
    color: #e52e71;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ff8a00;
    border-radius: 3px;
}

.section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem; /* Metin boyutunu artır */
    margin: 20px 0;
    line-height: 1.6;
    color: #555555;
    transition: none; /* Renk geçişlerini kaldır */
}

/* Büyütülmüş animasyon konteynerları */
.animation-container {
    min-height: 300px;
    margin: 25px 0;
    background: transparent;
    border: none;
    box-shadow: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* SVG animasyonlarının boyutunu artır */
.animation-container svg {
    width: 100% !important;
    height: 100% !important;
    max-width: 400px !important;
    max-height: 400px !important;
}

.learn-more {
    background: linear-gradient(45deg, #ff8a00, #e52e71);
    border: none;
    color: white;
    padding: 12px 24px; /* Buton boyutunu artır */
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(229, 46, 113, 0.3);
}

.learn-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 46, 113, 0.4);
}

.learn-more:active {
    transform: translateY(1px);
}

/* Fade-in animation for sections */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Başlık artık kaydırma sırasında sabit kalmayacak (bu kısım kaldırıldı) */
/* 
.scrolled .main-title {
    font-size: 3rem;
    position: fixed;
    top: 20px;
    z-index: 100;
}
*/

/* Farklı zamanlarda süzülmeleri için */
#nft-section .section-content {
    animation-delay: 0s;
}

#collection-section .section-content {
    animation-delay: 1.5s;
}

#projects-section .section-content {
    animation-delay: 0.75s;
}

#ranking-section .section-content {
    animation-delay: 2.25s;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .nft-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .section.left, .section.right {
        margin-left: auto;
        margin-right: auto;
        transform: none;
        max-width: 90%;
    }
    
    .center-line {
        left: 20px;
        transform: none;
    }
    
    .section-content {
        padding: 1.5rem;
    }
    
    .section h2 {
        font-size: 1.75rem;
    }
    
    .social-media-container {
        right: 10px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .nft-description {
        font-size: 0.9rem;
    }
    
    .section.left, .section.right {
        max-width: 100%;
    }
    
    .animation-container {
        height: 150px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Cüzdan Sidebar Stilleri - %30 büyütülmüş */
.wallet-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 91vh; /* %30 büyütme (70vh * 1.3) */
    z-index: 1000;
    display: flex;
    transition: all 0.3s ease;
}

.wallet-tab {
    background: #3a3a3a;
    color: #fff;
    width: 52px; /* %30 büyütme (40px * 1.3) */
    height: 65px; /* %30 büyütme (50px * 1.3) */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: background-color 0.3s, transform 0.3s;
}

.wallet-tab:hover {
    background: #4a4a4a;
    transform: scale(1.1);
}

.wallet-tab i {
    font-size: 26px; /* %30 büyütme (20px * 1.3) */
    color: #61DAFB;
}

.wallet-content {
    background: #222;
    width: 0;
    height: 100%;
    overflow: hidden;
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    border-radius: 0 8px 8px 0;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    padding: 0;
    box-sizing: border-box;
}

.wallet-sidebar.open .wallet-content {
    width: 390px; /* %30 büyütme (300px * 1.3) */
    padding: 20px;
    opacity: 1;
    transition: width 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                opacity 0.3s ease 0.1s,
                padding 0.3s ease;
}

.wallet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

.wallet-header h3 {
    font-family: 'Press Start 2P', cursive;
    font-size: 18px; /* %30 büyütme (14px * 1.3) */
    color: #61DAFB;
    margin: 0;
}

.wallet-header button {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 21px; /* %30 büyütme (16px * 1.3) */
    padding: 5px;
}

.wallet-header button:hover {
    color: #fff;
}

.wallet-connect-section {
    margin-bottom: 20px;
    padding: 15px;
    background: #2a2a2a;
    border-radius: 8px;
    text-align: center;
}

.connect-wallet-btn {
    background: #61DAFB;
    color: #222;
    border: none;
    padding: 13px 20px; /* %30 büyütme */
    border-radius: 5px;
    font-family: 'Press Start 2P', cursive;
    font-size: 15px; /* %30 büyütme (12px * 1.3) */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    transition: all 0.2s;
}

.connect-wallet-btn:hover {
    background: #4fa8c3;
    transform: scale(1.05);
}

.wallet-address {
    font-size: 13px; /* %30 büyütme (10px * 1.3) */
    color: #999;
    word-break: break-all;
    margin-top: 10px;
}

.wallet-nfts h4 {
    font-family: 'Press Start 2P', cursive;
    font-size: 16px; /* %30 büyütme (12px * 1.3) */
    color: #61DAFB;
    margin-bottom: 15px;
}

.nft-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-height: 520px; /* %30 büyütme (400px * 1.3) */
    overflow-y: auto;
    padding-right: 5px;
}

.nft-grid::-webkit-scrollbar {
    width: 5px;
}

.nft-grid::-webkit-scrollbar-track {
    background: #2a2a2a;
}

.nft-grid::-webkit-scrollbar-thumb {
    background: #61DAFB;
    border-radius: 5px;
}

.nft-item {
    background: #333;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.nft-item:hover {
    transform: translateY(-5px);
}

.nft-image {
    width: 100%;
    height: 130px; /* %30 büyütme (100px * 1.3) */
    object-fit: cover;
    display: block;
}

.nft-info {
    padding: 8px;
}

.nft-name {
    font-size: 13px; /* %30 büyütme (10px * 1.3) */
    color: #fff;
    margin: 0 0 5px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nft-collection {
    font-size: 10px; /* %30 büyütme (8px * 1.3) */
    color: #999;
}

.nft-loading {
    grid-column: span 2;
    text-align: center;
    color: #999;
    padding: 20px;
    font-size: 16px; /* %30 büyütme (12px * 1.3) */
}

/* NFT bulunamadığında gösterilecek mesaj stili */
.no-nft-message {
    grid-column: span 2;
    text-align: center;
    color: #999;
    padding: 30px 20px;
    background: #2a2a2a;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.no-nft-message i {
    font-size: 31px; /* %30 büyütme (24px * 1.3) */
    color: #61DAFB;
}

.no-nft-message p {
    margin: 0;
    font-size: 16px; /* %30 büyütme (12px * 1.3) */
}

/* Süzülen NFT Kartları - Yeniden konumlandırılmış */
.floating-nfts-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none; /* Kartların tıklanmasını engelle */
}

.floating-nft {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 1; /* Net kartlar için */
}

/* Bulanık efektli kartlar */
.floating-nft.blur {
    filter: blur(3px);
    opacity: 0.65;
}

/* Her kartın konumu, boyutu ve animasyonu - Yeniden düzenlenmiş */
.nft-1 {
    width: 160px;
    height: 160px;
    top: 12%;
    left: 8%;
    animation: float1 9s ease-in-out infinite;
    background-color: #ff8a00; /* Geçici renk - PNG eklenince kaldırılabilir */
}

.nft-2 {
    width: 160px;
    height: 160px;
    top: 22%;
    right: 15%;
    animation: float2 10s ease-in-out infinite;
    background-color: #e52e71; /* Geçici renk - PNG eklenince kaldırılabilir */
}

.nft-3 {
    width: 160px;
    height: 160px;
    bottom: 25%;
    left: 20%;
    animation: float3 8s ease-in-out infinite;
    background-color: #61DAFB; /* Geçici renk - PNG eklenince kaldırılabilir */
}

.nft-4 {
    width: 160px;
    height: 160px;
    bottom: 18%;
    right: 7%;
    animation: float4 11s ease-in-out infinite;
    background-color: #ff8a00; /* Geçici renk - PNG eklenince kaldırılabilir */
}

.nft-5 {
    width: 160px;
    height: 160px;
    top: 8%;
    left: 42%;
    animation: float5 9.5s ease-in-out infinite;
    background-color: #e52e71; /* Geçici renk - PNG eklenince kaldırılabilir */
}

.nft-6 {
    width: 160px;
    height: 160px;
    bottom: 12%;
    left: 45%;
    animation: float6 8.5s ease-in-out infinite;
    background-color: #61DAFB; /* Geçici renk - PNG eklenince kaldırılabilir */
}

.nft-7 {
    width: 160px;
    height: 160px;
    top: 45%;
    left: 3%;
    animation: float7 10.5s ease-in-out infinite;
    background-color: #ff8a00; /* Geçici renk - PNG eklenince kaldırılabilir */
}

.nft-8 {
    width: 160px;
    height: 160px;
    top: 40%;
    right: 12%;
    animation: float8 7.5s ease-in-out infinite;
    background-color: #e52e71; /* Geçici renk - PNG eklenince kaldırılabilir */
}

/* Süzülme animasyonları - Her kart için benzersiz animasyon */
@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, 15px) rotate(2deg); }
    50% { transform: translate(15px, 5px) rotate(-1deg); }
    75% { transform: translate(5px, -10px) rotate(1deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, 10px) rotate(-2deg); }
    50% { transform: translate(-5px, -15px) rotate(3deg); }
    75% { transform: translate(-10px, 5px) rotate(-1deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -8px) rotate(-3deg); }
    50% { transform: translate(-15px, -5px) rotate(1deg); }
    75% { transform: translate(-5px, 12px) rotate(2deg); }
}

@keyframes float4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-12px, -10px) rotate(2deg); }
    50% { transform: translate(8px, 15px) rotate(-2deg); }
    75% { transform: translate(15px, -5px) rotate(1deg); }
}

@keyframes float5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(8px, 12px) rotate(2deg); }
    50% { transform: translate(-12px, -8px) rotate(-1deg); }
    75% { transform: translate(-8px, 5px) rotate(3deg); }
}

@keyframes float6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-5px, -12px) rotate(-2deg); }
    50% { transform: translate(12px, 5px) rotate(1deg); }
    75% { transform: translate(8px, 15px) rotate(-1deg); }
}

@keyframes float7 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, 5px) rotate(2deg); }
    50% { transform: translate(5px, -15px) rotate(-2deg); }
    75% { transform: translate(-12px, 10px) rotate(1deg); }
}

@keyframes float8 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-8px, 15px) rotate(-1deg); }
    50% { transform: translate(12px, 8px) rotate(2deg); }
    75% { transform: translate(5px, -12px) rotate(-2deg); }
}

/* Başlık ve açıklama kartların üzerinde görünsün */
.nft-description, .scroll-down-arrow {
    position: relative;
    z-index: 5;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
    pointer-events: auto; /* Tıklanabilir olsun */
}

/* Beğen ve Koleksiyon butonları için stil */
.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.like-btn, .collection-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.like-btn {
    background-color: #f8f8f8;
    color: #333;
}

.like-btn.liked {
    background-color: #ffeeee;
    color: #ff4d6d;
}

.like-btn.liked i {
    color: #ff4d6d;
}

.collection-btn {
    background: linear-gradient(45deg, #ff8a00, #e52e71);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(229, 46, 113, 0.3);
}

.collection-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 46, 113, 0.4);
}

.collection-btn:active {
    transform: translateY(1px);
}

.dollar-amount {
    font-size: 2.5rem; /* Increased from 2rem to make it larger */
    font-weight: bold;
    color: #4CAF50;
    margin: 10px 0 15px 0;
    text-align: left; /* Changed from center to left-align */
    padding-left: 10px; /* Added some padding for better spacing */
}
