/*
Theme Name: VortixGalaxy
Author: Your Name
Description: Custom Minecraft Server Theme
Version: 1.0
*/

body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #0f0f1a, #1b1b3a);
    color: white;
}

a {
    color: #00f7ff;
    text-decoration: none;
}

header {
    text-align: center;
    padding: 100px 20px;
    background: url('https://images.unsplash.com/photo-1446776811953-b23d57bd21aa') no-repeat center;
    background-size: cover;
}

header h1 {
    font-size: 60px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px cyan;
}

nav {
    background: #111;
    padding: 15px;
    text-align: center;
}

nav a {
    margin: 0 15px;
    font-weight: bold;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 50px 0;
}

.rank-card {
    background: #1f1f2e;
    border-radius: 15px;
    padding: 30px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,255,255,0.2);
    transition: 0.3s;
}

.rank-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px cyan;
}

.rank-title {
    font-size: 28px;
    margin-bottom: 10px;
}

.rank-price {
    font-size: 22px;
    color: #00f7ff;
}

.button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: cyan;
    color: black;
    border-radius: 30px;
    font-weight: bold;
}