* {
    margin: 0;
    padding: 0;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

body {
    background-color: #040303;
    min-height: 100vh;
    font-family: 'IBM Plex Mono', monospace;
    padding-bottom: 120px;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Archive Title */
.archive-page-title {
    text-align: center;
    margin: 4rem 0 3rem 0;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.archive-page-title h1 {
    color: white;
    font-size: 4rem;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
    margin-bottom: 1rem;
}

.archive-page-title p {
    color: #888;
    font-size: 1.2rem;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 300;
}

.create-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 34px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-left: 20px;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}


.create-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.archive-block {
    max-width: 1200px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    margin: 2rem auto 4rem auto;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 3rem 4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.archive {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.archive:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.archive-title {
    margin-bottom: 1rem;
}

.archive-title h2 {
    color: white;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

.archive-content p {
    color: #ccc;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.bottom-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.delete-container button {
    color: #ccc;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

.delete-container button:hover {
    color: #ff4d4d;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.update-container button {
    color: #ccc;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

.update-container button:hover {
    color: #4db2ff;
    text-decoration: underline;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .archive-page-title h1 {
        font-size: 3rem;
    }

    .archive-page-title p {
        font-size: 1rem;
    }

    .archive-block {
        max-width: 90%;
        padding: 2rem;
        margin: 1rem auto 3rem auto;
    }

    .archive {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .archive-title h2 {
        font-size: 1.5rem;
    }

    .archive-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .archive-page-title {
        margin: 2rem 0;
    }

    .archive-page-title h1 {
        font-size: 2rem;
    }

    .archive-block {
        padding: 1.5rem 1rem;
        margin: 1rem auto 2rem auto;
        width: 95%;
        box-sizing: border-box;
    }

    .archive {
        padding: 1.25rem 1rem;
        margin: 1rem 0;
        width: 100%;
        box-sizing: border-box;
    }

    .archive-title h2 {
        font-size: 1.3rem;
    }
    
    .create-btn {
        width: 50px;
        height: 50px;
        font-size: 28px;
        margin-left: 10px;
    }
}