body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: rgb(0,0,0);
    color: white;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    background: #1a1a1a;
    position: sticky;
    top: 0;
    font-size: 20px;
    border-radius: 3px;
}

.navbar a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.navbar a:hover {
  color: #ef4444;
}

/* Hero */
.hero {
    height: 300px;
    background: url('banner.jpg') center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
}

.line1 {
    font-size: 42px;
    font-weight: bold;
    margin-left: 3ch;
    text-shadow: 0 0 10px rgba(0,0,0,1);

}

.line2 {
    font-size: 40px;
    color: black;
    text-shadow: 0 0 5px #c084fc, 0 0 10px #c084fc;
    animation: glow 2s infinite alternate;
    margin-left: 6ch;
}

/* Glow animasyonu */
@keyframes glow {
    from {
        text-shadow: 0 0 3px #c084fc, 0 0 10px #c084fc;
    }
    to {
        text-shadow: 0 0 6px #e9d5ff, 0 0 20px #e9d5ff;
    }
}

/* IP + buton yan yana */
.ip-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Kopyala butonu */
.copy-btn {
    padding: 6px 12px;
    background: rgba(0,0,0,0.6);
    border: 1px solid #c084fc;
    color: white;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.copy-btn:hover {
    background: #c084fc;
    color: black;
}

/* Kopyalandı mesajı */
#copied-msg {
    margin-top: 10px;
    font-size: 14px;
    color: #22c55e;
    opacity: 0;
    transition: 0.3s;
    font-weight: bold;
}


.news {
    padding: 40px;
}

.news h2 {
    margin-bottom: 20px;
}

.card {
    background: #1e293b;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    width: 50%;
}

.announcement {
    background: #111;
    border-left: 4px solid red;
    padding: 15px;
    margin: 10px;
    color: #fff;
    border-radius: 10px;
    width: 50%;
}
