:root {
    --primary-color: #FFD700;
    --secondary-color: #1a1b26;
    --background-color: #13141f;
    --text-color: #ffffff;
    --border-color: #2a2b36;
    --hover-color: #FFB700;
    --gradient-start: #FFD700;
    --gradient-end: #FFA500;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    line-height: 1.6;
}

/* Header yüksekliğini sabit tutalım */
.header {
    height: 80px;
    background-color: rgba(26, 27, 38, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 500;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.nav-links a i {
    font-size: 1rem;
    opacity: 0.9;
}

.nav-links a:hover {
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-1px);
}

.nav-links a.active {
    color: var(--primary-color);
    background: rgba(255, 215, 0, 0.08);
    font-weight: 600;
}

.nav-links a.active i {
    color: var(--primary-color);
}

/* Responsive navbar */
@media (max-width: 1024px) {
    .nav-links {
        gap: 0.3rem;
    }

    .nav-links a {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 1rem;
    }

    .user-info-header {
        padding: 0.4rem 0.8rem;
        margin-left: 0.5rem;
    }

    .user-details-header {
        display: none;
    }

    .mc-avatar {
        width: 28px;
        height: 28px;
    }

    .logout-btn {
        font-size: 1rem;
        padding: 0.3rem;
    }
}

/* Hero Container */
.hero-container {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    overflow: hidden;
    margin-top: -80px;
    padding-top: calc(80px + 6rem);
    background: linear-gradient(rgba(19, 20, 31, 0.85), rgba(19, 20, 31, 0.95)),
                url('../images/hero-bg.jpg') center/cover fixed;
}

/* Köşelerden ortaya geçiş efekti için overlay */
.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(19, 20, 31, 0.3) 50%,
        rgba(19, 20, 31, 0.8) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Particles katmanının z-index'ini güncelle */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.6;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: transparent;
}

/* Hero içeriğinin z-index'ini güncelle */
.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.hero-logo {
    margin-bottom: 3rem;
    animation: floatAnimation 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
}

.hero-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.2));
}

/* IP Container */
.ip-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.server-ip {
    flex: 1;
    background: rgba(26, 27, 38, 0.95);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.server-ip::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: 0.5s;
}

.server-ip:hover::before {
    left: 100%;
}

.ip-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    width: 100%;
}

.server-ip-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
    text-align: center;
    flex: 1;
}

.copy-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.server-ip:hover .copy-icon {
    opacity: 1;
    transform: scale(1.1);
}

.server-ip.copied {
    border-color: var(--primary-color);
}

.server-ip.copied .copy-icon {
    color: #00C851;
    opacity: 1;
}

/* Discord Button */
.discord-btn {
    width: 50px;
    height: 50px;
    background: #5865F2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.discord-btn i {
    font-size: 1.5rem;
    color: white;
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(88, 101, 242, 0.4);
}

.player-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: var(--secondary-color);
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Kullanıcı Menüsü */
.user-menu {
    position: relative;
    margin-left: 1rem;
    z-index: 1001;
}

.user-trigger {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    user-select: none;
}

.user-trigger:hover,
.user-trigger.active {
    background: rgba(255, 255, 255, 0.1);
}

.mc-avatar {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
}

.user-popup {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 300px;
    background: rgba(26, 27, 38, 0.98);
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
}

.user-popup.active {
    display: block;
}

.user-popup::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 12px;
    height: 12px;
    background: rgba(26, 27, 38, 0.98);
    transform: rotate(45deg);
    border-left: 1px solid rgba(255, 215, 0, 0.1);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

/* Popup içeriği için ek stiller */
.user-popup .user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.user-popup .mc-avatar-large {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
}

.user-popup .user-details {
    flex: 1;
}

.user-popup .user-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.3rem;
}

.user-popup .user-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.user-popup .popup-btn {
    padding: 0.8rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.user-popup .popup-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-popup .popup-btn.logout {
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
}

.user-popup .popup-btn.logout:hover {
    background: rgba(255, 0, 0, 0.2);
}

/* İçerik Bölümü */
.content-section {
    padding: 4rem 2rem;
    margin-top: 2rem;
    position: relative;
    background: var(--background-color);
}

/* Yumuşak geçiş için üst kısma gradient ekleyelim */
.content-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--background-color)
    );
    pointer-events: none;
}

.content-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    position: relative;
}

/* Blog Kartları */
.blog-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.section-title {
    background: linear-gradient(90deg, var(--primary-color), var(--hover-color));
    margin: 0;
    padding: 1.2rem;
    text-align: center;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 800;
    border: none;
    border-radius: 20px;
}

.section-title i {
    background: rgba(26, 27, 38, 0.2);
    padding: 0.8rem;
    border-radius: 12px;
    color: var(--secondary-color);
}

.blog-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.author-name {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
}

.read-more {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Son Kayıt Olan Kullanıcılar */
.latest-users {
    background: rgba(26, 27, 38, 0.95);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: fit-content;
}

.user-cards {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.user-cards::-webkit-scrollbar {
    display: none;
}

.user-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.user-card:hover {
    background: rgba(255, 215, 0, 0.03);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.user-avatar {
    width: 45px;
    height: 45px;
    position: relative;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.user-info {
    flex: 1;
    min-width: 0;
}

.user-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.join-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

.join-date i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.user-count {
    position: absolute;
    right: 1rem;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .content-container {
        grid-template-columns: 1fr;
    }
    
    .sidebar-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 2rem 1rem;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 1.2rem;
    }
    
    .blog-title {
        font-size: 1rem;
    }
    
    .blog-excerpt {
        font-size: 0.8rem;
    }
    
    .user-card {
        padding: 0.8rem;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
    }
    
    .sidebar-content {
        grid-template-columns: 1fr;
    }
}

/* Animasyonlar */
@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Blog Detay Sayfası */
.blog-detail-container {
    max-width: 1000px;
    margin: 100px auto 50px;
    padding: 0 2rem;
}

.blog-detail {
    background: rgba(26, 27, 38, 0.95);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.blog-detail .blog-header {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(
        to bottom,
        rgba(26, 27, 38, 0.95),
        rgba(26, 27, 38, 0.8)
    );
}

.blog-detail .blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.blog-detail .blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.blog-detail .blog-meta i {
    color: var(--primary-color);
}

.blog-detail .blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    margin: 0;
    padding: 0 1rem;
}

.blog-detail .blog-image {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.blog-detail .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail .blog-content {
    padding: 3rem 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.blog-detail .blog-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.blog-detail .blog-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-detail .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.blog-detail .author-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.blog-detail .author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.blog-detail .author-role {
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .header {
        padding: 0.8rem 1rem;
    }

    .nav-logo {
        height: 35px;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .blog-detail-container {
        margin: 80px auto 30px;
        padding: 0 1rem;
    }

    .blog-detail .blog-header {
        padding: 2rem 1rem;
    }

    .blog-detail .blog-title {
        font-size: 1.8rem;
    }

    .blog-detail .blog-image {
        height: 250px;
    }

    .blog-detail .blog-content {
        padding: 2rem 1.5rem;
        font-size: 1rem;
    }

    .blog-detail .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .hero-container {
        padding: 4rem 1rem;
        margin-top: -60px;
    }

    .hero-logo img {
        max-width: 300px;
    }

    .ip-container {
        flex-direction: row;
        padding: 0;
    }
}

/* Coins stili */
.coins {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.coin-icon {
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coin-icon::before {
    content: '\f51e'; /* Font Awesome coin ikonu */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
}

/* Header'daki küçük coin ikonu */
.coins-header .coin-icon::before {
    font-size: 0.85rem;
}

/* Diğer yerlerdeki coin ikonları için özel boyutlar */
.case-price .coin-icon::before {
    font-size: 1.1rem;
}

.history-item .coin-icon::before {
    font-size: 0.9rem;
}

/* Header Kullanıcı Bilgileri */
.user-info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-left: 1rem;
}

.user-details-header {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.coins-header {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-color);
    font-size: 0.85rem;
}

.coins-header .coin-icon {
    width: 12px;
    height: 12px;
}

.username {
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.logout-btn {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    padding: 0.4rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.logout-btn:hover {
    color: #ff4444;
}

/* Son Alışverişler */
.latest-purchases {
    background: rgba(26, 27, 38, 0.95);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: fit-content;
}

.purchase-cards {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.purchase-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
}

.purchase-card:hover {
    background: rgba(255, 215, 0, 0.03);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.purchase-avatar {
    width: 45px;
    height: 45px;
    position: relative;
}

.purchase-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.purchase-info {
    flex: 1;
    min-width: 0;
}

.purchase-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.purchase-details {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.3rem;
}

.purchase-details i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

.purchase-price {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.purchase-price i {
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .purchase-card {
        padding: 0.8rem;
    }
    
    .purchase-avatar {
        width: 40px;
        height: 40px;
    }
    
    .purchase-details {
        flex-direction: column;
        gap: 0.3rem;
    }
}

/* Sağ Bölüm */
.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Son Kredi Yükleyenler */
.latest-transactions {
    background: rgba(26, 27, 38, 0.95);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.transaction-cards {
    padding: 1rem;
}

.transaction-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.05);
    transition: all 0.3s ease;
}

.transaction-card:last-child {
    margin-bottom: 0;
}

.transaction-card:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
    background: rgba(255, 215, 0, 0.02);
}

.transaction-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.transaction-user .user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.transaction-details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.transaction-details .username {
    font-weight: 600;
    color: var(--text-color);
}

.transaction-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.transaction-date i {
    margin-right: 0.3rem;
    color: var(--primary-color);
}

.transaction-amount {
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transaction-amount i {
    font-size: 0.8rem;
}

.no-transactions {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px dashed rgba(255, 215, 0, 0.1);
    margin: 1rem;
}

@media (max-width: 768px) {
    .transaction-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .transaction-user {
        flex-direction: column;
        gap: 0.5rem;
    }

    .transaction-amount {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section */
.hero-section {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(rgba(19, 20, 31, 0.8), rgba(19, 20, 31, 0.9)),
                url('../images/hero-bg.jpg') center/cover;
    margin-top: -20px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--ai-primary);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--ai-text);
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-buttons .ai-button.secondary {
    background: transparent;
    border: 2px solid var(--ai-primary);
    color: var(--ai-primary);
}

/* Server Stats */
.server-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
}

.stat-card {
    background: rgba(26, 27, 38, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.stat-card i {
    font-size: 2rem;
    color: var(--ai-primary);
}

.stat-info {
    text-align: left;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ai-text);
}

.stat-label {
    color: var(--ai-text);
    opacity: 0.7;
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--ai-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    transition: transform var(--ai-animation-normal) ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--ai-primary);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--ai-text);
}

.feature-card p {
    color: var(--ai-text);
    opacity: 0.8;
}

/* News Section */
.news-section {
    padding: 6rem 2rem;
    background: rgba(19, 20, 31, 0.5);
}

.news-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--ai-primary);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--ai-animation-normal) ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--ai-primary);
    font-size: 0.9rem;
}

.news-content h3 {
    margin: 1rem 0;
    color: var(--ai-text);
}

.news-content p {
    color: var(--ai-text);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--ai-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--ai-animation-normal) ease;
}

.read-more:hover {
    color: var(--ai-hover);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .server-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 300px;
    }
    
    .features-section,
    .news-section {
        padding: 4rem 1rem;
    }
} 

/* Coin İşlem Durumları */
.transaction-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.transaction-status.completed {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
}

.transaction-status.pending {
    background: rgba(255, 171, 0, 0.1);
    color: #ffab00;
}

.transaction-status.cancelled {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
}

.transaction-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.transaction-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Transaction Section Styles */
.transaction-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.transaction-section h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.transaction-section h3 i {
    color: var(--primary-color);
}

.transaction-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transaction-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.05);
}

.transaction-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
    background: rgba(255, 215, 0, 0.02);
}

.transaction-info {
    flex: 1;
}

.transaction-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.transaction-amount {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.transaction-amount i {
    font-size: 0.9rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.5);
}

.empty-state i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state p {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .transaction-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .transaction-amount {
        width: 100%;
        justify-content: center;
    }
    
    .transaction-meta {
        align-items: center;
    }
} 

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.loader {
    text-align: center;
}

.loader img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--hover-color));
    animation: loading 2s ease infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes loading {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
} 