body {
    position: relative;
    z-index: 0;
    overflow: hidden;
    background-image: url('/_images/football-profile.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100vw;
}
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7); /* 70% black tint, darker */
    z-index: 1;
    pointer-events: none;
}
body > * {
    position: relative;
    z-index: 2;
}

.coming-soon-title {
    position: absolute;
    top: 6vh;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 4rem;
    font-family: 'United Italic Cond Black', sans-serif;
    letter-spacing: 0.1em;
    text-align: center;
    z-index: 3;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Responsive font sizes */
@media (min-width: 768px) {
    .coming-soon-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .coming-soon-title {
        font-size: 5rem;
    }
}

@media (min-width: 1440px) {
    .coming-soon-title {
        font-size: 6rem;
    }
}

@media (min-width: 3000px) {
    .coming-soon-title {
        font-size: 12rem;
    }
}

.social-links {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.social-button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.social-icon {
    width: 32px;
    height: 32px;
    color: #000;
}

.trophies-button .social-icon {
    filter: brightness(0) saturate(100%);
}

.trophies-arrow {
    position: fixed;
    bottom: 5rem;
    left: calc(50% + .25rem);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0;
    z-index: 3;
    padding: 0.75rem 1rem;
    border-radius: 25px;
    animation: bounce 2s infinite;
}

.arrow-text {
    color: #fff;
    font-weight: bold;
    font-size: 1.25rem;
    white-space: nowrap;
}

.arrow {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.25rem;
    margin-top: 2rem;
}

.arrow-svg {
    width: 40px;
    height: 40px;
    display: block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(10deg);
    }
    75% {
        transform: rotate(-10deg);
    }
}

.top-logo {
    position: fixed;
    top: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.top-logo-img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    background: #fff;
}

.mission-statement {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    max-width: 90vw;
    width: 600px;
    line-height: 1.5;
    z-index: 5;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

@media (max-width: 700px) {
    .mission-statement {
        width: 95vw;
        font-size: 1.5rem;
    }
}


@media (min-width: 3000px) {
    .mission-statement {
        width: 40vw;
        font-size: 3rem;
    }
}