/* 1. Define the custom font (looking out one folder to the main directory) */
@font-face {
    font-family: 'Pricedown';
    src: url('../Pricedown.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* 2. Page Reset & Background Gradient */
body {
    font-family: 'Pricedown', sans-serif;
    background: linear-gradient(135deg, #e0f2fe, #fee2e2);
    min-height: 100vh;
    margin: 0; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscription-container {
    width: 100%;
    max-width: 900px;
    padding: 20px;
    box-sizing: border-box;
}

/* 3. Title Styling */
.gta-title {
    font-size: 4.5rem;
    color: #1e293b;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
}

/* 4. Layout Layout for Tier Cards */
.tier-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 5. Base Card Styling */
.card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 30px;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h2 {
    font-size: 2.2rem;
    margin: 0 0 10px 0;
    color: #0f172a;
}

.price {
    font-size: 2.8rem;
    color: #0f172a;
    margin-bottom: 20px;
}

.price span {
    font-size: 1.2rem;
    font-family: sans-serif; 
    font-weight: bold;
}

/* Normal typography fallback for clear readability */
.features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    font-family: sans-serif; 
    color: #475569;
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
}

.features li {
    margin-bottom: 12px;
}

/* 6. Special border for Batarong Plus card */
.plus-tier {
    border: 3px solid #1e293b;
    position: relative;
}

/* 7. Image button container styling (button.png is also assumed to be in the main folder) */
.image-submit-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    transition: filter 0.1s ease, transform 0.1s ease;
}

.image-submit-btn img {
    display: block;
    max-width: 100%;
    height: auto;
}

.image-submit-btn:hover {
    filter: brightness(1.1);
}

.image-submit-btn:active {
    transform: scale(0.96);
}
