body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #eee;
}

.top-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: 
        linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(0, 255, 255, 0.02)),
        #111;
    background-image: url('/static/background.svg');
    background-position: center;
    background-repeat: repeat;
    background-size: 100px 100px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    overflow-x: auto;
}
.top-menu a {
    color: #0ff;
    text-decoration: none;
    padding: 14px 20px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: large;
}
.top-menu a:hover {
    color: #fff;
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
}

.pitch-container {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#pitch-display {
    transition: opacity 0.6s ease, transform 0.6s ease;
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
}
@media (max-width: 768px) {
    #pitch-display {
        font-size: 1.5rem;
        line-height: 1.4;
    }
}
.fade-out {
    opacity: 0;
    transform: translateY(-1.25rem);
}
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

#aliveText {
    font-family: monospace;
    font-size: 30px;
    white-space: pre;
}

.content {
    margin-top: 80px;
    padding: 10px;
}

.article-card {
    background-color: #111;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    flex: 1 1 220px;
    max-width: 300px;
    color: #eee;
    font-family: 'Segoe UI', sans-serif;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.article-card:hover {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    transform: translateY(-5px);
}
.article-card img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 15px;
    display: block;
}
.article-card h3 {
    color: #0ff;
    margin: 0 0 10px 0;
    text-align: center;
    margin-top: auto;
}
.article-card p {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #ccc;
}
.article-card a {
    display: inline-block;
    margin-top: 10px;
    color: #0ff;
    text-decoration: none;
    font-weight: bold;
    transition: text-shadow 0.3s ease;
}
.article-card a:hover {
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
}
.article-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 20px;
}

.textarea-style {
    background-color: #000;
    color: #0ff;
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    resize: vertical;
    width: 80%;
    height: 300px;
}
.textarea-style:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6),
                0 0 10px rgba(0, 255, 255, 0.4) inset;
    background-color: #020f11;
    color: #9fffff;
}

.counter {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.button-style {
    background-color: #000;
    color: #0ff;
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    height: 40px;
}
.button-style:hover {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 0 0 10px rgba(0, 255, 255, 0.4) inset;
    background-color: #020f11;
    color: #9fffff;
}

.flex-container-style {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.category-form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
}

.group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 12px;
    padding: 20px;
}
.groupNoBorder {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 20px;
}

.center-form-margin {
  margin: 0 auto;
  padding: 20px;
  text-align: center; 
}

.input-style {
    background-color: #000;
    color: #0ff;
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    font-family: 'Segoe UI', sans-serif;
    font-weight: bold;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;    
    height: 40px;
    flex: 1;
    min-width: 50px;
    max-width: 100px;
}
.input-style:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6), 
                0 0 10px rgba(0, 255, 255, 0.4) inset;
    background-color: #020f11;
    color: #9fffff;
}

.graph-container {
    text-align: center;
}
.graph-container img {
    display: block;
    margin: auto;
    max-width: 100%;
    height: auto;
}

.snapshot-board {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.snapshot-card {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #111;
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    padding: 15px;
    color: #eee;
    font-family: 'Segoe UI', sans-serif;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    overflow-x: auto;
}
.snapshot-card:hover {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    transform: translateY(-3px);
}
.snapshot-card img {
    width: clamp(128px, 20%, 40%);
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 20px;
    flex-shrink: 0;
}

.snapshot-content {
    flex: 1;
}
.snapshot-content h3 {
    color: #0ff;
    margin: 0 0 8px 0;
}
.snapshot-content p {
    font-size: 1rem;
    line-height: 1.4;
    color: #ccc;
    margin: 0 0 10px 0;
}
.snapshot-content a {
    color: #0ff;
    font-weight: bold;
    text-decoration: none;
    transition: text-shadow 0.3s ease;
}
.snapshot-content a:hover {
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
}

.snapshot-value {
    font-size: 1.25rem;
    font-weight: 800;
}
.snapshot-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
}

.card-link {
    text-decoration: none;
    display: block;
    color: inherit; 
}

.mainSentence {
    color: #0ff;
}

.tableHighlighted {
    width: 100%;
    border-collapse: collapse;
    background-color: #0a0a0a;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    color: #caffff;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.tableHighlighted th, .tableHighlighted td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    text-align: left;
}
.tableHighlighted th {
    background-color: #111;
    color: #0ff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}
.tableHighlighted tr:hover {
    background-color: rgba(0, 255, 255, 0.05);
}
.tableHighlighted td {
    font-size: 15px;
}
.tableHighlighted tbody tr:last-child td {
    border-bottom: none;
}

.underscoredA {
    color: #0ff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}
.underscoredA::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 1px;
    background: rgba(0, 255, 255, 0.5);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.underscoredA:hover {
    color: #9fffff;
}
.underscoredA:hover::after {
    transform: scaleX(1);
}

.brand {
    color: #0ff;
}

.image-gallery {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.image-gallery img {
    width: auto;
    height: 100px;
}
.fade-in-image, .fade-in-text {
    opacity: 0; 
    animation: fadeIn 7s forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

*, *::before, *::after {
  box-sizing: border-box;
}

.menu20 {
    width: 20%;
    float: left;
}
.content80 {
    width: 80%;
    float: right;
    padding-left: 15px;
}

@media screen and (max-width: 600px) {
    .menu20, .content80 {
        float: none;
        width: 100%;
    }
    .menu20 {
        margin-bottom: 15px;
    }
}

.deck-window {
    width: 80vw;
    height: 80vh;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;
}
.pitch-deck-container {
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 720vw;
}
.slide {
    flex: 0 0 80vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
}
.nav-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.prev-button {
    left: 20px;
}
.next-button {
    right: 20px;
}