/* ===== ORBITAL CARDS LAYOUT ===== */
/* Globe etrafında dönen minimal kartlar */

/* ===== HERO SECTION - Globe merkezi ===== */
.hero-globe-section {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    margin-top: 30px;
    padding: 100px 0 150px 0; /* Header ve footer için padding */
    margin-bottom: 0; /* Footer için ekstra boşluk */
}

/* Globe container - tam merkez */
.globe-center-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

/* ===== ORBITAL CONTAINER ===== */
.orbital-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(550px, 70vh, 80vw);
    height: min(550px, 70vh, 80vw);
    z-index: 10;
    pointer-events: none;
}

/* Orbital ring - görünmez referans */
.orbital-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* border: 1px dashed rgba(99, 102, 241, 0.1); */ /* Debug için */
}

/* ===== ORBITAL CARD - Minimal thumbnail ===== */
.orbital-card {
    position: absolute;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center center;
    z-index: 10;
    
    /* Glow efekti */
    box-shadow: 
        0 0 15px rgba(99, 102, 241, 0.3),
        0 0 30px rgba(99, 102, 241, 0.1),
        inset 0 0 15px rgba(0, 0, 0, 0.3);
    
    /* Border */
    border: 2px solid rgba(99, 102, 241, 0.4);
    
    /* Pulse animasyonu */
    animation: orbitalPulse 3s ease-in-out infinite;
}

/* Her kart için farklı animasyon delay */
.orbital-card:nth-child(1) { animation-delay: 0s; }
.orbital-card:nth-child(2) { animation-delay: 0.3s; }
.orbital-card:nth-child(3) { animation-delay: 0.6s; }
.orbital-card:nth-child(4) { animation-delay: 0.9s; }
.orbital-card:nth-child(5) { animation-delay: 1.2s; }
.orbital-card:nth-child(6) { animation-delay: 1.5s; }
.orbital-card:nth-child(7) { animation-delay: 1.8s; }
.orbital-card:nth-child(8) { animation-delay: 2.1s; }
.orbital-card:nth-child(9) { animation-delay: 2.4s; }
.orbital-card:nth-child(10) { animation-delay: 2.7s; }

@keyframes orbitalPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(99, 102, 241, 0.3),
            0 0 40px rgba(99, 102, 241, 0.1),
            inset 0 0 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(99, 102, 241, 0.5),
            0 0 60px rgba(99, 102, 241, 0.2),
            inset 0 0 20px rgba(0, 0, 0, 0.3);
    }
}

/* Orbital card image */
.orbital-card .card-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Orbital card overlay */
.orbital-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(10, 10, 15, 0.6) 100%);
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Orbital card name tooltip */
.orbital-card .card-name-tooltip {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 15, 0.95);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    pointer-events: none;
    z-index: 100;
}

.orbital-card .card-name-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(10, 10, 15, 0.95);
}

/* ===== ORBITAL CARD HOVER STATE ===== */
.orbital-card:hover {
    width: 95px;
    height: 95px;
    z-index: 100;
    border-color: var(--accent);
    animation: none;
    
    box-shadow: 
        0 0 30px rgba(99, 102, 241, 0.6),
        0 0 60px rgba(99, 102, 241, 0.3),
        0 15px 40px rgba(0, 0, 0, 0.5);
}

.orbital-card:hover .card-thumbnail {
    transform: scale(1.1);
}

.orbital-card:hover .card-overlay {
    opacity: 0;
}

.orbital-card:hover .card-name-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -40px;
}

/* ===== ORBITAL CARD ACTIVE/SELECTED STATE ===== */
.orbital-card.active {
    width: 110px;
    height: 110px;
    border-color: var(--accent);
    z-index: 150;
    
    box-shadow: 
        0 0 40px rgba(99, 102, 241, 0.8),
        0 0 80px rgba(99, 102, 241, 0.4),
        0 20px 60px rgba(0, 0, 0, 0.6);
}

/* ===== ORBITAL POSITIONS (10 cards) ===== */
/* Dairesel yerleşim - saat yönünde */
.orbital-card[data-position="0"] {
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbital-card[data-position="1"] {
    top: 9.5%;
    left: 79.4%;
    transform: translate(-50%, -50%);
}

.orbital-card[data-position="2"] {
    top: 34.5%;
    left: 97.6%;
    transform: translate(-50%, -50%);
}

.orbital-card[data-position="3"] {
    top: 65.5%;
    left: 97.6%;
    transform: translate(-50%, -50%);
}

.orbital-card[data-position="4"] {
    top: 90.5%;
    left: 79.4%;
    transform: translate(-50%, -50%);
}

.orbital-card[data-position="5"] {
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbital-card[data-position="6"] {
    top: 90.5%;
    left: 20.6%;
    transform: translate(-50%, -50%);
}

.orbital-card[data-position="7"] {
    top: 65.5%;
    left: 2.4%;
    transform: translate(-50%, -50%);
}

.orbital-card[data-position="8"] {
    top: 34.5%;
    left: 2.4%;
    transform: translate(-50%, -50%);
}

.orbital-card[data-position="9"] {
    top: 9.5%;
    left: 20.6%;
    transform: translate(-50%, -50%);
}

/* ===== CENTER INFO ===== */
.center-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    pointer-events: none;
}

.center-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
    margin-bottom: 0.5rem;
}

.center-info .tagline {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 300px;
    margin: 0 auto;
}

/* ===== DETAIL MODAL ===== */
.card-detail-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.card-detail-modal.active {
    opacity: 1;
    visibility: visible;
}

.card-detail-content {
    background: var(--bg-card);
    border-radius: 24px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.card-detail-modal.active .card-detail-content {
    transform: scale(1) translateY(0);
}

.card-detail-header {
    position: relative;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-detail-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.card-detail-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.card-detail-close:hover {
    background: var(--accent);
    color: white;
    transform: rotate(90deg);
}

.card-detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.card-detail-image {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-secondary);
    aspect-ratio: 1;
}

.card-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-detail-info .token-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-secondary);
    width: fit-content;
}

.card-detail-info .token-badge i {
    color: var(--accent);
}

.card-detail-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.stat-item .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.stat-item .value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    word-break: break-word;
}

.card-detail-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.card-detail-actions .btn-mint {
    flex: 1;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
    border: none;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.card-detail-actions .btn-mint:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.card-detail-actions .price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== ENHANCED DETAIL MODAL ===== */
.card-detail-content.enhanced {
    max-width: 1100px;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(15, 15, 25, 1) 100%);
}

.card-detail-content.enhanced .card-detail-header {
    padding: 1.5rem 2rem;
    background: rgba(99, 102, 241, 0.05);
}

.card-detail-content.enhanced .header-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-detail-content.enhanced .nft-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, var(--accent), #8b5cf6);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-detail-content.enhanced .card-detail-header h2 {
    font-size: 1.8rem;
    margin: 0;
}

.card-detail-content.enhanced .card-detail-body {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 2.5rem;
    padding: 2rem;
}

/* Enhanced Left Side */
.card-detail-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-detail-content.enhanced .card-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    background: transparent;
    aspect-ratio: 1;
}

.card-detail-content.enhanced .image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border);
}

.card-detail-content.enhanced .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-detail-content.enhanced .image-frame:hover img {
    transform: scale(1.05);
}

.card-detail-content.enhanced .image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.live-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.quick-stats {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
}

.quick-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.8rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.quick-stat i {
    color: var(--accent);
    font-size: 1rem;
}

/* Enhanced Right Side */
.card-detail-right {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.detail-section {
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.detail-section.highlight {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border);
}

.section-header i {
    color: var(--accent);
    font-size: 1rem;
}

.section-header h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.section-header.clickable {
    cursor: pointer;
    transition: background 0.3s ease;
}

.section-header.clickable:hover {
    background: rgba(99, 102, 241, 0.1);
}

.section-header .toggle-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.section-header.active .toggle-icon {
    transform: rotate(180deg);
}

.section-content {
    padding: 1rem 1.2rem;
}

.section-content.collapsed {
    display: none;
}

/* Data Source Card */
.data-source-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.source-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.source-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.source-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.source-type {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Value Display */
.value-display {
    text-align: center;
    padding: 0.5rem 0;
}

.main-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    word-break: break-word;
}

/* State Card */
.state-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.state-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.state-indicator.positive { background: var(--success); }
.state-indicator.negative { background: var(--error); }
.state-indicator.warning { background: var(--warning); }

.state-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.state-reason {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.state-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* How It Works */
.how-it-works {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    padding-top: 0.2rem;
}

/* Schedule Grid */
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.8rem;
    background: var(--bg-card);
    border-radius: 10px;
    border: 1px solid var(--border);
}

.schedule-item i {
    color: var(--accent);
}

.schedule-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Enhanced Actions */
.card-detail-content.enhanced .card-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.card-detail-content.enhanced .price-display {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0;
    border: none;
}

.btn-mint.enhanced {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
    border: none;
    color: white;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-mint.enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-mint.enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-mint.enhanced:hover::before {
    opacity: 1;
}

/* Enhanced Modal Responsive */
@media (max-width: 900px) {
    .card-detail-content.enhanced .card-detail-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-detail-left {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .quick-stats {
        flex-wrap: wrap;
    }
}

@media (max-width: 600px) {
    .card-detail-content.enhanced {
        width: 95%;
        max-height: 95vh;
    }
    
    .card-detail-content.enhanced .card-detail-header {
        padding: 1rem 1.2rem;
    }
    
    .card-detail-content.enhanced .card-detail-header h2 {
        font-size: 1.3rem;
    }
    
    .card-detail-content.enhanced .card-detail-body {
        padding: 1.2rem;
    }
    
    .main-value {
        font-size: 1.5rem;
    }
}

/* ===== SCROLL INDICATOR (Hidden) ===== */
.scroll-indicator {
    display: none !important;
}

/* ===== SIMPLE MODAL STYLES ===== */
.card-detail-content.simple {
    max-width: 800px;
}

.card-detail-content.simple .card-detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}

.card-detail-content.simple .card-detail-image {
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-secondary);
    aspect-ratio: 1;
}

.card-detail-content.simple .card-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-detail-content.simple .card-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-detail-content.simple .token-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-secondary);
    width: fit-content;
}

.card-detail-content.simple .token-badge i {
    color: var(--accent);
}

.card-detail-content.simple .card-detail-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.card-detail-content.simple .stat-item {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.card-detail-content.simple .stat-item .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.card-detail-content.simple .stat-item .value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    word-break: break-word;
}

.card-detail-content.simple .card-detail-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.card-detail-content.simple .price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
    font-weight: 700;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-detail-content.simple .btn-mint {
    flex: 1;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
    border: none;
    color: white;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.card-detail-content.simple .btn-mint:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

@media (max-width: 700px) {
    .card-detail-content.simple .card-detail-body {
        grid-template-columns: 1fr;
    }
    
    .card-detail-content.simple .card-detail-image {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ===== FLOATING HEADER ===== */
.floating-header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid var(--border);
    z-index: 9999;
}

.floating-header .logo {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent) 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-header .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.floating-header .lang-switch-container {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.floating-header .lang-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.floating-header .switch {
    position: relative;
    width: 36px;
    height: 18px;
}

.floating-header .slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--bg-primary);
    transition: 0.3s;
    border-radius: 18px;
    border: 1px solid var(--border);
}

.floating-header .slider:before {
    content: "";
    position: absolute;
    height: 12px;
    width: 12px;
    left: 3px;
    bottom: 2px;
    background: var(--text-secondary);
    transition: 0.3s;
    border-radius: 50%;
}

.floating-header input:checked + .slider {
    background: var(--accent);
    border-color: var(--accent);
}

.floating-header input:checked + .slider:before {
    transform: translateX(18px);
    background: white;
}

.floating-header .btn-connect {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 10px;
}

.floating-header .nav-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    border-radius: 10px;
}

/* ===== ORBITAL FOOTER ===== */
.orbital-footer {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 15, 0.95) 20%);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border);
    z-index: 100;
    margin-top: 0;
}

.orbital-footer .social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.orbital-footer .social-links a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.orbital-footer .social-links a:hover {
    color: var(--accent);
}

.orbital-footer p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0.2rem 0;
}

/* ===== HEADER STATS BUTTON ===== */
.header-stats-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid var(--accent);
    border-radius: 8px;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-stats-btn i {
    font-size: 1rem;
}

.header-stats-btn:hover {
    background: var(--accent);
    color: white;
}

.header-stats-btn.active {
    background: var(--accent);
    color: white;
}

/* Mobile: sadece icon göster */
@media (max-width: 600px) {
    .header-stats-btn span {
        display: none;
    }
    
    .header-stats-btn {
        padding: 0.5rem;
        width: 38px;
        height: 38px;
        justify-content: center;
    }
}

/* ===== STATS MODAL OVERLAY ===== */
.stats-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.stats-modal-overlay.active {
    display: flex;
}

/* ===== STATS MODAL ===== */
.stats-modal {
    width: 100%;
    max-width: 400px;
    max-height: calc(100vh - 100px);
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    animation: statsModalIn 0.3s ease;
}

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

.stats-modal-header {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(99, 102, 241, 0.1);
}

.stats-modal-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.stats-modal-header > i {
    color: var(--accent);
    font-size: 1.2rem;
}

.stats-modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.stats-modal-close:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.stats-modal-body {
    padding: 1rem;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.stats-modal-body::-webkit-scrollbar {
    width: 4px;
}

.stats-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.stats-modal-body::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

/* ===== STAT CARDS ===== */
.stat-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 0.8rem;
    margin-bottom: 0.6rem;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.stat-card:last-child {
    margin-bottom: 0;
}

.stat-card:hover {
    border-color: var(--accent);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.2);
}

.stat-card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.stat-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.stat-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-card-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.stat-card-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.stat-card-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-card-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-align: right;
    max-width: 60%;
    line-height: 1.3;
}

/* Stat card status indicators */
.stat-card[data-status="positive"] .stat-card-value {
    color: var(--success);
}

.stat-card[data-status="negative"] .stat-card-value {
    color: var(--error);
}

.stat-card[data-status="warning"] .stat-card-value {
    color: var(--warning);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1200px) {
    .orbital-container {
        width: 600px;
        height: 600px;
    }
    
    .orbital-card {
        width: 70px;
        height: 70px;
    }
    
    .orbital-card:hover {
        width: 100px;
        height: 100px;
    }
    
    .floating-header {
        padding: 0.6rem 1rem;
        gap: 1rem;
    }
}

@media (max-width: 900px) {
    .orbital-container {
        width: 500px;
        height: 500px;
    }
    
    .orbital-card {
        width: 60px;
        height: 60px;
    }
    
    .orbital-card:hover {
        width: 85px;
        height: 85px;
    }
    
    .center-info h1 {
        font-size: 1.8rem;
    }
    
    .center-info .tagline {
        font-size: 0.85rem;
    }
    
    .card-detail-body {
        grid-template-columns: 1fr;
    }
    
    .floating-header {
        top: 10px;
        padding: 0.5rem 1rem;
        gap: 0.8rem;
    }
    
    .floating-header .logo {
        font-size: 0.9rem;
    }
    
    .floating-header .btn-connect {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .floating-header {
        width: calc(100% - 30px);
        justify-content: space-between;
        border-radius: 16px;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .floating-header .header-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    
    .floating-header .lang-switch-container {
        display: flex;
        order: 1;
    }
    
    .floating-header .lang-label {
        font-size: 0.65rem;
    }
    
    .floating-header .switch {
        width: 36px;
        height: 18px;
    }
    
    .floating-header .slider:before {
        width: 14px;
        height: 14px;
    }
    
    .floating-header input:checked + .slider:before {
        transform: translateX(18px);
    }
    
    .floating-header .btn-connect {
        order: 2;
        padding: 0.4rem 0.7rem;
        font-size: 0.7rem;
    }
    
    .floating-header .nav-btn {
        order: 3;
        padding: 0.4rem 0.7rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 600px) {
    .hero-globe-section {
        min-height: 100vh;
        padding: 70px 0 50px 0;
    }
    
    .orbital-container {
        width: min(300px, 85vw);
        height: min(300px, 85vw);
    }
    
    .orbital-card {
        width: 38px;
        height: 38px;
        border-width: 1.5px;
    }
    
    .orbital-card:hover {
        width: 55px;
        height: 55px;
    }
    
    .orbital-card .card-name-tooltip {
        display: none;
    }
    
    .center-info h1 {
        font-size: 1.1rem;
    }
    
    .center-info .tagline {
        font-size: 0.65rem;
        max-width: 160px;
    }
    
    .floating-header .logo {
        font-size: 0.75rem;
    }
    
    .floating-header .btn-connect {
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    
    .card-detail-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .card-detail-body {
        padding: 1rem;
        gap: 1rem;
    }
    
    .card-detail-stats {
        grid-template-columns: 1fr;
    }
    
    .card-detail-header h2 {
        font-size: 1.1rem;
    }
    
    .orbital-footer {
        padding: 0.6rem 1rem;
    }
    
    .orbital-footer p {
        font-size: 0.65rem;
    }
    
    .orbital-footer .social-links {
        margin-bottom: 0.3rem;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */

/* ===== HIDE ORIGINAL ELEMENTS ON ORBITAL MODE ===== */
body.orbital-mode > .container .grid-container,
body.orbital-mode .container > .grid-container {
    display: none !important;
}

/* Ensure modal grids are visible */
body.orbital-mode .modal .grid-container,
body.orbital-mode #my-collection-modal .grid-container,
body.orbital-mode #collection-grid {
    display: grid !important;
}

body.orbital-mode .about-section {
    display: none !important;
}

body.orbital-mode .main-header {
    display: none !important;
}

body.orbital-mode > .container {
    display: none !important;
}

/* Body scroll ayarı - Scroll aktif */
body.orbital-mode {
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
}

/* ===== LOADING STATE ===== */
.orbital-card.loading {
    background: var(--bg-secondary);
}

.orbital-card.loading .card-thumbnail {
    opacity: 0;
}

.orbital-card.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== ROTATION ANIMATION (Optional) ===== */
.orbital-ring.rotating {
    animation: orbitRotate 60s linear infinite;
}

@keyframes orbitRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Counter-rotation for cards to keep them upright */
.orbital-ring.rotating .orbital-card {
    animation: counterRotate 60s linear infinite, orbitalPulse 3s ease-in-out infinite;
}

@keyframes counterRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(-360deg); }
}
