@font-face {
    font-family: 'TacticSansExd-Bld';
    src: url('../assets/fonts/TacticSansExdBld/TacticSansExd-Bld.eot');
    src:
            url('../assets/fonts/TacticSansExdBld/TacticSansExd-Bld.eot?#iefix') format('embedded-opentype'),
            url('../assets/fonts/TacticSansExdBld/TacticSansExd-Bld.woff2') format('woff2'),
            url('../assets/fonts/TacticSansExdBld/TacticSansExd-Bld.woff') format('woff'),
            url('../assets/fonts/TacticSansExdBld/TacticSansExd-Bld.ttf') format('truetype'),
            url('../assets/fonts/TacticSansExdBld/TacticSansExd-Bld.svg#TacticSansExd-Bld') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'TacticSansExd-Bld', sans-serif;
    background-size: cover;
    background: radial-gradient(84.09% 64.77% at 50% 50%, rgba(244, 73, 2, 0.40) 0%, rgba(244, 111, 2, 0.20) 20.38%, rgba(77, 35, 1, 0.15) 65.87%, rgba(41, 19, 1, 0.10) 100%), #171515;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

header {
    padding: 1.5rem;
    text-align: center;
    background-color: #171515;
    box-shadow: 0 2px 20px 0 rgba(10, 8, 20, 0.23);
}

main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.background-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.center-icon-wrapper {
    margin-bottom: 3rem;
    animation: float-center 6s ease-in-out infinite, glow 3s ease-in-out infinite;
}

.icon-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 15%;
    animation: float-1 8s ease-in-out infinite;
    filter: blur(2px);
}

.icon-2 {
    width: 50px;
    height: 50px;
    top: 20%;
    right: 25%;
    animation: float-2 7s ease-in-out infinite;
    filter: blur(1px);
}

.icon-3 {
    width: 60px;
    height: 60px;
    top: 40%;
    right: 10%;
    animation: float-3 9s ease-in-out infinite;
    filter: blur(2px);
}

.icon-4 {
    width: 70px;
    height: 70px;
    bottom: 15%;
    left: 12%;
    animation: float-4 10s ease-in-out infinite;
    filter: blur(1px);
}

.icon-5 {
    width: 45px;
    height: 45px;
    bottom: 15%;
    right: 25%;
    animation: float-5 6.5s ease-in-out infinite;
    filter: blur(1px);
}

.main-message {
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.8px;
    line-height: 1.1;
}

/* Floating animations */
@keyframes float-center {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-30px) translateX(15px);
    }
}

@keyframes float-2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(25px) translateX(-10px);
    }
}

@keyframes float-3 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-20px) translateX(-20px);
    }
}

@keyframes float-4 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(30px) translateX(20px);
    }
}

@keyframes float-5 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-25px) translateX(15px);
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 30px rgba(255, 69, 0, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 50px rgba(255, 69, 0, 0.9));
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .main-message {
        font-size: 1.6rem;
    }

    .center-icon-wrapper {
        margin-bottom: 2rem;
    }

    .background-icons {
        display: none;
    }

    header {
        padding: 1.5rem;
    }

    .message-container {
        padding: 1rem;
    }

    .content-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .main-message {
        font-size: 1rem;
        letter-spacing: 0.32px;
        line-height: 1.25;
    }

    .icon-center {
        width: 60px;
        height: 60px;
    }

    .center-icon-wrapper {
        margin-bottom: 1.2rem;
    }
}
