/* Ek Stiller - Ana Sayfa İçin */

/* Market Tablosu Gelişmiş Stiller - 2025 Modern Tasarım */
.market-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.market-table thead {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.98));
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
}

.market-table thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    animation: shimmerGold 3s infinite;
}

@keyframes shimmerGold {
    0% { transform: translateX(-100%); opacity: 0.3; }
    50% { transform: translateX(100%); opacity: 0.8; }
    100% { transform: translateX(-100%); opacity: 0.3; }
}

.market-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: all 0.3s ease;
}

.market-table th .th-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.market-table th i {
    font-size: 12px;
    opacity: 0.5;
    cursor: pointer;
    transition: all 0.3s ease;
}

.market-table th:hover i {
    opacity: 1;
    color: var(--primary-gold);
}

.market-table tbody tr {
    transition: all 0.3s ease;
    position: relative;
    background: rgba(26, 26, 26, 0.7);
    border-bottom: 1px solid rgba(255, 215, 0, 0.05);
}

.market-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0.03) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.market-table tbody tr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-gold), var(--accent-amber));
    transform: scaleY(0);
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.market-table tbody tr:hover::before {
    transform: scaleY(1);
}

.market-table td {
    padding: 16px;
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    vertical-align: middle;
}

/* Coin stilinin modern hali */
.coin-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coin-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-gold);
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.coin-details {
    display: flex;
    flex-direction: column;
}

.coin-symbol {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
}

.coin-name {
    color: var(--text-muted);
    font-size: 13px;
}

/* Fiyat stil güncelleme */
.price {
    font-weight: 700;
    font-size: 16px;
    position: relative;
    display: inline-block;
    padding: 4px 0;
}

.price::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    transition: width 0.3s ease;
}

.market-table tbody tr:hover .price::after {
    width: 100%;
}

/* Değişim yüzdeleri */
.change {
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.change i {
    font-size: 12px;
}

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

.change:hover::before {
    left: 100%;
}

.change.positive {
    background: rgba(0, 255, 136, 0.12);
    color: var(--success);
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.change.negative {
    background: rgba(255, 68, 68, 0.12);
    color: var(--danger);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

/* Hacim stilini güncelleme */
.volume {
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    font-size: 14px;
}

/* İşlem butonları modern versiyonu */
.actions {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--primary-gold);
    font-size: 14px;
    backdrop-filter: blur(4px);
}

.action-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 8px;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0;
}

.action-btn:hover::before {
    width: 100%;
    height: 100%;
}

.favorite-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.favorite-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
}

.add-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(101, 31, 255, 0.4);
}

.add-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(101, 31, 255, 0.6);
}

.action-btn i {
    font-size: 0.9rem;
    z-index: 1;
    position: relative;
}

/* Loading Animation for New Data */
@keyframes dataRefresh {
    0% { background-color: rgba(101, 31, 255, 0.1); }
    50% { background-color: rgba(255, 183, 77, 0.2); }
    100% { background-color: rgba(101, 31, 255, 0.1); }
}

.market-table tbody tr.updating {
    animation: dataRefresh 1s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .market-table {
        font-size: 0.9rem;
    }
    
    .market-table th,
    .market-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .coin-info {
        gap: 0.5rem;
    }
    
    .actions {
        gap: 0.3rem;
    }
    
    .action-btn {
        width: 28px;
        height: 28px;
    }
}

/* Action Buttons */
.favorite-btn, .add-portfolio-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    margin: 0 4px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.favorite-btn:hover, .add-portfolio-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
    color: #FFD700;
    transform: scale(1.1);
}

.favorite-btn.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

/* Flash Animation */
.flash {
    animation: priceFlash 0.6s ease-in-out;
}

@keyframes priceFlash {
    0%, 100% { 
        background-color: transparent; 
        transform: scale(1);
    }
    50% { 
        background-color: rgba(255, 215, 0, 0.3);
        transform: scale(1.05);
    }
}

/* Live Stats Gelişmiş Stiller */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.1);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease;
}

.stat-value.fear {
    color: #ff4757;
    text-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
}

.stat-value.greed {
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Learning Cards Gelişmiş Stiller */
.learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.learning-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.learning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.learning-card.beginner::before {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.learning-card.intermediate::before {
    background: linear-gradient(135deg, #FF9800, #FFB74D);
}

.learning-card.advanced::before {
    background: linear-gradient(135deg, #9C27B0, #BA68C8);
}

.learning-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.5);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.card-header i {
    font-size: 24px;
    color: #FFD700;
}

.level-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.learning-card.beginner .level-badge {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.learning-card.intermediate .level-badge {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
}

.learning-card.advanced .level-badge {
    background: rgba(156, 39, 176, 0.2);
    color: #9C27B0;
}

.learning-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.learning-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.duration {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-learn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.btn-learn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

/* Modal Sistemleri */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(30, 30, 30, 0.95));
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(20px);
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: #FFD700;
    font-size: 24px;
    font-weight: 600;
}

.close {
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: #FFD700;
    transform: scale(1.1);
}

/* Learning Modal Özel Stiller */
.learning-modal {
    max-width: 700px;
}

.learning-level {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 12px;
    font-weight: 600;
}

.learning-level.beginner {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.learning-level.intermediate {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.learning-level.advanced {
    background: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.learning-content {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.learning-content h4, .learning-content h5 {
    color: #FFD700;
    margin: 20px 0 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.learning-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.learning-content li {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.8);
}

.example-box {
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.3);
    border-left: 4px solid #2196F3;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

.comparison-item, .service-item {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-left: 4px solid #FFD700;
    padding: 20px;
    border-radius: 12px;
}

.comparison-item h5, .service-item h5 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 16px;
}

.learning-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.learning-actions .btn-primary, .learning-actions .btn-secondary {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.learning-actions .btn-primary {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: #fff;
}

.learning-actions .btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.learning-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.learning-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFD700;
    color: #FFD700;
}

/* Learning Modal Styles */
.learning-modal {
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
}

.learning-content {
    padding: 0;
}

.learning-content h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.learning-content h5 {
    color: var(--text-color);
    margin: 1.5rem 0 0.8rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.learning-content ul, .learning-content ol {
    margin: 0.8rem 0 0.8rem 1.5rem;
}

.learning-content li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.learning-content li strong {
    color: var(--primary-color);
}

.learning-content p {
    line-height: 1.7;
    margin: 1rem 0;
}

.learning-example {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.learning-tip {
    background: linear-gradient(135deg, #e8f5e8, #f0f8ff);
    border-left: 4px solid #4caf50;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.learning-warning {
    background: linear-gradient(135deg, #fff3e0, #fce4ec);
    border-left: 4px solid #ff9800;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.learning-best-practice {
    background: linear-gradient(135deg, #f3e5f5, #e8eaf6);
    border-left: 4px solid #9c27b0;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.learning-strategy {
    background: linear-gradient(135deg, #e0f2f1, #e8f5e8);
    border-left: 4px solid #009688;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.learning-caution {
    background: linear-gradient(135deg, #ffebee, #fce4ec);
    border-left: 4px solid #f44336;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
    font-weight: 500;
}

.modal-footer .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(101, 31, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .learning-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .comparison-table {
        grid-template-columns: 1fr;
    }
    
    .market-table-container {
        overflow-x: auto;
    }
    
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Success/Error States */
.success {
    color: #4CAF50 !important;
    animation: pulse 0.5s ease-in-out;
}

.error {
    color: #ff4757 !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* About Section Styles */
.about-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.about-content {
    margin-top: 40px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.about-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 255, 200, 0.3);
    box-shadow: 0 10px 30px rgba(0, 255, 200, 0.1);
}

.about-card .card-icon {
    font-size: 48px;
    color: #00ffc8;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 255, 200, 0.1);
    margin: 0 auto 20px;
}

.about-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
}

.about-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Team Section */
.team-section {
    margin: 60px 0;
    text-align: center;
}

.team-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: white;
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: white;
}

.team-member p {
    color: #00ffc8;
    font-weight: 600;
    margin-bottom: 8px;
}

.team-member span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Stats Section */
.stats-section {
    text-align: center;
}

.stats-section h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffc8;
    margin-bottom: 10px;
    display: block;
}

.stat-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Project Discovery Styles */
.discover-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.discover-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.project-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.project-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.project-logo {
    font-size: 48px;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.project-info h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.project-symbol {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-right: 10px;
}

.project-category {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

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

.project-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.project-stats .stat {
    text-align: center;
}

.project-stats .label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.project-stats .value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.project-stats .positive {
    color: #4ade80;
}

.project-stats .negative {
    color: #f87171;
}

.project-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.project-actions button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-discover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

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

/* Portfolio and Favorites */
.favorite-coins {
    margin-top: 30px;
}

.coins-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.favorite-coin-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.favorite-coin-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.coin-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.coin-info .symbol {
    font-weight: 600;
    color: white;
}

.coin-info .price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.favorite-coin-item .change {
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

/* Enhanced Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

.bounce-in {
    animation: bounceIn 0.8s ease-out;
}

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

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.9) translateY(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .project-header {
        flex-direction: column;
        text-align: center;
    }
    
    .project-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Fear & Greed Meter */
.fear-greed-stat {
    position: relative;
}

.fear-greed-meter {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.meter-bg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(
        #f44336 0deg 60deg,      /* Extreme Fear */
        #ff9800 60deg 120deg,    /* Fear */
        #ffc107 120deg 180deg,   /* Neutral */
        #8bc34a 180deg 240deg,   /* Greed */
        #4caf50 240deg 300deg    /* Extreme Greed */
    );
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meter-bg::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 50%;
    background: var(--card-bg);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.meter-fill {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--card-bg);
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.meter-indicator {
    position: absolute;
    width: 4px;
    height: 50px;
    background: var(--text-color);
    border-radius: 2px;
    top: 10px;
    left: 50%;
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(0deg);
    transition: transform 1s ease;
    z-index: 3;
}

.fear-greed-meter .stat-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.fear-greed-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Fear & Greed color classes */
.fear-greed-label.extreme-fear {
    color: #f44336;
}

.fear-greed-label.fear {
    color: #ff9800;
}

.fear-greed-label.neutral {
    color: #ffc107;
}

.fear-greed-label.greed {
    color: #8bc34a;
}

.fear-greed-label.extreme-greed {
    color: #4caf50;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.project-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(101, 31, 255, 0.15);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.project-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.project-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    background: var(--primary-color);
}

.project-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
}

.project-symbol {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.project-category {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(101, 31, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(101, 31, 255, 0.1);
}

.project-stats .stat {
    text-align: center;
}

.project-stats .stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.project-stats .stat-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
}

.project-stats .stat-value.positive {
    color: #10b981;
}

.project-stats .stat-value.negative {
    color: #ef4444;
}

.project-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.project-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.project-btn.favorite {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.project-btn.favorite:hover {
    background: rgba(255, 193, 7, 0.2);
    transform: translateY(-2px);
}

.project-btn.details {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: 1px solid transparent;
}

.project-btn.details:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(101, 31, 255, 0.3);
}

.btn-discover {
    display: block;
    margin: 2rem auto 0;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-discover:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(101, 31, 255, 0.4);
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .project-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .project-actions {
        flex-direction: column;
    }
}

/* Other Projects Section */
.other-projects-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, 
        rgba(101, 31, 255, 0.1) 0%, 
        rgba(255, 183, 77, 0.05) 50%, 
        rgba(101, 31, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
}

.other-projects-section .section-header h2 {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.other-projects-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-showcase {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(101, 31, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.project-showcase:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(101, 31, 255, 0.2);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    object-position: center;
    transition: transform 0.3s ease;
}

.project-showcase:hover .project-image img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.project-status {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(101, 31, 255, 0.3);
}

.project-details {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
}

.project-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a; 
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-details p {
    color: #4a5568; 
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.feature-tag {
    background: linear-gradient(135deg, 
        rgba(101, 31, 255, 0.1) 0%, 
        rgba(255, 183, 77, 0.1) 100%);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(101, 31, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(101, 31, 255, 0.3);
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-showcase {
        margin: 0 1rem;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-details {
        padding: 1.5rem;
    }
    
    .project-details h3 {
        font-size: 1.3rem;
    }
    
    .project-details p {
        font-size: 0.95rem;
    }
}

/* Team Image Section */
.team-image-section {
    margin: 3rem 0;
    text-align: center;
}

.team-image-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-image-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(101, 31, 255, 0.3);
    transition: transform 0.3s ease;
}

.team-image-container:hover {
    transform: translateY(-5px);
}

.team-photo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.team-image-container:hover .team-photo {
    transform: scale(1.02);
}

.team-overlay {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}

.team-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 25px rgba(101, 31, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.team-badge i {
    font-size: 1rem;
}

.team-description {
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: left;
    padding: 1.5rem;
    background: rgba(101, 31, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

@media (max-width: 768px) {
    .team-image-section {
        margin: 2rem 0;
    }
    
    .team-image-section h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .team-image-container {
        max-width: 100%;
        border-radius: 15px;
    }
    
    .team-overlay {
        top: 1rem;
        right: 1rem;
    }
    
    .team-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .team-description p {
        font-size: 1rem;
        padding: 1.2rem;
    }
}

/* Modal Styles */
.modal {
    display: none !important;
    position: fixed !important;
    z-index: 10000 !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    animation: fadeIn 0.3s ease !important;
}

.modal.show {
    display: block !important;
}

.modal-content {
    position: relative !important;
    margin: 10% auto !important;
    padding: 2rem !important;
    width: 90% !important;
    max-width: 450px !important;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 100%) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(101, 31, 255, 0.2) !important;
    animation: slideIn 0.3s ease !important;
}

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

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

.modal-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 1.5rem !important;
    padding-bottom: 1rem !important;
    border-bottom: 1px solid rgba(101, 31, 255, 0.1) !important;
}

.modal-header h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    background-clip: text !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin: 0 !important;
}

.close {
    font-size: 2rem !important;
    font-weight: bold !important;
    color: #666 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 0.2rem 0.5rem !important;
    border-radius: 50% !important;
}

.close:hover {
    color: var(--primary-color) !important;
    background: rgba(101, 31, 255, 0.1) !important;
    transform: scale(1.1) !important;
}

.form-group {
    margin-bottom: 1.2rem !important;
}

.form-group label {
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    font-size: 0.9rem !important;
}

.form-group input {
    width: 100% !important;
    padding: 0.8rem 1rem !important;
    border: 2px solid rgba(101, 31, 255, 0.2) !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #333 !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.form-group input:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(101, 31, 255, 0.1) !important;
    background: white !important;
}

.modal .btn-primary {
    width: 100% !important;
    padding: 1rem !important;
    margin-top: 1rem !important;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.modal .btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(101, 31, 255, 0.3) !important;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95% !important;
        margin: 20% auto !important;
        padding: 1.5rem !important;
    }
    
    .modal-header h3 {
        font-size: 1.3rem !important;
    }
    
    .close {
        font-size: 1.8rem !important;
    }
}

/* Other Projects Section - Çok Yakında */
.other-projects-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.other-projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 165, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.other-projects-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.other-projects-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.other-projects-section .section-header p {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.project-showcase {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(30, 30, 30, 0.95));
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.project-showcase:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.1);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.8) saturate(1.1);
}

.project-showcase:hover .project-image img {
    transform: scale(1.05);
    filter: brightness(1) saturate(1.2);
}

.project-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
}

.coming-soon-badge {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

.project-details {
    padding: 25px;
    position: relative;
}

.project-details h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-details p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.coming-soon-banner {
    background: linear-gradient(135deg, rgba(50, 50, 50, 0.9), rgba(40, 40, 40, 0.95));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
}

.coming-soon-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: bannerShimmer 3s infinite;
}

@keyframes bannerShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-content p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-signup {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
    align-items: center;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input:focus {
    outline: none;
    border-color: #FFD700;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.subscribe-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

/* Responsive Design */
@media (max-width: 768px) {
    .other-projects-section {
        padding: 60px 0;
    }
    
    .other-projects-section .section-header h2 {
        font-size: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-showcase {
        margin: 0 10px;
    }
    
    .project-details {
        padding: 20px;
    }
    
    .project-details h3 {
        font-size: 1.2rem;
    }
    
    .coming-soon-banner {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .banner-content h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-signup {
        flex-direction: column;
        gap: 15px;
    }
    
    .email-input, .subscribe-btn {
        width: 100%;
    }
}

/* ==========================================
   NEW FINYX MOBILE MENU - BLACK & GOLD THEME
   ========================================== */

/* Hamburger only on mobile */
.mobile-hamburger {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-hamburger {
        display: flex !important;
    }
}

/* Overlay - Pure Black */
.finyx-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    z-index: 99999998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.finyx-mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Menu Container */
.finyx-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    z-index: 99999999;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    border-left: 3px solid #FFD700;
}

.finyx-mobile-menu.active {
    right: 0;
}

/* Menu Header */
.finyx-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 1.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
}

.finyx-logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.finyx-logo i {
    color: #FFD700;
    -webkit-text-fill-color: #FFD700;
}

.finyx-close-btn {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.finyx-close-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: #FFD700;
    transform: rotate(90deg) scale(1.1);
}

/* Menu Navigation */
.finyx-menu-nav {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.finyx-menu-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 15px;
    color: #FFD700;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.finyx-menu-item:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.finyx-menu-item i {
    font-size: 1.3rem;
    color: #FFD700;
}

.finyx-menu-item span {
    flex: 1;
}

/* Special Items */
.finyx-menu-item.finyx-special {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 167, 38, 0.1) 100%);
    border-color: rgba(255, 107, 107, 0.3);
}

.finyx-menu-item.finyx-pro {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.4);
}

/* Badges */
.finyx-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
    color: white;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.4);
}

.finyx-badge-pro {
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}
