* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/* Background blur effect */
.anime3d-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(20, 15, 40, 0.95) 0%, rgba(30, 20, 60, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.anime3d-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../imgs/anime3d-bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    position: relative;
}

/* Decorative line with stars and dots */
.decorative-line {
    position: relative;
    width: 100%;
    gap: 8px;
    display: flex;
}

.decorative-line .line {
    width: 100%;
    position: absolute;
    left: 50%;
    top: calc(50% - 1px);
    transform: translate(-50%);
    flex: 1;
    height: 2px;
    background: linear-gradient(180deg, #feffbe 100%, rgba(253, 225, 110, 0) 100%);
}

.decorative-line .line-content {
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.decorative-line-content {
    width: 100%;
    z-index: 10;
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.decorative-line .center-decorations {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Star icon images */
.decorative-line .star-icon {
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.decorative-line .star-icon.small {
    width: 24px;
    height: 24px;
    margin-top: 1px;
}

.decorative-line .star-icon.large {
    width: 46px;
    height: 46px;
}

.decorative-line .star-icon.star-left {
    left: 0;
    transform: translate(calc(-100% + 1px));
}

.decorative-line .star-icon.star-right {
    right: 0;
    transform: translate(calc(100% - 1px));
}

/* Dots group */
.decorative-line .dots-group {
    display: flex;
    align-items: center;
    gap: 4px;
}

.decorative-line .dots-group .dot {
    width: 6px;
    height: 6px;
    background: rgb(255, 215, 0);
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 215, 0, 0.6);
    margin: 0 2px;
}

.decorative-line .dots-group .dot-large {
    width: 10px;
    height: 10px;
}

.decorative-line .dots-group .dot-midden {
    width: 8px;
    height: 8px;
}

/* Main title */
.main-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    margin: 0;
}

/* Coming soon section */
.coming-soon {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    font-size: 20px;
    color: #ffffff;
    opacity: 0.9;
}

.coming-soon .dots {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-bottom: 4px;
}

.coming-soon .dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(90deg, #fdec98 0%, rgba(216, 216, 216, 0) 100%);
    box-shadow: 0px -2px 10px 0px #d17213;
    animation: pulse 1.5s ease-in-out infinite;
}

.coming-soon .dots .dot:nth-child(1) {
    animation-delay: 0s;
}

.coming-soon .dots .dot:nth-child(2) {
    animation-delay: 0.3s;
}

.coming-soon .dots .dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Discord section */
.discord-text {
    font-size: 18px;
    color: #ffffff;
    opacity: 0.8;
    text-align: center;
}

.discord-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px;
    border-radius: 8px 12px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 9px;
}

.discord-icon {
    width: 56px;
    position: relative;
}

.discord-content {
    position: relative;
    font-size: 16px;
}

.discord-content-effect {
    font-size: 22px;
    position: relative;
}

.discord-content-effect1 {
    position: relative;
    z-index: 2;
}

.discord-content-effect2 {
    position: absolute;
    left: 2px;
    top: 2px;
    color: #1656EA;
    z-index: 1;
}

.discord-button:hover {
    transform: translateY(-2px);
}

.discord-button:active {
    transform: translateY(0);
}

.discord-button .discord-icon-wrapper {
    position: relative;
}

.discord-button .discord-icon-wrapper .discord-icon {
    width: 56px;
}

.discord-button .discord-text-wrapper {
    position: relative;
}

.discord-button .discord-text-wrapper .discord-text-small {
    font-size: 16px;
}

.discord-button .discord-text-wrapper .discord-text-large {
    position: relative;
    font-size: 22px;
}

.discord-button .discord-text-wrapper .discord-text-large .discord-text-front {
    position: relative;
    z-index: 2;
}

.discord-button .discord-text-wrapper .discord-text-large .discord-text-shadow {
    position: absolute;
    left: 2px;
    top: 2px;
    color: #1656ea;
    z-index: 1;
}

.discord-button-background1 {
    position: absolute;
    left: 0;
    top: -6px;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    background:
        radial-gradient(
            35% 50% at 41% 50%,
            rgba(255, 248, 82, 0.2) 0%,
            rgba(255, 248, 82, 0) 100%
        ),
        radial-gradient(91% 126% at 63% -13%, #6320d0 0%, #37352a 100%),
        radial-gradient(7% 94% at 19% 40%, #08203a 0%, #000000 100%),
        radial-gradient(
            11% 119% at 43% -32%,
            rgba(60, 48, 58, 0.53) 0%,
            rgba(60, 48, 58, 0.53) 21%,
            #392732 100%
        ),
        #030303;
    border: 1px solid #ffffff50;
    border-radius: 16px;
    box-shadow:
        -10px -40px 30px 0px rgba(111, 101, 14, 0.25),
        -20px -20px 50px 0px rgba(14, 14, 15, 0.5),
        10px 20px 80px 0px rgba(255, 245, 0, 0.3),
        inset 0px 0px 30px 0px rgba(255, 255, 255, 0.3);
}

.discord-button-background2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    opacity: 0.4;
    background:
        radial-gradient(
            35% 50% at 41% 50%,
            rgba(255, 248, 82, 0.2) 0%,
            rgba(255, 248, 82, 0) 100%
        ),
        radial-gradient(128% 129% at 63% -13%, #651be5 0%, #661ae6 100%),
        radial-gradient(7% 94% at 19% 40%, #08203a 0%, #000000 100%),
        radial-gradient(
            11% 119% at 43% -32%,
            rgba(60, 48, 58, 0.53) 0%,
            rgba(60, 48, 58, 0.53) 21%,
            #392732 100%
        ),
        #030303;
    border: 1px solid #ffffff90;
    box-shadow: inset 0px 0px 10px 0px rgba(255, 255, 255, 0.8);
}
