/* Custom Dark Gaming Theme */
:root {
    --bg-main: #0a0b0e;
    --card-bg: #14171f;
    --card-border: #232836;
    --accent-red: #ff2a4b;
    --accent-yellow: #ffb800;
    --text-white: #ffffff;
    --text-muted: #8e99a8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

/* App Container for Mobile View */
.app-container {
    width: 100%;
    max-width: 480px;
    background-color: #0f1218;
    min-height: 100vh;
    border-left: 1px solid var(--card-border);
    border-right: 1px solid var(--card-border);
    padding-bottom: 30px;
}

/* Header Banner */
.header-banner {
    background: linear-gradient(135deg, #b91c1c, #450a0a);
    padding: 22px 16px;
    text-align: center;
    border-bottom: 3px solid var(--accent-yellow);
    box-shadow: 0 4px 20px rgba(255, 42, 75, 0.3);
}

.header-banner h1 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.header-banner p {
    color: var(--accent-yellow);
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}

/* Main Content Wrapper */
.content-wrapper {
    padding: 16px;
}

.section-box {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-yellow);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 8px;
}

.section-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* Vertical Product Cards (Title -> Image -> Price -> Buy Now Button) */
.product-card-vertical {
    background: #1a1e29;
    border: 1px solid #2a3142;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-title-vertical {
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-image-container {
    width: 100%;
    max-height: 200px;
    background-color: #0d0f14;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
}

.product-image {
    max-width: 100%;
    max-height: 180px;
    object-fit: contain;
    border-radius: 6px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
}

.product-tag {
    background: rgba(255, 42, 75, 0.2);
    color: var(--accent-red);
    font-size: 10px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
}

.product-price {
    font-size: 16px;
    color: #4ade80;
    font-weight: 800;
}

.btn-buy-now {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #ff5722, #e64a19);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
    letter-spacing: 0.5px;
}

.btn-buy-now:active {
    transform: scale(0.98);
}

/* Redeem Code Cards */
.code-card {
    background: #090a0d;
    border: 1px dashed #374151;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.code-text {
    font-family: monospace;
    font-size: 16px;
    font-weight: bold;
    color: #4ade80;
    letter-spacing: 1px;
}

.btn-copy {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-copy:active {
    transform: scale(0.95);
    background: #1d4ed8;
}

.btn-redeem-main {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: #000;
    text-align: center;
    padding: 12px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 12px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Footer */
.footer-text {
    text-align: center;
    font-size: 10px;
    color: var(--text-muted);
    padding: 10px 20px;
    line-height: 1.4;
}
/* Information Content Styling */
.info-content {
    line-height: 1.6;
}

.info-text {
    font-size: 13px;
    color: #d1d5db;
    margin-bottom: 10px;
}

.info-steps, .info-rules {
    font-size: 13px;
    color: #9ca3af;
    padding-left: 18px;
    margin-top: 8px;
}

.info-steps li, .info-rules li {
    margin-bottom: 8px;
}

.info-rules li strong {
    color: var(--accent-yellow);
}
/* Product Image Container Fix */
.product-image-container {
    width: 100% !important;
    max-width: 100% !important;
    height: 200px !important; /* Fixed box height */
    background-color: #0d0f14;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden !important; /* Extra part ko bahar nahi nikalne dega */
    box-sizing: border-box;
}

/* Image Size Control */
.product-image {
    max-width: 100% !important;
    max-height: 180px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important; /* Image ki shape kharab nahi hone dega */
    border-radius: 6px;
    display: block;
}