/* style.css - XRPCardio Coming Soon Stylesheet */

:root {
    --bg-dark: #020202;
    --neon-red: #FF1744;
    --neon-red-glow: rgba(255, 23, 68, 0.4);
    --neon-green: #39FF14;
    --neon-green-glow: rgba(57, 255, 20, 0.3);
    --amber: #FFB300;
    --card-bg: rgba(6, 6, 6, 0.85);
    --border-color: rgba(255, 23, 68, 0.25);
    --font-header: 'Orbitron', sans-serif;
    --font-body: 'Space Mono', monospace;
}

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

body {
    background-color: var(--bg-dark);
    /* Cyber grid overlay background */
    background-image: 
        radial-gradient(circle at 50% 50%, #150407 0%, var(--bg-dark) 85%),
        linear-gradient(rgba(255, 23, 68, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 23, 68, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
    font-family: var(--font-body);
    color: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    overflow: hidden; /* Strict viewport boundary - no scrolling */
}

/* CRT Screen Scanline Overlay Effect */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.3) 50%);
    background-size: 100% 4px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.25;
}

/* Centered Layout Wrapper */
.container {
    width: 100%;
    max-width: 1100px;
    height: 100%;
    max-height: 820px; /* Lock height to prevent vertical scrolling */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.logo {
    font-family: var(--font-header);
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 4px;
    color: #F5F5F5; /* Creamy White */
    text-shadow: 
        0 0 8px var(--neon-green),
        0 0 16px var(--neon-green);
    animation: textGlowPulse 3s infinite ease-in-out;
}

.status-pill {
    background-color: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.25);
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--neon-green);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
}

.pulse-icon {
    width: 6px;
    height: 6px;
    background-color: var(--neon-green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--neon-green);
    animation: beaconPulse 1.5s infinite ease-in-out;
}

/* Main Console Card */
.console-box {
    background-color: var(--card-bg);
    border: 2px solid var(--neon-red);
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(255, 23, 68, 0.15);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
    min-height: 0;
}

/* Windows-style Header bar */
.console-header {
    background: rgba(255, 23, 68, 0.08);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.control-dot.red { background-color: var(--neon-red); }
.control-dot.yellow { background-color: var(--amber); }
.control-dot.green { background-color: var(--neon-green); }

.console-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-left: 10px;
}

/* Central Content Container */
.console-body {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 24px;
    flex-grow: 1;
}

/* Title Header */
.title-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.title-section h1 {
    font-family: var(--font-header);
    font-size: 1.3rem;
    font-weight: bold;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
}

.title-section h1 .highlight {
    color: var(--neon-red);
    text-shadow: 0 0 15px var(--neon-red-glow);
    display: block;
    font-size: 2.2rem;
    margin-top: 8px;
    letter-spacing: 4px;
}

.drop-icon {
    filter: drop-shadow(0 0 6px var(--neon-red-glow));
    animation: dropHover 2s infinite ease-in-out;
}
.platform-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 1.15rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 5px;
}

.platform-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.platform-item.active-platform {
    color: #ffffff;
}

.platform-item.coming-soon-platform {
    color: rgba(255, 255, 255, 0.45);
}

.platform-icon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.platform-separator {
    color: var(--neon-red);
    opacity: 0.6;
}

/* Countdown Card */
.countdown-card {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px 30px;
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.countdown-label {
    font-size: 0.80rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: bold;
    letter-spacing: 2px;
}

.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70px;
}

.time-block span {
    font-family: var(--font-header);
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffffff;
}

.time-block label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 1px;
    margin-top: 4px;
}

.separator {
    font-family: var(--font-header);
    font-size: 1.8rem;
    color: var(--neon-red);
    opacity: 0.8;
    text-shadow: 0 0 8px var(--neon-red-glow);
    animation: blinkCursor 1s infinite step-end;
}

/* Buttons */
.cta-container {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    width: 100%;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1.5px;
    border-radius: 6px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.primary-btn {
    background-color: var(--neon-red);
    color: #ffffff;
    border: 1px solid var(--neon-red);
    box-shadow: 0 0 15px var(--neon-red-glow);
}

.primary-btn:hover {
    background-color: transparent;
    color: var(--neon-red);
    box-shadow: 0 0 25px rgba(255, 23, 68, 0.35);
}

.btn-icon {
    transition: transform 0.25s ease;
}

.btn:hover .btn-icon {
    transform: translateY(2px);
}

/* Terminal Log Console at the bottom */
.terminal-footer {
    border-top: 1px solid var(--border-color);
    background-color: rgba(1, 1, 1, 0.9);
    padding: 12px 24px;
}

.terminal-bar {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.terminal-dot {
    width: 6px;
    height: 6px;
    background-color: var(--neon-red);
    border-radius: 50%;
    box-shadow: 0 0 4px var(--neon-red-glow);
    display: inline-block;
}

.terminal-output {
    height: 90px; /* Reduced height to keep layout compact and scrollbar-free */
    overflow-y: auto;
    font-size: 0.8rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 10px;
}

/* Custom Scrollbar for terminal and console body */
.terminal-output::-webkit-scrollbar,
.console-body::-webkit-scrollbar {
    width: 8px;
}
.terminal-output::-webkit-scrollbar-track,
.console-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}
.terminal-output::-webkit-scrollbar-thumb,
.console-body::-webkit-scrollbar-thumb {
    background: rgba(255, 23, 68, 0.5);
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}
.terminal-output::-webkit-scrollbar-thumb:hover,
.console-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 23, 68, 0.8);
}

.log-line {
    animation: lineFadeIn 0.3s ease-out forwards;
}

.log-line.system {
    color: rgba(255, 255, 255, 0.75);
}

.log-line.whale {
    color: var(--neon-green);
    font-weight: bold;
}

.log-line.pulse {
    color: #ffffff;
}

.log-line.alert {
    color: var(--amber);
}

/* Footer disclaimer */
.footer {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    padding: 5px 20px;
}

.contact-info {
    margin-top: 6px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
}

.email-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px dashed var(--neon-red);
    transition: all 0.2s ease;
}

.email-link:hover {
    color: var(--neon-red);
    border-bottom: 1px solid var(--neon-red);
    text-shadow: 0 0 8px var(--neon-red-glow);
}

/* Animations */
@keyframes beaconPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes textGlowPulse {
    0%, 100% {
        text-shadow: 
            0 0 8px var(--neon-green),
            0 0 16px var(--neon-green);
    }
    50% {
        text-shadow: 
            0 0 12px var(--neon-green),
            0 0 24px var(--neon-green),
            0 0 32px var(--neon-green);
    }
}

@keyframes blinkCursor {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

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

@keyframes lineFadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Scaling */
@media (max-width: 768px) {
    body {
        overflow-y: auto; /* Fallback for very small devices */
        height: auto;
    }
    .container {
        height: auto;
        max-height: none;
    }
    .header {
        flex-direction: column;
        gap: 15px;
    }
    .console-body {
        padding: 30px 20px;
    }
    .title-section h1 {
        font-size: 1.6rem;
    }
    .time-block span {
        font-size: 1.8rem;
    }
    .time-block {
        width: 60px;
    }
    .separator {
        font-size: 1.5rem;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Header actions and manual button */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.manual-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
    border-radius: 4px;
    padding: 6px 12px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

.manual-btn:hover {
    border-color: var(--neon-red);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 23, 68, 0.4);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(3, 3, 3, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Modal Content Card */
.modal-content {
    background: var(--card-bg);
    border: 2px solid var(--neon-red);
    border-radius: 12px;
    box-shadow: 0 0 35px rgba(255, 23, 68, 0.25);
    width: 90%;
    max-width: 680px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(20px) scale(0.98);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Modal Header */
.modal-header {
    background: rgba(255, 23, 68, 0.08);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-family: var(--font-header);
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.modal-close {
    background: transparent;
    border: none;
    color: var(--neon-red);
    font-family: var(--font-mono);
    font-weight: bold;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 4px 8px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    color: #ffffff;
    text-shadow: 0 0 8px var(--neon-red-glow);
}

/* Modal Body */
.modal-body {
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.manual-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
}

.manual-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.manual-section h3 {
    font-family: var(--font-header);
    font-size: 0.95rem;
    color: var(--neon-red);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.manual-section p {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

/* Symbols Grid */
.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
}

.symbol-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.symbol-bubble-container {
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.symbol-bubble {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #080c09;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: bold;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.8);
    flex-shrink: 0;
    white-space: nowrap;
}

.symbol-bubble:not(.rlusd-bubble) {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

/* Capsule for RLUSD Bridge */
.symbol-bubble.rlusd-bubble {
    width: 88px;
    height: 28px;
    border-radius: 14px;
    font-size: 0.58rem;
    color: #ffffff;
    border: 1.5px solid #E040FB;
    box-shadow: 0 0 8px rgba(224, 64, 251, 0.4);
}

.x-pill {
    background: #080c09;
    border: 1px solid var(--neon-green);
    border-radius: 50%;
    width: 12px;
    height: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-green);
    font-size: 0.45rem;
    margin: 0 3px;
    font-weight: 900;
}

/* Individual node themes matching Flutter app */
.payment-bubble {
    border: 1.5px solid var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
    text-shadow: 0 0 2px var(--neon-green);
}

.dex-bubble {
    border: 1.5px solid #00E5FF;
    color: #00E5FF;
    box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
    text-shadow: 0 0 2px #00E5FF;
}

.xborder-bubble {
    border: 1.5px solid #FF1E27;
    color: #FF1E27;
    box-shadow: 0 0 8px rgba(255, 30, 39, 0.4);
    text-shadow: 0 0 2px #FF1E27;
}

.nft-bubble {
    border: 1.5px solid #FF9100;
    color: #FF9100;
    box-shadow: 0 0 8px rgba(255, 145, 0, 0.4);
    text-shadow: 0 0 2px #FF9100;
}

.setup-bubble {
    border: 1.5px solid #FF007F;
    color: #FF007F;
    box-shadow: 0 0 8px rgba(255, 0, 127, 0.4);
    text-shadow: 0 0 2px #FF007F;
}

.trust-bubble {
    border: 1.5px solid #2979FF;
    color: #2979FF;
    box-shadow: 0 0 8px rgba(41, 121, 255, 0.4);
    text-shadow: 0 0 2px #2979FF;
}

.symbol-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.symbol-name {
    font-family: var(--font-header);
    font-size: 0.78rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.symbol-desc {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
}

.manual-subsection-title {
    font-family: var(--font-header);
    font-size: 0.8rem;
    color: var(--neon-red);
    margin-top: 24px;
    margin-bottom: 8px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 23, 68, 0.2);
    padding-bottom: 4px;
    text-transform: uppercase;
}

.subsection-desc {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 12px;
}

.feed-icons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 16px;
}

.feed-icon-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feed-emoji {
    font-size: 1.3rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    flex-shrink: 0;
}

.feed-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feed-name {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: bold;
    color: #ffffff;
}

.feed-desc {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.2;
}

.whale-banner-wrapper {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.mock-whale-alert {
    background: rgba(8, 12, 9, 0.95);
    border: 1.5px solid var(--neon-green);
    border-radius: 20px;
    padding: 8px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.25);
}

.mock-whale-alert .radar-icon {
    font-size: 0.85rem;
}

.mock-whale-alert .whale-alert-text {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Cyber Form Styles for Subscription Modal */
.cyber-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-header);
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--neon-red);
    letter-spacing: 1.5px;
    text-shadow: 0 0 4px var(--neon-red-glow);
}

.form-group input {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 10px 14px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.8rem;
    outline: none;
    transition: all 0.25s ease;
}

.form-group input:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green-glow);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-feedback {
    font-size: 0.75rem;
    padding: 8px 12px;
    border-radius: 4px;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.error-message {
    background: rgba(255, 23, 68, 0.1);
    border: 1px solid var(--neon-red);
    color: #ff5252;
}

.success-message {
    background: rgba(57, 255, 20, 0.08);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    text-shadow: 0 0 4px var(--neon-green-glow);
}

/* Secondary Button styling */
.secondary-btn {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: none;
}

.secondary-btn:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: 0 0 15px var(--neon-green-glow);
}

/* Security Verification styling */
.security-verification {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 15px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.security-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--neon-green);
    font-weight: bold;
}

.security-status .shield-icon {
    fill: var(--neon-green);
}

.security-link {
    color: var(--neon-green);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.security-link:hover {
    color: #ffffff;
}

.security-hash {
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.5px;
    opacity: 0.85;
}

.security-help {
    font-size: 0.68rem;
    margin-top: 4px;
}

.security-help-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.security-help-link:hover {
    color: var(--neon-green);
}

/* Download Console Specific Layout */
.download-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    margin-top: 10px;
}

.download-section-card {
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(255, 23, 68, 0.15);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-section-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 0 25px rgba(255, 23, 68, 0.45);
}

.download-section-card.recommended {
    border: 1px solid rgba(57, 255, 20, 0.25);
    background: rgba(5, 12, 6, 0.4);
}

.download-section-card.recommended:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 20px var(--neon-green-glow);
}

.section-badge {
    font-size: 0.65rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    padding: 3px 8px;
    border-radius: 3px;
    width: fit-content;
    margin-bottom: 12px;
}

.recommended .section-badge {
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.secondary-card .section-badge {
    background: rgba(255, 23, 68, 0.08);
    color: var(--neon-red);
    border: 1px solid rgba(255, 23, 68, 0.2);
}

.section-title {
    font-family: var(--font-header);
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.recommended .section-title {
    color: #ffffff;
    text-shadow: 0 0 8px var(--neon-green-glow);
}

.secondary-card .section-title {
    color: #ffffff;
    text-shadow: 0 0 8px var(--neon-red-glow);
}

.section-description {
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.installer-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.security-info-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.65rem;
    flex-wrap: wrap;
    gap: 4px;
}

.info-label {
    color: rgba(255, 255, 255, 0.5);
    font-weight: bold;
}

.info-value {
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-mono);
    word-break: break-all;
}

.smartscreen-warning {
    font-size: 0.82rem;
    line-height: 1.5;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
}

.store-btn:hover {
    border-color: var(--neon-green) !important;
    color: var(--neon-green) !important;
    box-shadow: 0 0 20px var(--neon-green-glow) !important;
}

.download-exe-btn:hover {
    box-shadow: 0 0 20px var(--neon-red-glow) !important;
}

@media (max-width: 600px) {
    .installer-actions {
        flex-direction: column;
    }
    .download-container {
        grid-template-columns: 1fr;
    }
}

/* Language display toggles */
html[lang="en"] .lang-es {
    display: none !important;
}
html[lang="es"] .lang-en {
    display: none !important;
}
