        @import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');
	
	.tfd-container {
        width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 15px;
    }

.tfd-stats-section {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .tfd-stat-box {
        border-radius: 15px;
        padding: 20px;
        width: 45%;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
        transition: transform 0.2s, box-shadow 0.2s;
    }

    .tfd-stat-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .tfd-quick-stats {
        background: linear-gradient(135deg, #ff9f1a, #ff6f00);
    }

    .tfd-twitch-stats {
        background: linear-gradient(135deg, #6f42c1, #b32dff);
    }

    .tfd-stat-box h2 {
        font-size: 1.8em;
        margin-bottom: 15px;
        color: #fff;
    }

    .tfd-stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 15px 0;
    }

    .tfd-stat-number {
        font-size: 1.7em;
        font-weight: bold;
        color: #fff;
        font-family: "Titillium Web", sans-serif;
    }

    .tfd-stat-number.negative {
        color: #d71111;
    }

    .tfd-stat-label {
        font-size: 1.2em;
        color: #eee;
		padding-top:10px;
    }

    .tfd-quick-stats h2, .tfd-twitch-stats h2 {
        color: #fff;
        font-family: "Titillium Web", sans-serif;
    }


.table-tfd-container {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
}

.tfd-game-info {
    width: 60%;
    border-collapse: collapse;
    margin-left: 20px;
}

.tfd-game-info th, .tfd-game-info td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.tfd-game-info th {
    background-color: #f4f4f4;
}

.custom-vertical-nav1 {
    width: 30%;
}

.custom-vertical-nav1 ul {
    list-style: none;
    padding: 0;
}

.custom-vertical-nav1 li {
    padding: 5px 0;
}

.custom-vertical-nav1 a {
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
}

.custom-vertical-nav1 i {
    margin-right: 10px;
}

@media (max-width: 800px) { /* Adjust the breakpoint as needed */
    .table-tfd-container {
        flex-direction: column;
        align-items: center;
    }
    .tfd-game-info, .custom-vertical-nav1 {
        width: 100%; /* Makes both children take the full width of the container */
        margin-left: 0; /* Removes the left margin from the table */
    }
}