* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow: hidden;
}

header {
    width: 100%;
    height: 80px;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.logoImage {
    width: 300px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mainContent {
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #4169e2;
    position: relative;
    top: 80px;
}

.vertical-line {
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: #fff;
    left: 0;
    z-index: 2;
    opacity: 1;
}

.horizontal-line {
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: #fff;
    bottom: 0;
    z-index: 2;
    opacity: 1;
}

/* Gold trail pseudo-elements */
.vertical-line::before,
.vertical-line::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 100%;
    background-color: gold;
    z-index: 1;
    opacity: 0.7;
}

.horizontal-line::before,
.horizontal-line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: gold;
    z-index: 1;
    opacity: 0.7;
}

.animate-vertical {
    animation: moveVertical 2s ease forwards;
}

.animate-horizontal {
    animation: moveHorizontal 2s ease forwards;
}

.animate-vertical::before {
    animation: moveVertical 2s ease forwards 0.1s; /* 0.1s delay */
}

.animate-vertical::after {
    animation: moveVertical 2s ease forwards 0.2s; /* 0.2s delay */
}

.animate-horizontal::before {
    animation: moveHorizontal 2s ease forwards 0.1s; /* 0.1s delay */
}

.animate-horizontal::after {
    animation: moveHorizontal 2s ease forwards 0.2s; /* 0.2s delay */
}

@keyframes moveVertical {
    0% { left: 0; opacity: 1; }
    50% { left: calc(100% - 5px); opacity: 1; }
    100% { left: 0; opacity: 0; }
}

@keyframes moveHorizontal {
    0% { bottom: 0; opacity: 1; }
    50% { bottom: calc(100% - 5px); opacity: 1; }
    100% { bottom: 0; opacity: 0; }
}

#woofslamContent {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    color: white;
    text-align: center;
    padding: 20px;
    z-index: 1;
}

.woofslamInfoContent{
    width:100%;
    height:100%;
    display: flex;
    flex-direction: column;
}

.woofslamLogoContent{
    width:100%;
    height:60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.woofslamNameContent{
    width:100%;
    height:10%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.woofSlamNameText{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 30px;
}

.woofslamButtonContent{
    width:100%;
    height:20%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.woofslamButtonImage{
    width:200px;
    height:200px;
}

#pixelText {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 24px;
    z-index: 3;
}