/* Global Styles */
* {
    font-family: 'Cascadia Code', 'Courier New', monospace;
}

body {
    min-height: 100vh;
    padding-bottom: 50px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    color: #e0e0e0;
}

h1, h2, h3, h4, .subtitle, .wool-badge, .card-header {
    font-family: 'Minecraft', sans-serif !important;
}

/* Container Overrides */
.container {
    padding-top: 30px;
}

.container-home {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Navbar Styles */
.fp-navbar {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.98), rgba(25, 25, 55, 0.95));
    border-bottom: 2px solid #4a5568;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.fp-navbar .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
}

.fp-navbar .nav-link {
    color: #e0e0e0;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 8px 14px;
    border-radius: 999px;
    transition: all 0.2s;
}

.fp-navbar .nav-link:hover {
    color: #667eea;
    background-color: rgba(102, 126, 234, 0.15);
}

.fp-navbar .nav-link.update-link {
    color: #00ff88;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.4);
    background-color: rgba(0, 255, 136, 0.1);
}

.fp-navbar .navbar-nav {
    gap: 6px;
}

.fp-navbar .navbar-collapse {
    justify-content: center;
}

/* Card Styles */
/* Base Card Style (from index.html) */
.card {
    transition: all 0.3s;
    border: 3px solid;
    cursor: pointer;
    background-color: rgba(30, 30, 50, 0.9);
    border-color: #4a5568;
    color: #e0e0e0;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-color: #667eea;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Specific Card Styles */
.recipe-card, .command-card, .items-card, .content-card {
    margin-bottom: 20px;
    border: 3px solid;
    transition: all 0.3s;
    background-color: rgba(30, 30, 50, 0.95);
    border-color: #4a5568;
    color: #e0e0e0;
    width: 100%;
}

.recipe-card, .items-card, .command-card {
    height: 100%;
}

.content-card {
    margin-bottom: 30px;
    border: 2px solid;
    border-radius: 10px;
    overflow: hidden;
}

.recipe-card .card-body, .command-card .card-body, .items-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.recipe-card:hover, .command-card:hover, .items-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Buttons */
.btn-back {
    margin-bottom: 20px;
    background-color: #2d3748;
    border-color: #667eea;
    color: #f7fafc;
}

.btn-back:hover {
    background-color: #4a5568;
    border-color: #764ba2;
    color: #fff;
}

.download-btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

/* Badges and Tags */
.wool-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.material-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Lists */
.item-list {
    list-style: none;
    padding-left: 0;
}

.item-list li {
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: all 0.2s;
    background-color: rgba(102, 126, 234, 0.2);
}

.item-list li:hover {
    background-color: rgba(102, 126, 234, 0.3);
}

/* Recipe List Specifics */
.recipe-list.item-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Forged List Specifics */
.forged-list.item-list li {
    padding: 10px 15px;
    margin-bottom: 8px;
}

.forged-list.item-list li:hover {
    transform: translateX(10px);
}

.forged-list.item-list li::before {
    content: "⚔️ ";
    margin-right: 8px;
}

.tp-list {
    list-style: none;
    padding-left: 0;
}

.tp-list li {
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    transition: all 0.2s;
    background-color: rgba(102, 126, 234, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tp-list li:hover {
    transform: translateX(5px);
    background-color: rgba(102, 126, 234, 0.3);
}

.changelog-list li {
    margin-bottom: 8px;
}

/* Typography & Misc */
.subtitle {
    font-size: 0.9rem;
    opacity: 0.8;
}

h1 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 30px;
}

.version-link {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
}

.version-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

.note-box {
    border: 3px solid;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    background-color: rgba(30, 30, 50, 0.9);
    border-color: #ffc107;
}

.recipe-materials {
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.recipe-arrow {
    color: #667eea;
    font-size: 28px;
    margin: 10px 0;
    display: block;
    text-align: center;
}

.recipe-result {
    font-weight: bold;
    color: #b794f4;
    display: block;
    text-align: center;
    margin-top: 5px;
}

.item-name {
    font-weight: normal;
    flex: 1;
}

.tp-command {
    font-family: 'Courier New', monospace;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    font-size: 0.95rem;
    color: #00ff41;
    font-weight: bold;
    transition: all 0.2s;
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.tp-command:hover {
    background-color: rgba(102, 126, 234, 0.5);
    transform: scale(1.05);
}

/* Update Page Specifics */
.card-header {
    background-color: rgba(102, 126, 234, 0.2);
    border-bottom: 2px solid #4a5568;
    padding: 15px 25px;
    font-size: 1.5rem;
}

.card-body {
    padding: 25px;
}

.path-box {
    background-color: #0f0f23;
    padding: 15px;
    border-radius: 5px;
    font-family: monospace;
    border: 1px solid #4a5568;
    margin: 10px 0;
    word-break: break-all;
}

.command-box {
    background-color: #000;
    color: #00ff00;
    padding: 15px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    border: 1px solid #004400;
    text-align: center;
    margin: 20px 0;
    cursor: pointer;
}

hr {
    border-color: #4a5568;
    margin: 30px 0;
}

.text-accent {
    color: #667eea;
}

.row > .col-md-6 {
    display: flex;
}
