/* Free Credit Page Styles - Only unique styles for this page */

/* Override body background for free credit page */
body {
    background: linear-gradient(180deg, var(--deep-red) 0%, var(--text-dark) 100%) !important;
    color: white !important;
}


/* Header Section */
.free-credit-header {
    text-align: center;
    padding: 3rem 0 2rem;
}

.header-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--deep-red);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 214, 10, 0.4);
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--golden);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.page-link {
    color: var(--golden);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.page-link:hover {
    color: var(--golden-dark);
    text-decoration: underline;
}

/* Hero Banner */
.promo-banner {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.banner-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
    display: block;
}

/* Code Sections */
.code-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 214, 10, 0.2);
}

.section-title {
    font-size: 1.8rem;
    color: var(--golden);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section-title::before {
    content: '⭐';
    font-size: 1.5rem;
}

.code-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--golden);
}

.code-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
}

.code-value {
    font-size: 1.1rem;
    color: var(--golden);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Kanit', sans-serif;
}

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

.code-details li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.code-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--golden);
    font-weight: bold;
}

/* Info Section */
.info-section {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
}

.info-section h2 {
    font-size: 2rem;
    color: var(--golden);
    margin-bottom: 2rem;
    text-align: center;
}

.info-content {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.info-content h3 {
    font-size: 1.6rem;
    color: var(--golden);
    margin: 2rem 0 1rem;
}

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

.info-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.info-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--golden);
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(255, 214, 10, 0.2) 0%, rgba(255, 195, 0, 0.2) 100%);
    border-left: 5px solid var(--golden);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.highlight-box p {
    margin: 0;
    font-weight: 600;
    color: white;
}

/* CTA Button */
.free-credit-cta-section {
    text-align: center;
    padding: 3rem 0;
}

.free-credit-cta-button {
    background: var(--gradient-red);
    color: white;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
    font-size: 1.3rem;
    font-family: 'Kanit', sans-serif;
}

.free-credit-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(230, 57, 70, 0.6);
}

/* Divider */
.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--golden) 50%, transparent 100%);
    margin: 3rem 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .free-credit-header {
        padding: 2rem 0 1rem;
    }

    .code-section,
    .info-section {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.4rem;
    }
}