:root {
    --bg-blue: #2c00e0;
    --near-black: #121212;
    --accent-blue: #472FFF;
    --text-light: #EAEAEA;
    --text-dark: #121212;
    --border-color: #333333;
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Roboto', sans-serif;
}

/* Page Hero */
.page-hero {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 3rem;
}
.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
}
.page-hero p {
    font-size: 1.2rem;
     color: #808080;
}

/* Robots Container */
.robots-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 0 2rem 4rem 2rem;
}

/* Robot Card */
.robot-card {
    display: flex;
    flex-direction: column;
    background-color: var(--near-black);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    padding: 1rem;
    gap: 1rem;
}

.robot-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.robot-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.robot-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
}

.robot-season {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-blue);
}

.robot-description {
    font-size: 1rem;
    color: var(--text-subtle);
}

/* Resource Buttons */
.robot-resources {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.resource-button {
    background-color: var(--accent-blue);
    color: var(--near-black);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.resource-button:hover:not(.disabled) {
    background-color: #2868c1;
    transform: scale(1.05);
}
.resource-button.disabled {
    background-color: #444;
    color: #888;
    cursor: not-allowed;
}

/* Responsive Layout */
@media(min-width: 768px) {
    .robot-card {
        flex-direction: row;
    }
    .robot-image {
        width: 40%;
        height: auto;
    }
    .robot-info {
        width: 60%;
        padding-left: 1.5rem;
    }
}

/* Footer */
.site-footer-bottom {
    padding: 2rem;
    background-color: var(--near-black);
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-subtle);
}
.site-footer-bottom .social-icon img {
    width: 32px;
    height: 32px;
}
