@charset "utf-8";
/* CSS Document */

body {
    background-color: #000;
    background-image: radial-gradient(circle at 50% 50%, #0a2f0a 0%, #000000 100%);
    background-attachment: fixed;
}

body{
	background:radial-gradient(circle at center, #051a05 0%, #000000 90%);
	color:white;
	font-family:"Courier New", Courier, monospace;
	margin:0;
	padding:20px;
}

h1 {
	text-align:center;
	color:#39FF14;
	text-shadow:0 0 15px #39FF14;
	text-transform: uppercase;
}

.konteynir {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
    width: 100%;
    max-width: 1400px; 
    margin: 0 auto;
    padding: 20px;
}

.uzayli-kart {
    flex: 0 0 calc(20% - 20px); 
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #1a5c1a;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    box-sizing: border-box; /
}

.uzayli-kart img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.uzayli-kart:hover {
	border-color: #39FF14;
	box-shadow:0 0 25px #39FF14;
	transform:translateY(-10px);
}

.uzayli-kart:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #39FF14;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
    cursor: pointer;
}

@keyframes yukarıKaydır {
	from{
		opacity:0;
		transform:translateY(30px);
	}
	to{
		opacity:1;
		transform: translateY(0);
	}
}

.uzayli-kart {
	animation: yukarıKaydır 1s ease-out;
}

