* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Russo One', sans-serif;
}

body {
    overflow: hidden;
    height: 100vh;
    margin: 0;
}

/* 비디오 배경 스타일 */
.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* 비디오가 뒤로 배치되도록 */
}

/* 헤더 스타일 */
.header {
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.announcement {
    font-size: 18px;
    color: white;
}

.login-btn {
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.login-btn:hover {
    background-color: #1a6dc5;
    transform: scale(1.05);
}

.login-btn:active {
    background-color: #1a6dc5;
    transform: scale(0.95);
}

/* 메인 콘텐츠 섹션 */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 60px); /* 헤더 공간을 제외 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 30px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* 안드로이드 버튼 스타일 */
.android-btn {
    display: inline-block;
    background: url('/MainWeb/googleplaylogo.png') no-repeat center center;
    background-size: contain;
    width: 200px; /* 버튼 크기 조정 */
    height: 50px; /* 버튼 크기 조정 */
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    text-align: center;
    line-height: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* 애플 버튼 스타일 */
.apple-btn {
    display: none;
    /* display: inline-block; */
    background: url('/MainWeb/appstorelogo.png') no-repeat center center;
    background-size: contain;
    width: 200px; /* 버튼 크기 조정 */
    height: 50px; /* 버튼 크기 조정 */
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    text-align: center;
    line-height: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* 호버 효과 */
.android-btn:hover, .apple-btn:hover {
    /* background-color: rgba(255, 255, 255, 0.2); */
    transform: scale(1.05);
}

/* 클릭 시 효과 */
.android-btn:active, .apple-btn:active {
    transform: scale(0.95);
}


/* 하단 푸터 스타일 */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;  /* 어두운 배경색 */
    color: #fff;  /* 텍스트 색상 */
    text-align: center;  /* 텍스트 중앙 정렬 */
    padding: 10px 0;  /* 위아래 여백 */
    font-size: 14px;  /* 작은 폰트 크기 */
    font-weight: 300;  /* 얇은 글씨체 */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);  /* 상단 그림자 */
    z-index: 1000;  /* 상위 요소보다 위에 위치하게 설정 */
}

/* 모바일에서 폰트 크기 조정 (선택 사항) */
@media (max-width: 768px) {
    .footer {
        font-size: 12px;
    }
}