/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #d5d5d5;
    color: #333;
    line-height: 1.5;
}

/* Green Header Banner */
.top-banner {
    background: linear-gradient(to bottom, #a3d863 0%, #88c03e 100%);
    padding: 15px 0;
    border-bottom: 2px solid #78a832;
    margin-bottom: 80px;
}

.banner-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.thought-bubble {
    background: white;
    border: 3px solid #333;
    border-radius: 50% 50% 50% 0%;
    padding: 8px 12px;
    position: relative;
    min-width: 80px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.thought-bubble:hover {
    transform: rotate(8deg);
}

.thought-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10px;
    width: 15px;
    height: 15px;
    background: white;
    border: 3px solid #333;
    border-radius: 50%;
    border-top: none;
    border-right: none;
}

.bubble-text {
    font-size: 10px;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
}

.site-logo {
    font-size: 52px;
    font-weight: bold;
    color: #3da4d4;
    font-style: italic;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.8), -1px -1px 0px rgba(0,0,0,0.5);
    margin: 0;
}

.tagline-section {
    font-size: 20px;
    font-weight: bold;
    color: #4a6b2d;
    letter-spacing: 1px;
}

/* Blue Navigation Bar */
.nav-bar {
    background: linear-gradient(to bottom, #5eb7de 0%, #3da4d4 100%);
    padding: 10px 0;
    border-bottom: 2px solid #2b8ab8;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-buttons {
    display: flex;
    gap: 8px;
}

.nav-btn {
    background: linear-gradient(to bottom, #a3d863 0%, #88c03e 100%);
    color: #333;
    font-weight: bold;
    font-size: 13px;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
    text-align: center;
    line-height: 1.3;
}

.nav-btn:hover {
    background: linear-gradient(to bottom, #92c852 0%, #77af2d 100%);
}

.nav-btn-large {
    padding: 10px 30px;
    min-width: 180px;
}

.white-text {
    color: white;
}

.nav-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login-form {
    display: flex;
    align-items: center;
}

.login-inputs {
    display: flex;
    gap: 6px;
    align-items: center;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.input-group label {
    font-size: 9px;
    color: white;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.login-input {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 13px;
    width: 120px;
}

.remember-group {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
}

.remember-group label {
    font-size: 9px;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.remember-group input[type="checkbox"] {
    cursor: pointer;
}

.login-btn {
    background: linear-gradient(to bottom, #a3d863 0%, #88c03e 100%);
    color: white;
    font-weight: bold;
    border: none;
    padding: 6px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 11px;
    margin-top: 12px;
}

.login-btn:hover {
    background: linear-gradient(to bottom, #92c852 0%, #77af2d 100%);
}

.nav-search {
    display: flex;
    gap: 5px;
}

.search-input {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    width: 250px;
}

.search-btn {
    background: linear-gradient(to bottom, #a3d863 0%, #88c03e 100%);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

/* Main Container */
.container {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 20px;
}

.content-wrapper {
    display: flex;
    gap: 20px;
}

.main-content {
    flex: 1;
    min-width: 0;
}

/* Tabs Container */
.tabs-container {
    background: #e8e8e8;
    border: 1px solid #ccc;
    border-radius: 6px 6px 0 0;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.main-tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
}

.tab-button {
    background: #e8e8e8;
    border: none;
    border-right: 1px solid #ccc;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    flex: 1;
    transition: all 0.2s;
}

.tab-button:first-child {
    border-radius: 6px 0 0 0;
}

.tab-button:last-child {
    border-right: none;
    border-radius: 0 6px 0 0;
}

.tab-button:hover {
    background: #d5d5d5;
}

.tab-button.active {
    color: #1a1a1a;
    background: white;
    font-weight: bold;
}

.time-filters {
    display: flex;
    gap: 0;
    padding: 10px 15px;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
    border-bottom: 1px solid #ccc;
}

.filter-button {
    background: transparent;
    border: none;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
    margin-right: 5px;
}

.filter-button:hover {
    color: #333;
}

.filter-button.active {
    background: #5eb7de;
    color: white;
    border-radius: 3px;
}

/* Ruminations List */
.ruminations-list {
    background: white;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-radius: 0 0 6px 6px;
    padding: 0;
    min-height: 400px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.loading {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 14px;
}

/* Rumination Card */
.rumination-card {
    display: flex;
    gap: 15px;
    padding: 18px 15px;
    border-bottom: 1px solid #e8e8e8;
    border-left: 1px solid #f5f5f5;
    border-right: 1px solid #f5f5f5;
    background: linear-gradient(to bottom, #fafafa 0%, #f0f0f0 100%);
    transition: background 0.1s;
}

.rumination-card:hover {
    background: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
}

.rumination-card:last-child {
    border-bottom: none;
    border-radius: 0 0 6px 6px;
}

.points-section {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.points-box {
    background: linear-gradient(to bottom, #6ec3e8 0%, #3da4d4 100%);
    color: white;
    border-radius: 6px;
    padding: 10px 16px;
    text-align: center;
    min-width: 80px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    border: 1px solid #2b8ab8;
}

.points-number {
    font-size: 24px;
    font-weight: bold;
    display: block;
    line-height: 1;
    color: #1a1a1a;
}

.points-label {
    font-size: 10px;
    display: block;
    margin-top: 4px;
    color: #1a1a1a;
}

.vote-button {
    background: white;
    border: 1px solid #ccc;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.vote-button:hover {
    border-color: #999;
    background: #f5f5f5;
}

.content-section {
    flex-grow: 1;
}

.rumination-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
}

.meta-section {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #666;
}

.meta-label {
    color: #999;
}

.author {
    font-weight: normal;
    color: #3da4d4;
}

.date {
    color: #999;
}

.divider {
    color: #ccc;
}

.comments {
    color: #3da4d4;
    cursor: pointer;
    text-decoration: none;
    font-weight: normal;
    font-size: 12px;
}

.comments:hover {
    text-decoration: underline;
}

.share-button {
    background: transparent;
    border: none;
    color: #3da4d4;
    cursor: pointer;
    font-size: 12px;
    padding: 0;
    font-weight: normal;
}

.share-button:hover {
    text-decoration: underline;
}

/* Sidebar */
.sidebar {
    width: 320px;
    flex-shrink: 0;
}

.sidebar-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sidebar-title {
    background: linear-gradient(to bottom, #5eb7de 0%, #3da4d4 100%);
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
}

.sidebar-content {
    padding: 15px;
    font-size: 13px;
    line-height: 1.6;
    background: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);
}

.sidebar-content p {
    margin-bottom: 10px;
}

.column-title {
    color: #3da4d4;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
}

.column-meta {
    font-size: 11px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.column-text {
    font-size: 12px;
    line-height: 1.6;
    color: #333;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 15px;
    gap: 20px;
}

.pagination-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination-right {
    flex-shrink: 0;
}

.page-nav-btn {
    background: white;
    color: #333;
    border: 2px solid #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    font-size: 11px;
    transition: all 0.2s;
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}

.page-nav-btn:hover:not(:disabled) {
    background: #e0e0e0;
}

.page-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-num {
    background: white;
    color: #333;
    border: 1px solid #ccc;
    padding: 6px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.page-num:hover {
    background: #f0f0f0;
}

.page-num.active {
    background: #3da4d4;
    color: white;
    border-color: #3da4d4;
    font-weight: bold;
}

.ruminate-cta {
    background: linear-gradient(to bottom, #a3d863 0%, #88c03e 100%);
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 12px;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
    transition: all 0.2s;
    white-space: nowrap;
}

.ruminate-cta:hover {
    background: linear-gradient(to bottom, #92c852 0%, #77af2d 100%);
}

/* Footer */
footer {
    background: linear-gradient(to bottom, #5eb7de 0%, #3da4d4 100%);
    color: white;
    text-align: center;
    padding: 15px 20px;
    margin-top: 30px;
    border-top: 2px solid #2b8ab8;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 10px;
    font-size: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 3px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copyright {
    font-size: 11px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Profile Image */
.profile-img {
    width: 24px;
    height: 24px;
    border-radius: 3px;
    vertical-align: middle;
    margin-right: 5px;
    border: 1px solid #ccc;
}

/* Slang Page */
.slang-page {
    max-width: 800px;
    margin: 0 auto;
}

.slang-content {
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.slang-intro {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.slang-term {
    margin-bottom: 25px;
}

.term-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.term-definition {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.slang-image {
    text-align: center;
    margin-top: 40px;
}

.baconkissed-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.image-caption {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* About Page */
.about-page {
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.about-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 20px 0 15px 0;
    line-height: 1.5;
}

.about-text {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.about-link {
    color: #3da4d4;
    text-decoration: none;
}

.about-link:hover {
    text-decoration: underline;
}

.register-box {
    background: url('../img/register_box.png');
    background-size: cover;
    background-position: center;
    border: 2px solid #a3d863;
    border-radius: 8px;
    padding: 30px;
    margin-top: 30px;
}

.register-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    margin-left: 25%;
}

.register-list {
    list-style-type: disc;
    margin-left: calc(25% + 25px);
    margin-bottom: 20px;
}

.register-list li {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 8px;
}

.register-footer {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
    margin-bottom: 0;
    margin-left: 25%;
}

/* Terms of Service Page */
.tos-page {
    max-width: 900px;
    margin: 0 auto;
}

.tos-content {
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tos-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    text-align: left;
}

.tos-intro {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-weight: normal;
}

.tos-text {
    font-size: 13px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.tos-section-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

.tos-caps {
    text-transform: none;
}

/* Comedy Central Page */
.cc-page {
    max-width: 900px;
    margin: 0 auto;
}

.cc-hero {
    background: linear-gradient(to bottom, #ffffff 0%, #f5f5f5 100%);
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 40px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.cc-title {
    font-size: 42px;
    font-weight: bold;
    color: #3da4d4;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.cc-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    font-weight: normal;
}

.cc-logo-placeholder {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    padding: 30px 50px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.cc-logo-text {
    color: white;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cc-content {
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cc-section {
    margin-bottom: 30px;
}

.cc-section-title {
    font-size: 20px;
    font-weight: bold;
    color: #3da4d4;
    margin-bottom: 15px;
    border-bottom: 2px solid #3da4d4;
    padding-bottom: 8px;
}

.cc-text {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.cc-callout {
    background: linear-gradient(to bottom, #e8f4f8 0%, #d4e9f0 100%);
    border-left: 4px solid #3da4d4;
    padding: 25px;
    margin: 30px 0;
    border-radius: 4px;
}

.cc-callout-title {
    font-size: 18px;
    font-weight: bold;
    color: #3da4d4;
    margin-bottom: 12px;
}

.cc-callout-text {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.cc-quote {
    background: #f9f9f9;
    border-left: 4px solid #a3d863;
    padding: 20px;
    margin: 15px 0;
    font-style: italic;
}

.cc-quote-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

.cc-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.cc-btn {
    background: linear-gradient(to bottom, #a3d863 0%, #88c03e 100%);
    color: #333;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 15px;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
    transition: all 0.2s;
}

.cc-btn:hover {
    background: linear-gradient(to bottom, #92c852 0%, #77af2d 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 5px rgba(0,0,0,0.25);
}

/* Store Page */
.store-page {
    max-width: 1000px;
    margin: 0 auto;
}

.store-header {
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 30px 40px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.store-title {
    font-size: 32px;
    font-weight: bold;
    color: #3da4d4;
    margin-bottom: 5px;
}

.store-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    font-style: italic;
}

.store-description {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.product-card {
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.product-image-placeholder {
    background: linear-gradient(135deg, #5eb7de 0%, #3da4d4 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ccc;
}

.product-placeholder-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.4;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.product-price {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.original-price {
    font-size: 13px;
    color: #666;
    text-decoration: line-through;
}

.sale-price {
    font-size: 16px;
    font-weight: bold;
    color: #d9534f;
}

.savings {
    font-size: 12px;
    color: #5cb85c;
    font-weight: bold;
    font-style: italic;
}

.product-description {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.buy-button {
    background: linear-gradient(to bottom, #a3d863 0%, #88c03e 100%);
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    box-shadow: 0 2px 3px rgba(0,0,0,0.2);
    transition: all 0.2s;
}

.buy-button:hover {
    background: linear-gradient(to bottom, #92c852 0%, #77af2d 100%);
}

.store-footer-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
}

.store-footer-note p {
    font-size: 13px;
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

/* Privacy Policy Page */
.privacy-page {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content {
    background: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.privacy-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
    text-align: left;
}

.privacy-intro {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-weight: normal;
}

.privacy-text {
    font-size: 13px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.privacy-section-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-wrapper {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        gap: 10px;
    }

    .site-logo {
        font-size: 32px;
    }

    .tagline-section {
        font-size: 14px;
    }

    .nav-content {
        flex-direction: column;
        gap: 10px;
    }

    .nav-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .search-input {
        width: 200px;
    }

    .main-tabs {
        flex-direction: column;
    }

    .tab-button {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .tab-button:first-child {
        border-radius: 6px 6px 0 0;
    }

    .rumination-card {
        flex-direction: column;
    }

    .points-section {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
}
