/* Import Home Page styles for consistency */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #1a1a1a;
    color: #e0e0e0;
    min-height: 100vh;
}

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #1a1a1a, #2c3e50, #1a1a1a, #34495e);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: -1;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header & Nav (Matching Home) */
header {
    background: rgba(34, 34, 34, 0.9);
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo img { max-width: 150px; }
header nav { display: flex; gap: 10px; }

/* Reusable Button Styles from Home */
.btn {
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8em;
    padding: 8px 18px;
    transition: all 0.3s ease;
    border: none;
    color: white;
}
.btn.skins { background: linear-gradient(45deg, #ff4d4d, #b30000); }
.btn.bhop { background: linear-gradient(45deg, #ffcc33, #ff8c00); }
.btn.bans { background: linear-gradient(45deg, #2ecc71, #27ae60); }
.btn.discord { background: linear-gradient(45deg, #7289da, #5865f2); }
.logout-btn { background: #444; }
.btn:hover { transform: translateY(-2px); opacity: 0.9; color: white; }

/* Main Glassmorphism Container */
.main-content-box {
    background: rgba(34, 34, 34, 0.9);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

h2 {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    color: #ffffff;
}

/* Skin Cards */
.card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white;
    transition: 0.3s;
}

.card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.card-header {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.item-name {
    font-size: 0.9rem;
    margin: 0;
}

.skin-image {
    width: 80%;
    height: auto;
    padding: 15px 0;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}

/* Form Controls */
.form-control, .form-select {
    background-color: #222;
    border: 1px solid #444;
    color: white;
}

.form-control:focus {
    background-color: #333;
    color: white;
    border-color: #ff6f61;
    box-shadow: none;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 0;
    text-align: center;
    color: #888;
    margin-top: auto;
}