        /* 전체 배경 및 텍스트 스타일 */
        body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background: #000 url('https://source.unsplash.com/1600x900/?sports') no-repeat center center fixed;
            background-size: cover;
            color: #fff;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
        }

        /* 페이지 내용 컨테이너 */
        .landing-container {
            background-color: rgba(0, 0, 0, 0.7); /* 배경색을 어둡게 */
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
            max-width: 800px;  /* 콘텐츠의 최대 너비 제한 */
            width: 90%;  /* 90% 너비로 설정하여 중앙 집중 */
            transition: all 0.3s ease-in-out;
            margin: 0 auto; /* 중앙 정렬 */
        }

        /* 로고 이미지 스타일 */
        .logo img {
            max-width: 250px;
            margin-bottom: 30px;
            animation: fadeIn 2s ease-in-out;
        }

        /* 타이틀 스타일 */
        h1 {
            font-size: 2.5rem;
            margin: 20px 0;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: fadeIn 2s ease-in-out 0.5s;
        }

        /* 설명 텍스트 */
        p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            line-height: 1.5;
            animation: fadeIn 2s ease-in-out 1s;
        }

        /* 버튼 스타일 */
        .cta-button {
            display: inline-block;
            padding: 15px 35px;
            background-color: #FF6F00;
            color: #fff;
            font-size: 1.2rem;
            text-decoration: none;
            font-weight: bold;
            border-radius: 30px;
            transition: all 0.3s ease-in-out;
            box-shadow: 0 4px 15px rgba(255, 111, 0, 0.6);
        }
        
        .cta-button:hover {
            background-color: #e65c00;
            transform: scale(1.05);
        }
        

        /* 애니메이션 효과 */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* 푸터 스타일 */
        .footer {
            font-size: 0.9rem;
            margin-top: 40px;
            opacity: 0.7;
        }

        .telegram-contact {
            margin-top: 20px;
            text-align: center;
        }
        
        .telegram-button {
            background-color: #0088cc;
            color: white;
            font-size: 1.1rem;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .telegram-button:hover {
            background-color: #006d99;
        }
        
        .telegram-button img {
            margin-right: 10px;
        }
        