/* SF Pro Variable Font */
@font-face {
    font-family: 'SF Pro';
    src: url('./assets/fonts/SF-Pro.woff2') format('woff2');
    font-weight: 100 900;
    font-stretch: 50% 200%;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400; /* SF Pro Medium */
    line-height: 1.21;
    letter-spacing: -0.05em;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 24px 12px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Unique Number Card */
.unique-number-card .stat-card {
    background: rgba(42, 42, 46, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

/* Daily Draw Banner */
.daily-banner {
    background: rgba(42, 42, 46, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 16px;
    border: 2px solid rgba(156, 247, 0, 0.25);
}

.daily-banner-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.daily-banner-title {
    font-size: 20px;
    font-weight: 760;
    font-stretch: expanded;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.daily-banner-title .accent {
    color: #b8ff1a;
}

.daily-banner-countdown {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.21;
    letter-spacing: -0.05em;
    color: #cdd3c7;
}

.daily-banner-countdown #dailyCountdown {
    display: block;            /* move time to next line */
    margin-top: 2px;
    color: #ffffff;            /* white */
    font-size: 1em;          /* 1.5x of label size */
    font-weight: 760;
    font-stretch: expanded;
}

.daily-banner-divider {
    height: 2px;
    width: calc(100% + 32px); /* extend through parent padding (16px on each side) */
    margin: 20px 0;
    margin-left: -16px;
    background: repeating-linear-gradient(
        90deg,
        rgba(156, 247, 0, 0.45) 0 14px,   /* dash length */
        transparent 14px 20px             /* gap length (bigger gaps) */
    );
}

.daily-banner-bottom {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: center;
}

.daily-banner-prize {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    background: rgba(42, 42, 46, 0.9);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 30px;
    font-weight: 760;
    font-stretch: expanded;
    color: #ffffff;
    letter-spacing: -0.03em;
}

.daily-banner-subtext {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.21;
    letter-spacing: -0.05em;
    color: #8e8e93;
}

@media (max-width: 375px) {
    .daily-banner-title { font-size: 18px; }
    .daily-banner-prize { font-size: 24px; }
}

.stat-card {
    background: rgba(42, 42, 46, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-label {
    font-size: 13px;
    font-weight: 400;
    color: #8e8e93;
    line-height: 1.3;
}

.stat-value {
    font-size: 36px;
    font-weight: 760;
    font-stretch: expanded;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

/* Progress Circle */
.progress-circle-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.progress-circle-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.progress-circle-title {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 760;
    font-stretch: expanded;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    padding-top: 16px;
    text-shadow: 0.6px 0 0 #9cf700, 0 0.6px 0 #9cf700, -0.6px 0 0 #9cf700, 0 -0.6px 0 #9cf700;
}

.progress-circle-prize {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 36px;
    font-weight: 760;
    font-stretch: expanded;
    line-height: 1.2;
    text-align: center;
    color: #0a0a0a;
    background: #9CF700;
    padding: 4px 8px;
    margin: 0;
    letter-spacing: -0.03em;
}

.progress-circle-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Progress SVG container */
#progressChart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.progress-center {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.user-avatar {
    width: 40px;

}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.progress-subscribers-count {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 72px;
    font-weight: 700;
    font-stretch: expanded;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -2px;
    margin: 0;
    padding: 0;
    text-shadow: 0.8px 0 0 #9cf700, 0 0.8px 0 #9cf700, -0.8px 0 0 #9cf700, 0 -0.8px 0 #9cf700;
}

.progress-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.21;
    letter-spacing: -0.05em;
    color: #8e8e93;
    text-align: center;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.action-btn {
    flex: 1;
    min-width: 0;
    background: rgba(42, 42, 46, 0.6);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 16px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #8e8e93;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.21;
    letter-spacing: -0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.action-btn:active {
    transform: scale(0.96);
    background: rgba(42, 42, 46, 0.8);
}

.action-btn svg,
.action-btn img {
    max-height: 32px;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    object-position: center;
}

.action-btn svg { 
    opacity: 0.8;
}

.action-btn span {
    line-height: 1.2;
    white-space: nowrap;
}

/* Subscription Text */
.subscription-text {
    font-size: 13px;
    font-weight: 400;
    color: #8e8e93;
    text-align: center;
    margin-top: 8px;
}

/* Subscription row alignment */
.subscription-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.subscription-row .subscription-text {
    margin-top: 0;
    text-align: left;
    font-size: 15px;
}

.subscription-row .rules-btn {
    width: auto;
}

/* Rules Button */
.rules-btn {
    width: 100%;
    background-color: #9cf700;
    border: none;
    border-radius: 9.815px;
    padding: 9px 10px;
    font-size: 15.815px;
    font-weight: 760;
    font-stretch: expanded;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 1.14;
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    box-shadow: inset 0 4px 36.5px 0 #FFFFFF;
}

.rules-btn:active {
    transform: scale(0.98);
    box-shadow: inset 0 4px 36.5px 0 #FFFFFF, 0 4px 16px rgba(197, 248, 42, 0.4);
}

/* Responsive adjustments */
@media (max-width: 375px) {
    .container {
        padding: 20px 16px 28px;
        gap: 20px;
    }
    
    .stat-value {
        font-size: 32px;
    }
    
    .progress-subscribers-count {
        font-size: 64px;
    }
    
    .prize-amount {
        font-size: 22px;
    }
    
    .action-btn {
        padding: 14px 14px;
        font-size: 11px;
    }
    
    .action-btn svg,
    .action-btn img {
        height: 24px;
    }
}

@media (min-width: 481px) {
    .container {
        padding: 32px 24px 40px;
    }
}

/* ============================================
   RULES SCREEN STYLES
   ============================================ */

/* Rules Screen Overlay */
.rules-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 1000;
    overflow-y: auto;
}

.rules-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
    background: #0a0a0a;
    min-height: 100vh;
}

/* Header */
.rules-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #0a0a0a;
    padding: 16px 16px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.back-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.back-btn:active {
    opacity: 0.6;
}

.rules-title {
    font-size: 20px;
    font-weight: 760;
    font-stretch: expanded;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin: 0;
}

/* Content */
.rules-content {
    padding: 16px 16px 32px;
}

.rules-section {
    margin-bottom: 24px;
}

.section-title {
    font-size: 24px;
    font-weight: 760;
    font-stretch: expanded;
    color: #9CF700;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.section-text {
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    letter-spacing: -0.02em;
    margin: 0 0 12px 0;
}

.section-text:last-child {
    margin-bottom: 0;
}

/* Tables */
.table-wrapper {
    margin: 12px 0;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(156, 247, 0, 0.5);
    -webkit-overflow-scrolling: touch;
}

/* Table Images */
.table-image-wrapper {
    margin: 12px 0;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-image {
    width: 130%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Per-table tuning to visually match font size between PNGs */
.table-image--3 {
    width: 100%;
}
.table-image--4 {
    width: 160%;
}

.rules-table {
    width: 100%;
    min-width: 750px;
    border-collapse: collapse;
    border: none;
}

.rules-table th {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: none;
    padding: 8px 10px;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.rules-table th:nth-child(2) {
    min-width: 120px;
}

.rules-table th:first-child {
    border-left: none;
}

.rules-table th:last-child {
    border-right: none;
}

.rules-table td {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: none;
    padding: 10px 10px;
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    letter-spacing: -0.02em;
}

.rules-table td:nth-child(2) {
    white-space: nowrap;
    min-width: 120px;
}

.rules-table th:nth-child(3),
.rules-table td:nth-child(3) {
    min-width: 160px;
}

.rules-table th:nth-child(4),
.rules-table td:nth-child(4) {
    min-width: 150px;
}

.rules-table td:first-child {
    border-left: none;
}

.rules-table td:last-child {
    border-right: none;
}

.rules-table tbody tr:last-child td {
    border-bottom: none;
}

/* Lists */
.rules-list {
    margin: 12px 0;
    padding-left: 20px;
    list-style: none;
}

.rules-list li {
    position: relative;
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.rules-list li:before {
    content: '—';
    position: absolute;
    left: -15px;
    color: #c5f82a;
    font-weight: 700;
}

/* Read Section */
.read-section {
    margin-top: 32px;
}

.read-progress {
    font-size: 17px;
    font-weight: 400;
    color: #8e8e93;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

/* Read Button */
.read-btn {
    width: 100%;
    background: #c5f82a;
    border: none;
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 760;
    font-stretch: expanded;
    color: #000000;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: inset 0 4px 36.5px 0 rgba(255, 255, 255, 0.4);
}

.read-btn:active {
    transform: scale(0.98);
    box-shadow: inset 0 4px 36.5px 0 rgba(255, 255, 255, 0.4), 
                0 4px 16px rgba(197, 248, 42, 0.4);
}

.read-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
}

/* Legal Info Card */
.legal-card {
    background: rgba(42, 42, 46, 0.6);
    border-radius: 24px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-card-title {
    font-size: 14px;
    font-weight: 400;
    color: #cdd3c7;
    margin-bottom: 16px;
}

.legal-card-button {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
}

.legal-card-button-text {
    display: block;
    font-size: 36px;
    font-weight: 760;
    font-stretch: expanded;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.05em;
    text-decoration: underline;
}

/* removed custom underline divider */

.legal-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.legal-footer-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.legal-footer-text {
    font-size: 14px;
    color: #cdd3c7;
}

/* Rules Screen Responsive */
@media (max-width: 375px) {
    .rules-content {
        padding: 14px 12px 28px;
    }
    
    .section-title {
        font-size: 23px;
    }
    
    .section-text {
        font-size: 15px;
    }
    
    .rules-table th {
        font-size: 11px;
        padding: 6px 7px;
    }
    
    .rules-table td {
        font-size: 11px;
        padding: 8px 7px;
    }
    
    .rules-list li {
        font-size: 15px;
    }
}

@media (min-width: 481px) {
    .rules-content {
        padding: 20px 24px 40px;
    }
}

/* ============================================
   INCREASE CHANCES SCREEN STYLES
   ============================================ */

/* Overlay */
.increase-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 1000;
    overflow-y: auto;
}

.increase-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
}

.increase-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #0a0a0a;
    padding: 16px 16px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.increase-title {
    font-size: 20px;
    font-weight: 760;
    font-stretch: expanded;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    margin: 0;
}

.increase-content {
    padding: 16px 16px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    /* Reserve space for fixed CTA + iOS safe area */
    padding-bottom: 220px;
    padding-bottom: calc(220px + constant(safe-area-inset-bottom));
    padding-bottom: calc(220px + env(safe-area-inset-bottom));
}

/* Hero Title */
.increase-hero-title {
    font-size: 36px;
    font-weight: 760;
    font-stretch: expanded;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 0.95;
}

.increase-hero-title span { display: inline-block; }

/* List */
.increase-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.increase-list-item { display: flex; align-items: center; gap: 14px; }
.increase-list-text { font-size: 18px; font-weight: 400; letter-spacing: -0.02em; }

/* Icons */
.icon-ticket {
    width: 26px;
    height: 26px;
    background-image: url('./assets/ticket.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: inline-block;
    flex-shrink: 0;
}

.icon-badge {
    width: 26px;
    height: 26px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.icon-badge--1 { background-image: url('./assets/1-point.svg'); }
.icon-badge--2 { background-image: url('./assets/2-point.svg'); }
.icon-badge--3 { background-image: url('./assets/3-point.svg'); }

/* Result Card */
.increase-result-card { margin-top: 6px; background: rgba(42, 42, 46, 0.8); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 24px; padding: 18px 18px 22px; }
.increase-result-sub { font-size: 20px; color: #ffffff; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 10px; }
.increase-result-sub #earnedTickets { font-weight: 760; }
.increase-result-value { font-size: 56px; font-weight: 760; font-stretch: expanded; letter-spacing: -0.03em; line-height: 0.95; }

/* Referral */
.increase-ref-section { margin-top: 8px; display: flex; flex-direction: column; gap: 14px; }
.increase-ref-label { font-size: 16px; color: #cdd3c7; }
.increase-ref-field { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: rgba(42, 42, 46, 0.8); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 14px; }
.increase-ref-text { font-size: 16px; color: #ffffff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.increase-ref-copy { 
    background: transparent; 
    border: 1px solid rgba(255, 255, 255, 0.16); 
    color: #fff; 
    min-width: 36px; 
    height: 36px; 
    border-radius: 10px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 6px;
    padding: 0 8px;
    cursor: pointer; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.increase-ref-copy:active { transform: scale(0.95); }
.increase-ref-copy__icon { 
    width: 20px; 
    height: 20px; 
    display: block; 
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Copied state */
.increase-ref-copy--copied {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    min-width: auto;
    padding: 0 18px;
}

.increase-ref-copy__text {
    font-size: 14px;
    font-weight: 500;
    color: #22c55e;
    white-space: nowrap;
    animation: fadeInScale 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* CTA */
/* Fixed bottom group (result + referral + CTA) */
.increase-bottom {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
    padding-bottom: calc(10px + constant(safe-area-inset-bottom));
    z-index: 1001;
}

.increase-bottom-inner {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 16px 36px;
}

.increase-cta {
    width: 100%;
    box-shadow: 0px 4px 36.5px #fff inset;
    border-radius: 16px;
    background-color: #9cf700;
    overflow: hidden;
    text-align: center;
    border: none;
    padding: 18px 20px;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    font-family: 'SF Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin-top: 16px; /* more space between link field and button */
}
.increase-cta:active { transform: scale(0.98); box-shadow: 0px 4px 36.5px #fff inset, 0 4px 16px rgba(197, 248, 42, 0.4); }

/* Tighten spacing in the fixed area so it fits comfortably */
.increase-bottom .increase-result-card { margin-top: 0; margin-bottom: 16px; }
.increase-bottom .increase-ref-section { margin-top: 14px; margin-bottom: 14px; }

/* CTA label (text) styles */
.increase-cta__label {
    position: relative;
    font-size: 20px;
    font-weight: 760;
    font-stretch: expanded;
    letter-spacing: -0.05em;
    line-height: 114%;
    text-transform: uppercase;
    display: inline-block;
    font-family: 'SF Pro';
    color: #000;
    text-align: center;
}

/* Small screens */
@media (max-width: 375px) {
    .increase-hero-title { font-size: 32px; }
    .increase-list-text { font-size: 18px; }
    .increase-result-sub { font-size: 18px; }
    .increase-result-value { font-size: 48px; }
}

/* Increase action card */
.icard {
    background: rgba(42, 42, 46, 0.6);
    border-radius: 20px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.icard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.icard-icon {
    width: 32px;
    height: 32px;
}

.icard-texts { display: flex; flex-direction: column; gap: 2px; }

.icard-title {
    font-size: 16px;
    font-weight: 760;
    font-stretch: expanded;
    letter-spacing: -0.03em;
}

.icard-sub {
    font-size: 13px;
    color: #8e8e93;
}

.icard-btn {
    width: 100%;
    background-color: #9cf700;
    border: none;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 760;
    font-stretch: expanded;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1.14;
    box-shadow: inset 0 4px 30px 0 #FFFFFF;
}

.icard-btn:active {
    transform: scale(0.98);
    box-shadow: inset 0 4px 30px 0 #FFFFFF, 0 4px 16px rgba(197, 248, 42, 0.4);
}

.icard-btn--ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.increase-note {
    margin-top: 4px;
    font-size: 13px;
    color: #cdd3c7;
}

/* Responsive */
@media (max-width: 375px) {
    .increase-content { padding: 14px 18px 28px; }
    .icard-title { font-size: 15px; }
    .icard-sub { font-size: 12px; }
}
