* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: #00ff00;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    padding: 2rem 0;
    background: radial-gradient(circle at center, #003300 0%, #000000 70%);
    border-bottom: 2px solid #00ff00;
}

header h1 {
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #00ff00, #33ff33, #00ff00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
}

.monster-logo {
    display: inline-flex;
    align-items: center;
    margin-right: -0.1rem;
}

.monster-logo img {
    filter: drop-shadow(0 0 10px #00ff00) drop-shadow(0 0 20px #00ff00);
}

@keyframes energyPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px #00ff00) drop-shadow(0 0 20px #00ff00);
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 15px #00ff00) drop-shadow(0 0 30px #00ff00) drop-shadow(0 0 40px #33ff33);
        transform: scale(1.05);
    }
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.8;
    font-style: italic;
}

nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 0;
    background: #111111;
    border-bottom: 1px solid #333333;
}

.tab-button {
    background: linear-gradient(135deg, #222222, #444444);
    color: #00ff00;
    border: 2px solid #00ff00;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-button:hover {
    background: linear-gradient(135deg, #003300, #006600);
    box-shadow: 0 0 15px #00ff00;
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(135deg, #00ff00, #33ff33);
    color: #000000;
    box-shadow: 0 0 20px #00ff00;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    flex: 1;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 10px #00ff00;
}

.tab-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Ranking Tab Specific Styles */
.ranking-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.control-button {
    background: linear-gradient(135deg, #00ff00, #33ff33);
    color: #000000;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.control-button:hover {
    background: linear-gradient(135deg, #33ff33, #66ff66);
    box-shadow: 0 0 15px #00ff00;
    transform: translateY(-2px);
}

#sortBy, #sortDirection {
    background: #222222;
    color: #00ff00;
    border: 2px solid #00ff00;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#sortBy:hover, #sortDirection:hover {
    border-color: #33ff33;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

#sortBy:focus, #sortDirection:focus {
    outline: none;
    border-color: #33ff33;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.5);
}



/* Mickles List Styles */
.mickles-list {
    display: grid;
    gap: 1.5rem;
}

/* Pickle Image Styles */
.pickle-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    border: 3px solid #333333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: block;
    margin: 1rem auto;
}

.pickle-image.rating-excellent {
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.pickle-image.rating-good {
    border-color: #66ff66;
    box-shadow: 0 0 15px rgba(102, 255, 102, 0.3), 0 4px 10px rgba(0, 0, 0, 0.3);
}

.pickle-image.rating-average {
    border-color: #ffff00;
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.3);
}

.pickle-image.rating-poor {
    border-color: #ff9966;
    box-shadow: 0 0 8px rgba(255, 153, 102, 0.15), 0 4px 6px rgba(0, 0, 0, 0.3);
}

.pickle-image.rating-terrible {
    border-color: #ff6666;
    box-shadow: 0 0 5px rgba(255, 102, 102, 0.1), 0 4px 4px rgba(0, 0, 0, 0.3);
}

.no-mickles {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.7;
    padding: 3rem;
}

.mickle-card {
    background: linear-gradient(135deg, #111111, #222222);
    border: 2px solid #333333;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.mickle-card:hover {
    border-color: #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
    transform: translateY(-2px);
}

.mickle-card.recommended {
    border-color: #00ff00;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.1);
}

.mickle-card.not-recommended {
    border-color: #ff6666;
    box-shadow: 0 0 10px rgba(255, 102, 102, 0.1);
}

.mickle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mickle-header h3 {
    color: #00ff00;
    font-size: 1.3rem;
    margin: 0;
}

.mickle-score {
    background: linear-gradient(135deg, #00ff00, #33ff33);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.mickle-date {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.mickle-monsters,
.mickle-notes {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.mickle-monsters strong,
.mickle-notes strong {
    color: #00ff00;
}

.mickle-recommendation {
    margin-bottom: 1rem;
}

.recommendation-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.recommendation-badge.recommended {
    background: linear-gradient(135deg, #00ff00, #33ff33);
    color: #000000;
}

.recommendation-badge.not-recommended {
    background: linear-gradient(135deg, #ff6666, #ff9999);
    color: #000000;
}



@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
        flex-direction: row;
        gap: 0.1rem;
    }

.monster-logo img {
    width: 35px;
    height: 45px;
}

    nav {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .tab-button {
        width: 200px;
    }

    main {
        padding: 2rem 1rem;
    }

    .tab-content h2 {
        font-size: 2rem;
    }

    .tab-content p {
        font-size: 1rem;
    }

    .ranking-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .monster-checkboxes {
        grid-template-columns: 1fr;
    }

    .form-buttons {
        flex-direction: column;
    }

    .mickle-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    footer .disclaimer {
        font-size: 0.8rem;
        text-align: center;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #000000, #111111);
    border-top: 2px solid #00ff00;
    padding: 2rem 1rem;
    margin-top: auto;
}

.disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.disclaimer strong {
    color: #00ff00;
}