* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #0b0b0b;
    color: #e0e0e0;
    font-family: 'Cinzel', serif;
}

/* Layout */
.page {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 10px;
}

/* Sprite stacks */
.sprite-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sprite-stack.left {
    margin-right: 25px;
}

.sprite-stack.right {
    margin-left: 25px;
}

/* Sprite boxes */
.sprite {
    width: 160px;
    background: #1b1b1b;
    border: 2px solid #3a3a3a;
    border-radius: 6px;
    padding: 10px;
    box-shadow: inset 0 0 5px #000, 0 4px 8px rgba(0,0,0,0.4);
    opacity: 0.9;
    animation: float 4s ease-in-out infinite;
    transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.sprite:hover {
    filter: drop-shadow(0 0 12px rgba(255, 152, 0, 0.8));
    transform: scale(1.05);
    box-shadow: 0 0 12px #ff9800, inset 0 0 8px #000;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Main OSRS-style panel */
.panel {
    max-width: 720px;
    background: #1b1b1b;
    border: 3px solid #3a3a3a;
    border-radius: 6px;
    box-shadow: inset 0 0 8px #000, 0 4px 15px rgba(0,0,0,0.6);
    padding: 25px;

    /* Stone-style texture */
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.02),
        rgba(255,255,255,0.02) 1px,
        transparent 1px,
        transparent 4px
    );
}

/* Header */
.panel-header {
    text-align: center;
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
}

.panel-header h1 {
    color: #ffb300;
    margin: 0;
    font-size: 36px;
}

.panel-header p {
    font-size: 14px;
    color: #ccc;
}

/* Sections */
.panel-section {
    margin-top: 25px;
}

.panel-section h2 {
    font-size: 18px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

/* Services */
.services {
    list-style: none;
    padding: 0;
}

.services li {
    background: #181818;
    padding: 10px;
    margin-bottom: 8px;
    border-left: 4px solid #ff9800;
}

/* Requirements Info Box */
.requirements {
    background: #1f1f1f;
    border: 1px solid #444;
    padding: 15px;
    border-left: 4px solid #ff9800;
    border-radius: 4px;
    margin-top: 20px;

    /* Pulse animation */
    animation: pulse-requirements 2.5s infinite;
}

.requirements p {
    margin: 0;
    line-height: 1.5;
    font-size: 14px;
    color: #f0f0f0;
}

@keyframes pulse-requirements {
    0%, 100% { box-shadow: 0 0 5px #ff9800; }
    50% { box-shadow: 0 0 15px #ff9800; }
}

/* Form */
label {
    display: block;
    margin-top: 15px;
    font-size: 13px;
}

input, select, textarea {
    width: 100%;
    margin-top: 5px;
    padding: 8px;
    background: #0f0f0f;
    border: 1px solid #333;
    color: #fff;
    font-family: Arial, sans-serif;
}

button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background: linear-gradient(#ffb300, #e68900);
    border: 1px solid #000;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    filter: brightness(1.1);
}

/* Discord Button Glow + Hover Animation */
.discord-button {
    display: block;
    text-align: center;
    margin-top: 15px;
    padding: 10px;
    background: #5865F2;
    color: #fff;
    text-decoration: none;
    font-family: Arial, sans-serif;
    border-radius: 4px;

    /* Pulse animation */
    animation: pulse-discord 2.5s infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.discord-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px #5865F2, 0 0 15px #5865F2 inset;
}

@keyframes pulse-discord {
    0%, 100% { box-shadow: 0 0 5px #5865F2; }
    50% { box-shadow: 0 0 18px #5865F2; }
}

/* Footer */
.panel-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
}

.disclaimer {
    color: #aaa;
    font-size: 11px;
    margin-top: 10px;
}

/* Veteran info */
.veteran-info {
    color: #ffd700;
    font-weight: bold;
    margin-top: 10px;
}

/* Mobile */
@media (max-width: 900px) {
    .sprite-stack {
        display: none;
    }
}
