/* Schrift, Farben, Layout */
body {
    margin: 0;
    background-color: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

/* Landing Page */
.landing-page {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.container h1 {
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.2), 0 0 12px rgba(255, 255, 255, 0.1);
}

.container h1 span {
    font-weight: 300;
    font-size: 1.2rem;
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    font-family: "Courier New", Courier, monospace;
}

.blink-cursor::after {
    content: "|";
    animation: blink 1s step-start infinite;
    margin-left: 2px;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn {
    padding: 0.75rem 2rem;
    border: 1px solid white;
    text-decoration: none;
    color: white;
    border-radius: 30px;
    font-size: 1rem;
    transition: 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn:hover {
    background-color: white;
    color: black;
}

/* Track Record Seite */
.track-record-page {
    padding: 3rem;
    background-color: #000;
    color: #fff;
}

.table-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.trade-records {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.trade-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(255,255,255,0.02);
    transition: 0.3s ease;
}

.trade-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(255,255,255,0.05);
}

.trade-symbol {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: white;
    letter-spacing: 1px;
}

.trade-details {
    font-size: 0.95rem;
    color: #ccc;
}

.change {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 0.5rem;
}

.change.positive {
    color: #4caf50;
}

.change.negative {
    color: #f44336;
}

/* Frosted Glass Container */
.frosted-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.03);
}

/* Responsiv */
@media (max-width: 768px) {
    .buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .container h1 {
        font-size: 2rem;
    }
}
