.section-a {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--var-white);
    padding: 10vh;
    padding-top: 5vh;
}
.section-a .container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.top-card {
    background: linear-gradient(to right, #141414, #2a2a2a);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #333;
}
.tags-section {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.tag {
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.2s ease;
    padding: 2px 0;
    cursor: pointer;
}
.tag:hover {
    opacity: 0.8;
}
.tag.blue {
    color: #4a9eff;
}

.scroll-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    mask-image: linear-gradient(to right, transparent, #000 50px, #000 calc(100% - 50px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 50px, #000 calc(100% - 50px), transparent);
}

.scroll-row {
    display: inline-flex;
    gap: 20px;
    animation-duration: 80s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.scroll-row.right {
    animation-name: scrollRight;
}

.scroll-row.left {
    animation-name: scrollLeft;
}

.scroll-container:hover .scroll-row {
    animation-play-state: paused;
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.tech-tag:hover {
    color: var(--var-pink);
}

.tech-tag .icon {
    font-size: 16px;
}

@keyframes scrollRight {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-33.333%);
    }
    100% {
        transform: translateX(0%);
    }
}
.main-title {
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    font-family: 'Montserrat-Bold';
}
.bottom-cards {
    display: flex;
    gap: 10px;
    height: 400px;
}
.left-card {
    background: linear-gradient(to left, #141414, #2a2a2a);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid #333;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.online-indicator {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.green-dot {
    width: 8px;
    height: 8px;
    background-color: #00ff88;
    border-radius: 50%;
    margin-right: 8px;
}
.online-text {
    color: #00ff88;
    font-size: 13px;
    font-weight: 500;
}
.discord-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    color: #ffffff;
    font-family: 'Montserrat-Bold';
}
.discord-description {
    color: #888;
    margin-bottom: 30px;
    line-height: 1.5;
    font-size: 14px;
}
.discord-button {
    background-color: #5865f2;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s ease;
    width: fit-content;
}
.discord-button:hover {
    background-color: #4752c4;
}
.discord-icon {
    width: 16px;
    height: 16px;
}
.right-card {
    background: url('../../img/tech-dispatchio-app.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    /* padding: 30px; */
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.right-card .right-card-opacity {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
@media (max-width: 1024px) {
    .bottom-cards {
        flex-direction: column;
        height: auto;
    }
    .code-preview {
        position: static;
        margin-bottom: 20px;
        width: 100%;
    }
    .button-container {
        margin-top: 20px;
    }
}
.right-card .right-card-opacity .content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px;
    padding-left: 30px;
}
.dispatch-logo {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dispatch-logo .logo-min {
    width: 100%;
    height: 100%;
    background: url('../../branding/logo-transparent-blanc-min.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.text {
    display: flex;
    flex-direction: column;
}
.text h2 {
    color: white;
    margin: 0;
    font-size: 24px;
    font-family: 'Montserrat-Bold';
}
.text p {
    color: #a0a8b5;
    margin: 2px 0 0 0;
    font-size: 0.9em;
}
.footer-cards {
    display: grid;
    gap: 10px;
    height: 400px;
    grid-template-columns: 30% 70%;
    grid-template-rows: 100%;
}
.footer-cardA {
    grid-column: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #141414, #2a2a2a);
    border: 1px solid #333;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footer-cardA .container {
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}
.footer-cardB {
    grid-column: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #141414, #2a2a2a);
    border: 1px solid #333;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}
.footer-cardA .container .github-icon i{
    font-size: 100px;
    margin-bottom: 30px;
    color: var(--var-white);
}
[data-theme="dark"] .footer-cardA .container .github-icon i{
    color: #ffffff;
}
.footer-cardA .container .title {
    font-size: 1.5em;
    font-family: 'Montserrat-Bold';
    font-weight: bold;
    color: white;
}
.footer-cardA .container .title span {
    color: var(--var-pink);
    font-family: 'Montserrat-Bold';
}
.footer-cardA .container .subtitle {
    font-size: 1em;
    color: #d1d5db;
    max-width: 100%;
}
.footer-cardA .container .link {
    display: inline-block;
    color: var(--var-gray);
    text-decoration: none;
    font-size: 0.8em;
}