@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

/* Redesign to match index.php color scheme but with Minecraft accents */

.minecraft-container {
    font-family: 'Inter', sans-serif; /* Keep main font for readability */
    color: var(--text-white);
    max-width: 1200px;
    margin: 120px auto 80px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.mc-pixel-font {
    font-family: 'VT323', monospace !important;
}

.minecraft-title {
    text-align: center;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    font-family: 'VT323', monospace;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fff 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(4px 4px 0px rgba(0,0,0,0.5));
}

.mc-section {
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(42, 24, 89, 0.15);
    backdrop-filter: blur(10px);
    border: 3px solid #000;
    box-shadow: inset -4px -4px 0px rgba(0, 0, 0, 0.4), 
                inset 4px 4px 0px rgba(125, 64, 255, 0.3),
                0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Minecraft-style block decoration in corners */
.mc-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    opacity: 0.2;
    clip-path: polygon(0% 100%, 100% 100%, 100% 0%, 80% 0%, 80% 80%, 0% 80%);
}

.mc-section h2 {
    font-family: 'VT323', monospace;
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--primary-purple);
    text-shadow: 3px 3px 0px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.mc-section h2 i {
    font-size: 0.8em;
    opacity: 0.8;
}

.mc-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.mc-text {
    flex: 1;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.mc-text p {
    margin-bottom: 20px;
}

.mc-text strong {
    color: var(--primary-purple);
}

.mc-image-frame {
    width: 400px;
    height: 280px;
    border: 4px solid #000;
    box-shadow: 8px 8px 0px rgba(125, 64, 255, 0.2);
    position: relative;
    background: #1a1a2e;
}

.mc-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
    opacity: 0.8;
    transition: var(--transition);
}

.mc-image-frame:hover img {
    opacity: 1;
    transform: scale(1.02);
}

.mc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mc-card {
    background: rgba(255, 255, 255, 0.03);
    border: 3px solid #000;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: inset -3px -3px 0px rgba(0,0,0,0.2), inset 3px 3px 0px rgba(255,255,255,0.05);
}

.mc-card:hover {
    transform: translateY(-10px);
    background: rgba(125, 64, 255, 0.1);
    border-color: var(--primary-purple);
}

.mc-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(125, 64, 255, 0.15);
    border: 2px solid var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-purple);
    image-rendering: pixelated;
}

.mc-card h3 {
    font-family: 'VT323', monospace;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
}

.mc-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Custom Minecraft Button that fits the site style */
.btn-nox-mc {
    display: inline-block;
    font-family: 'VT323', monospace;
    background: var(--primary-purple);
    border: 4px solid #000;
    box-shadow: inset -4px -4px 0px rgba(0,0,0,0.3), inset 4px 4px 0px rgba(255,255,255,0.3);
    padding: 12px 40px;
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.1s;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}

.btn-nox-mc:hover {
    background: var(--secondary-purple);
    transform: scale(1.05);
}

.btn-nox-mc:active {
    transform: scale(0.95);
    box-shadow: inset 4px 4px 0px rgba(0,0,0,0.3), inset -4px -4px 0px rgba(255,255,255,0.3);
}

.mc-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.mc-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'VT323', monospace;
    font-size: 1.5rem;
    color: var(--text-white);
}

.mc-list li i {
    color: #55ff55;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .mc-content {
        flex-direction: column;
        text-align: center;
    }
    .mc-image-frame {
        width: 100%;
        max-width: 500px;
    }
    .mc-list {
        grid-template-columns: 1fr;
    }
}
