@font-face {
    font-family: 'Aquire';
    src: url('https://www.cufonfonts.com/fonts/aquire/aquire-font.zip') format('truetype');
}

body {
    margin: 0;
    font-family: 'Inter', "PingFang SC", "Microsoft YaHei", sans-serif;
    background-color: #09102A;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.container {
    width: 1434px;
    height: 900px;
    background-color: #111F4B;
    border-radius: 6px;
    box-shadow: 0px 12px 54px rgba(78, 69, 62, 0.27);
    position: relative;
    overflow: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    height: 98px;
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

header .logo {
    background-color: #15265C;
    width: 97px;
    height: 98px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -30px;
    border-top-left-radius: 6px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    text-decoration: none;
    color: white;
    font-family: 'Aquire', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

header nav ul li a.active {
    font-weight: 700;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.search-icon {
    cursor: pointer;
}

.login-btn {
    width: 109px;
    height: 41px;
    background: linear-gradient(164deg, #12B9F7 0%, #3F71F8 100%);
    border: none;
    color: white;
    font-family: 'Aquire', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

main {
    display: flex;
    height: calc(100% - 98px);
}

.main-content {
    flex: 1;
    padding-left: 70px;
    padding-top: 100px;
    position: relative;
    z-index: 2;
}

.text-content {
    max-width: 555px;
}

.title {
    font-family: 'Aquire', sans-serif;
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 40px 0;
    position: relative;
}

.title-metaverse {
    display: block;
    color: #4FFFFF;
    text-shadow: 0 0 10px #4FFFFF, 2px 2px 0px #C04ADC;
}

.title-party {
    display: block;
    color: #FFFFFF;
    text-shadow: 2px 2px 0px #C04ADC, 4px 4px 0px #4FFFFF;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: 80px;
}

.description {
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.6;
    max-width: 511px;
    margin-bottom: 50px;
}

.explore-btn {
    width: 264px;
    height: 80px;
    background: linear-gradient(164deg, #12B9F7 0%, #3F71F8 100%);
    border: 1px solid #2EE09A;
    color: white;
    font-family: 'Aquire', sans-serif;
    font-size: 20px;
    cursor: pointer;
    position: relative;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    background: linear-gradient(301deg, #4FFFFF 0%, #C04ADC 100%);
    z-index: -1;
}

.explore-btn::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border: 1px solid #EF84F5;
    z-index: -2;
}


.pagination {
    position: absolute;
    bottom: 50px;
    left: 70px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.page-number {
    font-family: 'Aquire', sans-serif;
    font-size: 36px;
    font-weight: 700;
}

.total-pages {
    font-family: 'Aquire', sans-serif;
    font-size: 20px;
    opacity: 0.6;
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.5;
}

.dot.active {
    opacity: 1;
    background-color: #12B9F7;
}

.image-content {
    flex: 1;
    position: relative;
}

.main-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 679px;
    height: auto;
    z-index: 1;
}

.bg-pattern-1 {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 677px;
    z-index: 0;
}

.bg-pattern-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
    border-radius: 6px;
}

footer {
    position: absolute;
    bottom: 20px;
    right: 40px;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    color: white;
    opacity: 0.8;
}

/* Add responsive design later if needed */