body {
    background-color: aliceblue;
    font-family: 'JetBrains Mono', 'Roboto Mono', monospace;
    font-size: 48px;
    margin: 0px;
    padding: 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.container {
    background-color: #e6f3ff;
    width: 20vw;
    text-align: center;
    padding: 0px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.stats-window {
    background-color: #e6f3ff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    min-width: 200px;
}

.stats-window p {
    margin: 10px 0;
    font-size: 20px;
    color: #555;
}

.cool-container {
    background-color: #e6f3ff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    min-width: 300px;
    height: calc(50vh - 70px);
}

.cool-container.right {
    height: calc(100vh - 260px);
}

.cool-container.left {
    position: sticky;
    top: 20px;
}

.cool-placeholder {
    height: calc(100% - 50px);
    background-color: #f0f8ff;
    border: 2px dashed #ccc;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.cool-placeholder p {
    margin: 0;
    font-size: 18px;
    color: #666;
}

.cool-placeholder a {
    color: #666;
    text-decoration: none;
    font-size: 16px;
}

.cool-container:hover .cool-placeholder a {
    color: #1DA1F2;
}

.cool-container:hover .cool-placeholder a:hover {
    color: #0c85d0;
    text-decoration: underline;
}

.cool-placeholder .contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    transition: opacity 0.3s ease;
}

.top-right-social {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 1000;
    display: flex;
    gap: 18px;
    background: #e6f3ff;
    border-radius: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 8px 18px;
    align-items: center;
}

.top-right-social a {
    color: #333;
    display: flex;
    align-items: center;
    transition: color 0.2s;
    text-decoration: none;
}

.top-right-social a:hover {
    color: #1DA1F2;
}

.top-right-social svg {
    display: block;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

h1,
h2 {
    color: #333;
    margin: 0 0 15px 0;
}

.stats-window h2 {
    text-align: left;
    font-size: 28px;
}

.cool-placeholder h2 {
    margin: 0;
    font-size: 18px;
    color: #666;
}

a:focus-visible {
    outline: 2px solid #1DA1F2;
    outline-offset: 2px;
    border-radius: 4px;
}

.cool-placeholder a {
    color: #666;
}

@media screen and (max-width: 1530px) {
    .stats-window {
        position: relative;
    }
}

@media screen and (max-width: 1230px) {
    .container {
        min-width: 260px;
    }

    .left-column {
        display: none;
    }
}

/* For phones */
@media screen and (max-width: 768px) {
    .stats-window {
        position: fixed;
        left: 1px;
        right: 1px;
        z-index: 1000;
        text-align: center;
    }

    .stats-window h2 {
        text-align: center;
    }

    .top-right-social {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .cool-container.right {
        display: none;
    }
}
