/* =========================================
   MONETIX - WELCOME SCREEN & PROMO CARDS
   Extracted from index.html <style> block
   ========================================= */

/* WELCOME SCREEN */
#screen-welcome {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.welcome-logo-box {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    animation: bounceIn 1.2s cubic-bezier(0.215, 0.610, 0.355, 1.000);
    position: relative;
}

.welcome-logo-box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: pulseRing 2s infinite;
}

.welcome-icon-pig {
    font-size: 60px;
    color: #ffafcc;
    z-index: 2;
}

.welcome-icon-coin {
    font-size: 30px;
    color: #F4B400;
    position: absolute;
    top: -10px;
    right: 0;
    z-index: 3;
    animation: floatIcon 3s ease-in-out infinite;
}

.welcome-title {
    font-size: 42px;
    font-weight: 900;
    color: #003366;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
    transform: translateY(20px);
    text-transform: uppercase;
}

.welcome-subtitle {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.8;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.highlight-text {
    color: #2E7D32;
    /* Green */
    font-weight: 700;
    font-size: 16px;
    display: inline;
}

.pillar-text {
    color: #003366;
    font-weight: 700;
}

/* PROMO CARDS (LOGIN SCREEN) */
.promo-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    text-align: left;
}

.promo-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    /* Flex Layout for Column Split */
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.promo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.promo-content {
    flex: 1;
    /* Take up remaining space */
}

.promo-image {
    width: 80px;
    /* Fixed width for image container */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    flex-shrink: 0;
}

.promo-image i {
    font-size: 35px;
    opacity: 0.8;
}

.promo-card h5 {
    margin: 0 0 8px 0;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-card p {
    margin: 0 0 12px 0;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.promo-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.promo-btn:hover {
    transform: scale(1.05);
}

/* Card Variants */
.card-loans {
    border-left: 4px solid #FFC107;
}

.card-loans h5 {
    color: #F57F17;
}

.btn-loans {
    background: #FFC107;
    color: #333;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.3);
}

.card-loans .promo-image i {
    color: #F57F17;
}

.card-invest {
    border-left: 4px solid #2E7D32;
}

.card-invest h5 {
    color: #1B5E20;
}

.btn-invest-promo {
    background: #2E7D32;
    color: #fff;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.3);
}

.card-invest .promo-image i {
    color: #2E7D32;
}

/* Dark Mode Adjustments */
body.dark-mode .promo-card {
    background: #1e293b;
    border-color: #334155;
}

body.dark-mode .promo-card p {
    color: #cbd5e1;
}

body.dark-mode .promo-image {
    background: rgba(255, 255, 255, 0.05);
}

/* [NEW] HORIZONTAL COMPACT TRUST SEALS */
.trust-seals-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* Space between seals */
    margin-top: 20px;
    padding: 0 10px;
    width: 100%;
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
    transform: translateY(10px);
}

.trust-seal {
    display: flex;
    flex-direction: row;
    /* Horizontal Icon + Text */
    align-items: center;
    gap: 6px;
    color: #aaa;
    transition: all 0.3s ease;
    cursor: default;
    text-align: left;
}

.trust-seal .seal-icon {
    font-size: 14px;
    /* Subtle icon */
    transition: all 0.3s ease;
}

.trust-seal .seal-title {
    font-size: 10px;
    /* Compact text */
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

/* Hover Effects */
.trust-seal:hover {
    color: #555;
    transform: translateY(-2px);
}

.trust-seal:hover .seal-icon {
    transform: scale(1.1);
}

/* Color Restores */
.trust-seal:nth-child(1):hover .seal-icon {
    color: #2E7D32;
}

/* Lock */
.trust-seal:nth-child(2):hover .seal-icon {
    color: #003366;
}

/* Shield */
.trust-seal:nth-child(3):hover .seal-icon {
    color: #F4B400;
}

/* Cert */

/* Dark Mode */
body.dark-mode .trust-seal {
    color: #64748b;
}

body.dark-mode .trust-seal:hover {
    color: #e2e8f0;
}