/* Genel Ayarlar */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    overflow-x: hidden;
    background-color: #000;
}

/* Dust 2 Arka Planı */
body {
    background: url('nexusbackground.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Karartma Katmanı */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.main-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    padding-bottom: 50px;
    color: white;
}

/* Logo - ÇOK DAHA BÜYÜK ve NEFES ALAN */
.main-logo {
    max-width: 400px; /* Buradan büyüklüğü ayarlayabilirsin (eski: 200px) */
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    animation: breath 3s ease-in-out infinite;
}

@keyframes breath {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(0, 123, 255, 0.4)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 25px rgba(0, 123, 255, 0.9)); transform: scale(1.03); }
}

/* İçerik */
.content h1 {
    font-size: 3rem;
    margin: 10px 0;
    letter-spacing: 3px;
    font-weight: 900;
}

.content p {
    color: #bbb;
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto 40px auto;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* IP Paneli - Dikey ve Sade */
.ip-panel {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 45px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.ip-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ip-text {
    font-size: 1.6rem;
    font-weight: bold;
    color: #ffcc00;
    font-family: monospace;
}

.copy-icon {
    font-size: 1.3rem;
    color: #888;
    cursor: pointer;
    transition: 0.3s;
}

.copy-icon:hover { color: #fff; }

/* Bağlan Butonu - Tam yeşil ve parlak */
.btn-join {
    padding: 12px 35px;
    border-radius: 25px;
    border: none;
    background: #28a745;
    color: white !important;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: greenGlow 2s infinite;
}

@keyframes greenGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(40, 167, 69, 0.6); }
    50% { box-shadow: 0 0 30px rgba(40, 167, 69, 1); }
}

/* Sosyal Butonlar - RENKLİ VE PARLAK */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 350px;
}

.social-btn {
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    color: white !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn i { font-size: 1.3rem; }

/* Üstüne gelince parlayan renkler */
.discord:hover { background: #7289da; border-color: #7289da; box-shadow: 0 0 20px rgba(114, 137, 218, 0.5); }
.instagram:hover { background: #e1306c; border-color: #e1306c; box-shadow: 0 0 20px rgba(225, 48, 108, 0.5); }
.tiktok:hover { background: #000; border-color: #ff0050; box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }