/* Social media logos using actual company SVGs */

/* Hide the original icon font content */
.icon-steam:before,
.icon-twitter:before,
.icon-youtube:before,
.icon-arrow-point-right:before {
    content: "";
    display: none;
}

/* Style the social media links as image containers */
.icon-steam,
.icon-twitter,
.icon-youtube {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 8px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Set background images for each social platform */
.icon-steam {
    background-image: url('../images/steam-logo.png');
}

.icon-twitter {
    background-image: url('../images/twitter-logo.png');
    filter: brightness(0) invert(1);
}

.icon-youtube {
    background-image: url('../images/youtube-logo.png');
}

/* Hover effects */
.icon-steam:hover,
.icon-twitter:hover,
.icon-youtube:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Ensure the links work properly */
#footer a[aria-label="steam"],
#footer a[aria-label="twitter"],
#footer a[aria-label="youtube"] {
    display: inline-block;
    text-decoration: none;
}

/* Play button styling */
.icon-arrow-point-right {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 12px solid currentColor;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 2px;
    vertical-align: middle;
    position: relative;
    left: 1px;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Media section padding for better anchor positioning */
#media {
    scroll-margin-top: 80px;
}

/* Mobile responsiveness */
@media (max-width: 540px) {
    .icon-steam,
    .icon-twitter,
    .icon-youtube {
        width: 20px;
        height: 20px;
        margin: 0 6px;
    }

    .icon-arrow-point-right {
        border-left-width: 10px;
        border-top-width: 6px;
        border-bottom-width: 6px;
    }
}