/* Survival Page - Minecraft Theme Styling */

/* Hide scrollbars on all browsers */
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

/* What You Get Card - Dark container wrapper */
.what-you-get-card {
    background: #13171e;
    border: 3px solid #252d3a;
    box-shadow: 0 4px 0 #080c12, 2px 2px 0 #080c12;
    padding: 20px;
    overflow: hidden;
}

/* What You Get Grid - Side-by-side Layout */
.what-you-get-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    align-items: start;
}

.what-you-get-image-container {
    width: 100%;
    overflow: hidden;
    border: 2px solid #252d3a;
}

.what-you-get-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.what-you-get-image-container:hover .what-you-get-image {
    transform: scale(1.08);
}

.what-you-get-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.what-you-get-content h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.1rem;
    color: #d4a847;
    margin: 0;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.6);
    line-height: 1.2;
}

.what-you-get-content > p {
    color: #c9d4e3;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* Specs Grid - 3 columns */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 8px 0;
}

.spec-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: linear-gradient(135deg, #1a1a0e 0%, #0d1117 100%);
    padding: 12px;
    border: 3px solid #8a6820;
    box-shadow: 3px 3px 0 #3d2e0a, 0 4px 8px rgba(0,0,0,0.4);
    transition: all 0.2s ease;
}

.spec-card:hover {
    border-color: #d4a847;
    box-shadow: 3px 3px 0 #3d2e0a, 0 6px 12px rgba(212, 168, 71, 0.25);
    transform: translateY(-2px);
}

.spec-label {
    font-family: 'Press Start 2P', cursive;
    font-size: 8px;
    color: #d4a847;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.spec-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #f5e6c8;
    font-weight: 700;
}

.what-you-get-actions {
    margin-top: 8px;
}

/* Button Styling */
.card-button {
    background: linear-gradient(135deg, #d4a847 0%, #8a6820 100%);
    color: #0d1117;
    border: 3px solid #3d2e0a;
    padding: 11px 26px;
    font-family: 'Press Start 2P', cursive;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 4px 4px 0 #3d2e0a, 0 8px 16px rgba(212, 168, 71, 0.35);
    border-radius: 0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card-button:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 0 #3d2e0a, 0 12px 24px rgba(212, 168, 71, 0.45);
    background: linear-gradient(135deg, #f5e6c8 0%, #d4a847 100%);
}

.card-button:active {
    transform: translateY(-1px);
    box-shadow: 4px 4px 0 #3d2e0a, 0 4px 8px rgba(212, 168, 71, 0.25);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .what-you-get-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .what-you-get-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .what-you-get-content {
        gap: 10px;
    }

    .what-you-get-content h2 {
        font-size: 0.9rem;
    }

    .what-you-get-content > p {
        font-size: 0.75rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .spec-card {
        padding: 10px;
    }

    .spec-label {
        font-size: 7px;
    }

    .spec-value {
        font-size: 0.8rem;
    }

    .card-button {
        padding: 10px 20px;
        font-size: 9px;
    }
}
