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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: white;
            color: #e8e8e8;
            line-height: 1.6;
        }

        /* Header */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            background: #fff;
            background-image: url(../img/wwq.jpg);
            border-bottom: 1px solid #2a2a2a;
            position: relative;
        }

        .logo {
            font-size: 120px;
            height: 40px;
            font-weight: 500;
            letter-spacing: 2px;
            color: #d4af37;
            cursor: pointer;
        }

        .nav {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav li {
            list-style: none;
            position: relative;
        }

        .nav a {
            color: white;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        .nav a:hover {
            color: #d4af37;
        }

       .dropdown {
            position: absolute;
            top: 25px;
             left: 0;
            width: 140px;
             background: white;  
            border: 1px solid #ccc; 

            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);

            transition: all 0.5s ease;
}

    .dropdown a{
        display: block;
        padding: 10px;
        color: #333;
    }


.nav li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


    /* 로그인/회원가입 영역 */
.login-area {
    display: flex;
    gap: 10px;
}

        .login-btn {
            border-radius: 100px; 
            color: hsla(0,0%,100%,.7);
            padding: 8px 20px;
            border: none;
            cursor: pointer;
            font-size: 13px;
            font-weight: 500;
            transition: background-color 0.3s;
            text-decoration: none;
        }

        .login-btn:hover {
            background-color: black;
            color: white;
        }

        /* Sub Navigation */
        .sub-nav {
            display: flex;
            gap: 30px;
            padding: 20px 40px;
            background-color: #0f0f0f;
            border-bottom: 1px solid #1a1a1a;
            font-size: 13px;
            letter-spacing: 0.5px;
        }

        .sub-nav a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s;
        }

        .sub-nav a:hover {
            color: #d4af37;
        }

/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: none !important; /* 영상 가리지 않게 */
}

/* 영상 배경 */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


/* 영상 위 텍스트 */
.hero-content {
    position: relative;
    z-index: 3;
    padding: 40px;
    max-width: 600px;
}

.hero-subtitle {
    color: #d4af37;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
}

.hero-description {
    color: white;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.cta-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 5px;
    transition: all 0.3s;
    cursor: pointer;
}


        /* Slider Section */
        .slider-section {
            padding: 40px;
            background-color: #0a0a0a;
        }

        .slider-container {
            display: flex;
            gap: 20px;
            align-items: center;
            overflow-x: auto;
            scroll-behavior: smooth;
            padding: 20px 0;
        }

        .slider-container::-webkit-scrollbar {
            height: 4px;
        }

        .slider-container::-webkit-scrollbar-track {
            background: #1a1a1a;
        }

        .slider-container::-webkit-scrollbar-thumb {
            background: #d4af37;
            border-radius: 2px;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: #d4af37;
            color: #000;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
            transition: all 0.3s;
            z-index: 10;
        }

        .slider-btn:hover {
            background-color: #fff;
        }

        .slider-btn.prev {
            left: 20px;
        }

        .slider-btn.next {
            right: 20px;
        }

        .slider-wrapper {
            position: relative;
        }

        .event-card {
            min-width: 320px;
            height: 320px;
            background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
            border: 1px solid #2a2a2a;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }

        .event-card:hover {
            border-color: #d4af37;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        }

        .event-card-image {
            width: 100%;
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .event-card-label {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: rgba(0, 0, 0, 0.7);
            color: #d4af37;
            padding: 4px 12px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .event-card-content {
            padding: 20px;
        }

        .event-card-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #fff;
        }

        .event-card-info {
            font-size: 13px;
            color: #888;
        }

        /* Section Title */
        .section-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 40px;
            color: #fff;
            letter-spacing: 1px;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section {
            padding: 80px 40px;
            background-color: #0a0a0a;
        }

        .section:nth-child(even) {
            background-color: #0f0f0f;
        }

        /* Decorative lines */
        .divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, #d4af37 50%, transparent 100%);
            margin: 60px 0;
        }

        /* Responsive */
        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }

            .nav {
                gap: 20px;
            }

            .hero {
                height: auto;
                flex-direction: column;
                padding: 40px 20px;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-image {
                display: none;
            }

            .section-title {
                font-size: 24px;
            }
        }