body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: white;
    background: linear-gradient(to bottom, #333, #000);
    overflow: hidden;
    min-height: 100vh;
    transition: visibility 0.1s ease;
}

/* Top Footer */
.top-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.5);
}

.nav-links a {
    margin-left: 20px;
    text-decoration: none;
    color: white;
    padding: 10px 0;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-links a.active {
    font-weight: bold;
}

/* Middle Section */
.middle {
    height: calc(100vh - 200px);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Bottom Footer */
.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

/* Main pages specific styles (Home, Links, Contact) */
body:not(.blog-body) .copyright {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    justify-content: center;
    margin-left: 0;
}

body:not(.blog-body) .social-links {
    display: flex;
    justify-content: flex-end;
    margin-right: -20px;
    padding-right: 20px;
}

.social-media-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.social-media {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.social-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
    margin-top: 0;
    width: fit-content;
}

.social-icons-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-right: 10px;
}

.circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #000;
    text-decoration: none;
}

.circle i {
    font-size: 16px;
}

/* Hover effects for each platform */
.circle.youtube:hover {
    background: linear-gradient(135deg, #ff0032, #cc0000); /* YouTube gradient from bright red to darker red */
    color: white;
    transform: translateY(-2px);
}

.circle.twitch:hover {
    background: linear-gradient(135deg, #a441f7, #6441a5); /* Twitch gradient from bright purple to darker purple */
    color: white;
    transform: translateY(-2px);
}

.circle.facebook:hover {
    background-color: #1877f2;
    color: white;
    transform: translateY(-2px);
}

.circle.twitter:hover {
    background-color: #000000;
    color: white;
    transform: translateY(-2px);
}

.circle.instagram:hover {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: white;
    transform: translateY(-2px);
}

.circle.tiktok:hover {
    background: linear-gradient(135deg, #34f3ef, #ff365b);
    color: white;
    transform: translateY(-2px);
}

.circle.discord:hover {
    background: linear-gradient(135deg, #7289da, #4752c4); /* Discord's bright blue to darker blue */
    color: white;
    transform: translateY(-2px);
}

.circle.reddit:hover {
    background: linear-gradient(135deg, #ff5700, #cc4600); /* Reddit's bright orange to darker orange */
    color: white;
    transform: translateY(-2px);
}

.top-footer div a.logo-link {
    margin: 0;
}

.top-footer div strong {
    font-size: 1.5em;
    font-weight: bold;
    display: block;
}