/* Page Load Status and Loading Animation */
.page-load-status {
    text-align: center;
}

.aload {
    font-size: 20px;
    position: relative;
    width: 4em;
    height: 1em;
    margin: 20px auto;
}

.aload span {
    display: block;
    width: 1em;
    height: 1em;
    border-radius: .5em;
    background: #555;
    position: absolute;
    animation-duration: .5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.aload span:nth-child(1),
.aload span:nth-child(2) {
    left: 0;
}

.aload span:nth-child(3) {
    left: 1.5em;
}

.aload span:nth-child(4) {
    left: 3em;
}

@keyframes reveal {
    from {
        transform: scale(.001);
    }
    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em);
    }
}

.aload span:nth-child(1) {
    animation-name: reveal;
}

.aload span:nth-child(2),
.aload span:nth-child(3) {
    animation-name: slide;
}

.aload span:nth-child(4) {
    animation-name: reveal;
    animation-direction: reverse;
}

p.infinite-scroll-last {
    text-align: center;
    margin: 15px auto;
    font-weight: 600;
    color: blue;
}

/* Next Page Link Styles */
p.akpage {
    text-align: center;
    margin: 15px auto;
}

.akpage-next {
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
}

.akpage-next:hover {
    text-decoration: underline;
}

/* Content Styles (for Emojis/Items) */
.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.item {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    border-radius: 5px;
    font-size: 24px;
    background: #f9f9f9;
    text-align: center;
    transition: transform 0.2s;
}

.item:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

h1 {
    text-align: center;
    color: #333;
    margin: 20px 0;
}